diff --git a/packages/climate/climate.yaml b/packages/climate/climate.yaml index 6da1115..ddb4228 100644 --- a/packages/climate/climate.yaml +++ b/packages/climate/climate.yaml @@ -90,3 +90,30 @@ automation: - service: notify.telegram_home data: message: HVAC Restored (Window or Door Open) + + + - alias: Widen HVAC Range at Night + mode: queued + trigger: + - platform: time + at: "20:00" + action: + - service: climate.set_temperature + target: + entity_id: climate.thermostat + data: + target_temp_high: 76.0 + target_temp_low: 68.0 + + - alias: Narrow HVAC Range during Day + mode: queued + trigger: + - platform: time + at: "10:00" + action: + - service: climate.set_temperature + target: + entity_id: climate.thermostat + data: + target_temp_high: 74.0 + target_temp_low: 70.0