1.China Southern Power Grid Statistics集成
链接
2.获取当月用电情况
因为我的电费是固定的,没有阶梯电价
用电量 * 0.63906875 = 电费
3.计算电费然后在UI上显示
进入configuration.yaml
,添加以下代码
homeassistant:
customize: !include customize.yaml
sensor:
- platform: template
sensors:
electricity_bill:
friendly_name: "当月电费"
unit_of_measurement: '¥' # Replace with your currency unit, like '$', '€', etc.
value_template: "{{ (states('sensor.0*****************7_this_month_total_usage') | float * 0.63906875) | round(2) }}"
sensor.0*****************7_this_month_total_usage
修改成你自己的实体ID
在customize.yaml
里添加下面代码 这部分是修改图标,显示¥
sensor.electricity_bill:
icon: mdi:currency-cny
保存,重启以下配置!文章来源:https://www.toymoban.com/news/detail-570808.html
3.效果
搜索 electricity_bill
实体
文章来源地址https://www.toymoban.com/news/detail-570808.html
到了这里,关于Home Assistant 南方电网 计算电费的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!