Hi everyone, I am hoping someone can help me.
My goal is to implement an automation to set the heat to 72f when my wife is home (regardless if I am or not) and 70f when I am home alone. This should only happen if the thermostat is set to heat. Cool mode should follow the schedule we have set on the thermostat. In addition to this, have the ecobee go to away mode when neither of us are home.
So far I have 2 separate automations for away and resume based on a group (group.family_devices).
trigger:
platform: state
entity_id: group.family_devices
from: 'not_home'
to: 'home'
actions:
- action: button.press
target:
entity_id: button.main_floor_clear_hold```
```- alias: Thermostat to Away
trigger:
platform: state
entity_id: group.family_devices
from: 'home'
to: 'not_home'
condition:
- or:
- condition: state
entity_id: climate.main_floor
state: cool
- condition: state
entity_id: climate.main_floor
state: heat
action:
- action: select.select_option
data:
option: away
target:
entity_id: select.main_floor_current_mode```