Update Climate Package

This commit is contained in:
2022-08-18 15:17:28 -07:00
parent 9323fffa5b
commit a8af72541d

View File

@@ -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