#Oh ok so like this ```trigger

1 messages · Page 1 of 1 (latest)

delicate cipher
#

numeric state trigger

autumn stump
#

Ah

#
  - platform: numeric_state
    entity_id: zone.home
    below: '1'```
#

Thx

autumn stump
#

I now have this for when home:

description: ""
trigger:
  - platform: numeric_state
    entity_id: zone.home
    above: "0"
condition: []
action:
  - service: climate.set_temperature
    data:
      temperature: 17
    target:
      entity_id: climate.tado_smart_thermostat_ru0973941248
mode: single```
#

And this for when not home:

description: ""
trigger:
  - platform: numeric_state
    entity_id: zone.home
    below: "1"
condition: []
action:
  - service: climate.set_temperature
    data:
      temperature: 17
    target:
      entity_id: climate.tado_smart_thermostat_ru0973941248
mode: single```
#

I forgot the code tag sry, but my question is, can i put those 2 automations in 1 automation?