diff --git a/templates.yaml b/templates.yaml index 6cdc2aa..4505050 100644 --- a/templates.yaml +++ b/templates.yaml @@ -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 # Storage for Bubble Card Modules @@ -69,3 +67,10 @@ - default_entity_id: sensor.holiday name: Holiday 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) }}"