I am having trouble creating an automation to take my ecobee out of Smart Away mode. I have tried both of the following. They both work if the ecobee is in “regular” Away mode. But not in Smart Away. Any ideas?
- service: climate.set_hold_mode
data:
entity_id: climate.upstairs_ecobee
hold_mode: home
In case this is useful to you, I have a “Resume_ecobee_Program” automation, which I trigger at key times of the day. This is in case someone has set a hold mode or manually adjusted the thermostat in some way, and it may also work in your case (I don’t recall specifically testing Smart Away). The specific service which may address your need is:
- service: climate.ecobee_resume_program
My full automation which uses this is:
- id: Resume_ecobee_Program
alias: Resume ecobee Program
initial_state: true
trigger:
- platform: time
at: 08:30
- platform: time
at: '17:00'
- platform: time
at: '20:50'
action:
- service: climate.ecobee_resume_program
- service: climate.ecobee_set_fan_min_on_time
data:
entity_id: climate.thermostat
fan_min_on_time: '0'