Hi all. So I’ve got a simple automation to set a HA thermostat’s set temperature back to my default (18) after a certain period of time.
This is for when the room is real cold and I manually crank the set temp up and then forget about it, in an hour it sets it back down to 18. I know I could use a timer helper but I don’t see why this shouldn’t work:
alias: Bedroom Thermo Reset 1
description: ""
trigger:
- platform: numeric_state
entity_id:
- climate.main_bedroom_thermostat
for:
hours: 0
minutes: 0
seconds: 10
attribute: temperature
above: 18
condition:
- condition: time
after: "23:00:00"
before: "04:00:00"
action:
- service: climate.set_temperature
metadata: {}
data:
temperature: 18
target:
entity_id: climate.main_bedroom_thermostat
mode: single
Any insights would be appreciated!