Added AC_total_pw_kW as ac_monitoring_power_ab measured in kW

This commit is contained in:
2026-06-21 15:25:14 +02:00
parent a4e88c1fe5
commit 9a9029d376
+7 -2
View File
@@ -1,6 +1,4 @@
--- ---
# IMPORTANT NOTE: all sensors here having templates have been migrated/fixed to HERE from other as per Deprecation of platform: Template # IMPORTANT NOTE: all sensors here having templates have been migrated/fixed to HERE from other as per Deprecation of platform: Template
# Storage for Bubble Card Modules # Storage for Bubble Card Modules
@@ -69,3 +67,10 @@
- default_entity_id: sensor.holiday - default_entity_id: sensor.holiday
name: Holiday name: Holiday
state: "{% if states.calendar.holidays_in_italy.state == 'on' %} {{ states.calendar.holidays_in_italy.attributes.message }} {% else %} none {% endif %}" state: "{% if states.calendar.holidays_in_italy.state == 'on' %} {{ states.calendar.holidays_in_italy.attributes.message }} {% else %} none {% endif %}"
- sensor:
- unique_id: AC_total_power_kW
unit_of_measurement: kW
default_entity_id: sensor.ac_total_power_kW
name: AC Total Power
state: "{{ ((states('sensor.ac_power_monitoring_power_ab') | float(3)) / 1000) | round(3) }}"