From 5a9e5cce3a4be1db334b46b32b444180a9d965eb Mon Sep 17 00:00:00 2001 From: "J.P. Krauss" Date: Tue, 11 Jul 2023 08:27:07 -0700 Subject: [PATCH] Add HVAC Vacation Automation --- packages/climate/climate.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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 }}"