diff --git a/packages/climate/climate.yaml b/packages/climate/climate.yaml index 0b22e6b..10da214 100644 --- a/packages/climate/climate.yaml +++ b/packages/climate/climate.yaml @@ -168,3 +168,17 @@ automation: data: target_temp_high: "{{ states('input_number.temp_setpoint_day_high')|float }}" target_temp_low: "{{ states('input_number.temp_setpoint_day_low')|float }}" + + - alias: Widen HVAC Range during Vacation + mode: queued + trigger: + - platform: state + entity_id: input_select.house_presence_state + to: 'Extended Away' + action: + - service: climate.set_temperature + target: + entity_id: climate.thermostat + data: + target_temp_high: "{{ states('input_number.temp_setpoint_away_high')|float }}" + target_temp_low: "{{ states('input_number.temp_setpoint_away_low')|float }}"