#Create a helper. Settings -> Devices &

1 messages · Page 1 of 1 (latest)

sharp dirge
#

Thanks for the reply. Should I be able to reference it like this? It doesn't seem to work.

#
  - service: climate.set_temperature
    data:
      temperature: {{heat_temperature}}
      hvac_mode: heat
    target:
      area_id: living_room
    enabled: true
#

When I save that and edit the YAML again it saves the temperature value as [Object object] so I assume I need to reference a sub-property of the helper? I'm not sure how I know what properties are available?

#

I found the docs! 😉

#
  - service: climate.set_temperature
    data:
      temperature: "{{ states('input_number.heat_temperature') | int }}"
      hvac_mode: heat
    target:
      area_id: living_room
    enabled: true