Hi,
I have an issue using the temperature state as a trigger to run an automation on. I don's see events of the thermostate / valves. I use a modulating thermostat and 8 valves for the separate rooms.
To my understanding I have the webhook working since the netatmo camera I use sends me updates. I use this automation to log the messages:
`alias: Netatmo to log (ALL EVENTS)
description: Log all Netatmo events to system log
trigger:
- event_data: {}
event_type: netatmo_event
platform: event
condition: []
action: - service: system_log.write
data:
message: "Netatmo: {{ trigger.event.data }}"
level: warning
logger: netatmo_event
mode: parallel
max: 10`
`alias: Limit Kids Thermostat
description: ""
trigger:
- platform: state
entity_id:- climate.kids
attribute: temperature
to: "> 21"
condition: []
action:
- climate.kids
- service: climate.set_temperature
data:
temperature: 20
target:
entity_id:
- climate.kids
enabled: false
mode: single`
Any help would be much appriciated!