Zeige alle kwH-Entitäten

PHOTO EMBED

Fri Dec 29 2023 12:25:51 GMT+0000 (Coordinated Universal Time)

Saved by @smipoint

{% for state in states.sensor | selectattr('attributes.friendly_name', 'defined') | selectattr('attributes.unit_of_measurement', 'equalto', 'kWh') | sort(attribute='attributes.friendly_name') %}
{% if state.state not in ['unavailable', 'unknown'] and state.state | float is defined %}{{ state.attributes.friendly_name }} {{ state.state | round(1) }} {{ state.attributes.unit_of_measurement }}{% endif %}{% endfor %}
content_copyCOPY