2026-07-10 01:09:48 +00:00
|
|
|
# ac_peak_ends — end of the utility peak, return the house to comfort
|
|
|
|
|
#
|
|
|
|
|
# id / entity : ac_peak_ends -> automation.ac_peak_ends_return_to_74
|
|
|
|
|
# trigger : 19:00 local (America/New_York), EVERY day
|
|
|
|
|
# purpose : Return the thermostat to 74F after the peak window.
|
|
|
|
|
#
|
|
|
|
|
# Runs daily on purpose (no workday gate): you always want comfort back in the
|
|
|
|
|
# evening, weekend or holiday included. It has no external dependencies (no
|
|
|
|
|
# weather, no workday sensor), so there is nothing to fall back on — it is a
|
|
|
|
|
# plain, robust setpoint write.
|
|
|
|
|
#
|
|
|
|
|
# v2 (2026-07-09): no behavior change; documented + version-controlled.
|
2026-07-10 01:01:08 +00:00
|
|
|
id: ac_peak_ends
|
|
|
|
|
alias: AC - Peak ends, return to 74
|
2026-07-10 01:09:48 +00:00
|
|
|
description: >-
|
|
|
|
|
v2 (2026-07-09). At 7pm every day, returns the thermostat to 74F after the
|
|
|
|
|
peak window. Intentionally runs daily (no workday gate) and has no external
|
|
|
|
|
dependencies. Managed in git; see AUTOMATIONS.md.
|
|
|
|
|
mode: single
|
2026-07-10 01:01:08 +00:00
|
|
|
triggers:
|
2026-07-10 01:09:48 +00:00
|
|
|
- trigger: time
|
|
|
|
|
at: "19:00:00"
|
2026-07-10 01:01:08 +00:00
|
|
|
conditions: []
|
|
|
|
|
actions:
|
2026-07-10 01:09:48 +00:00
|
|
|
- action: climate.set_temperature
|
|
|
|
|
target:
|
|
|
|
|
entity_id: climate.t6_pro_z_wave_programmable_thermostat_with_smartstart
|
|
|
|
|
data:
|
|
|
|
|
temperature: 74
|