various tidyups
This commit is contained in:
@@ -9,9 +9,14 @@
|
||||
# packages/heat_pump_master_bedroom_schedules.yaml
|
||||
#
|
||||
# VERSION:
|
||||
# V1.1 2026-07-20
|
||||
# V1.2 2026-07-24
|
||||
#
|
||||
# VERSION HISTORY:
|
||||
# V1.2 2026-07-24
|
||||
# - Added startup catch-up to midnight_off: when HA starts between
|
||||
# midnight and 21:00 with the Midnight Off or Night Power toggle on,
|
||||
# the heat pump is turned off immediately.
|
||||
#
|
||||
# V1.1 2026-07-20
|
||||
# - Added structured documentation for schedules, boost, and helper behavior.
|
||||
#
|
||||
@@ -50,7 +55,9 @@
|
||||
#
|
||||
# OPERATION NOTES:
|
||||
# - The 21:00 and midnight schedules use exact-time triggers.
|
||||
# - There is no startup catch-up if Home Assistant is offline at either time.
|
||||
# - The midnight_off automation includes a startup trigger: if HA restarts
|
||||
# between midnight and 21:00 with the Midnight Off or Night Power toggle
|
||||
# on, the heat pump is turned off immediately.
|
||||
#
|
||||
##########################################################################################
|
||||
|
||||
@@ -214,6 +221,11 @@ automation:
|
||||
trigger:
|
||||
- platform: time
|
||||
at: "00:00:00"
|
||||
- platform: homeassistant
|
||||
event: start
|
||||
condition:
|
||||
- condition: template
|
||||
value_template: "{{ now().hour < 21 }}"
|
||||
action:
|
||||
- choose:
|
||||
- conditions:
|
||||
|
||||
Reference in New Issue
Block a user