Hi,
Best practice, do you think that there is a need to check the AC state as an automation trigger?
What I have today is:
trigger:
- platform: numeric_state
entity_id:
- zone.home
above: 0
- platform: template
value_template: "{{is_state('climate.midea_ac_1', 'off')}}"
- platform: time
at: "08:00:00"
enabled: true
- platform: numeric_state
entity_id:
- sensor.living_room_thermostat_temperature
above: 80
enabled: true
or should I just keep this as trigger
trigger:
- platform: numeric_state
entity_id:
- zone.home
above: 0
- platform: time
at: "08:00:00"
enabled: true
- platform: numeric_state
entity_id:
- sensor.living_room_thermostat_temperature
above: 22
enabled: true
and check ‘state’ as a condition
condition: template
value_template: "{{is_state('climate.midea_ac_1', 'off')}}"
Thank you