Hi guys,
I have some troubles to gain heating data from my Tado. I want to know how many times the Tado Heating is activated in one room and for how many minutes or hours.
I’m trying to use the history stats of one sensor (sensor.tado_bagno_heating, when the value is over 1%) but I probably lost “something”.
This is what I putted into configuration.yaml with a lot of errors
- platform: history_stats
name: Tado bagno durata
entity_id: sensor.tado_bagno_heating
value: ‘{{ states.sensor.tado_bagno_heating.attributes)| > 1 }}’
type: time
start: “{{ now().replace(hour=0, minute=0, second=0) }}”
end: “{{ now() }}” - platform: history_stats
name: Tado bagno numero attivazioni
entity_id: sensor.tado_bagno_heating
value: ‘{{ states.sensor.tado_bagno_heating.attributes)| > 1 }}’
type: count
start: “{{ now().replace(hour=0, minute=0, second=0) }}”
end: “{{ now() }}”
I noticed that the value of this sensor is MEASUREMENT.
Could someone help me?