Hi all. I have some automations to change the temperature on my HVAC system in different zones. Generally I will change the temp higher or lower once a day, and I am using two automations to do this. For example I will run one like this to turn up the temp when I’m no using the room:
alias: Bedroom day summer
description: ""
triggers:
- trigger: time
at: "08:00:00"
conditions: []
actions:
- action: climate.set_temperature
metadata: {}
data:
temperature: 90
hvac_mode: cool
target:
device_id: da13a62fa953d1abbc9972b19f90312c
mode: single
Then another automation to turn it down at bed time.
I’m sure there must be a way to do both changes in one script, but I’m still a YAML noob. How do I do this? How about to make three changes per day?