16 lines
468 B
YAML
16 lines
468 B
YAML
- platform: template
|
|
sensors:
|
|
# Gaszähler, kommend von ESPHome, aufbereiten für Energy
|
|
gasincubicmeter:
|
|
value_template: >
|
|
{% if states('sensor.gasverbrauch') | float == 0 %}
|
|
{{ states('sensor.gasincubicmeter') }}
|
|
{% else %}
|
|
{{ states('sensor.gasverbrauch') | float }}
|
|
{% endif %}
|
|
unit_of_measurement: m³
|
|
device_class: gas
|
|
attribute_templates:
|
|
state_class: total_increasing
|
|
|