#Netatmo integration Temperature State

1 messages · Page 1 of 1 (latest)

gaunt shoal
#

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:
  • service: climate.set_temperature
    data:
    temperature: 20
    target:
    entity_id:
    - climate.kids
    enabled: false
    mode: single`

Any help would be much appriciated!

upbeat egret
#

You fell for a common trap for new folks - using a state trigger

#

That looks for the temperature attribute to become the string > 21

#

What you wanted would be the numeric state trigger type

gaunt shoal
#

Seems logical indeed. Any hints on how to get the numeric state?

#

Nevermind I think I've found it 😉

upbeat egret
#

Yeah, carefully hidden behind the words numeric state 😛