various tidyups and esphome adds

This commit is contained in:
root
2026-02-16 22:13:42 +13:00
parent d7884770fe
commit 83e4040b84
16 changed files with 2251 additions and 113 deletions
@@ -0,0 +1,24 @@
automation:
# Automation to turn on the heat pump at 9pm in the master bedroom (if switched on with the helper)
- id: master_bedroom_offpeak_dehumidify
alias: Master Bedroom Off-Peak Dehumidify
mode: single
triggers:
- trigger: time
at: "21:00:00"
conditions:
- condition: state
entity_id: input_boolean.master_bedroom_offpeak_dehumidify
state: "on"
actions:
- action: climate.set_hvac_mode
target:
entity_id: climate.master_bedroom
data:
hvac_mode: "heat_cool"
- wait_for_trigger:
- trigger: time
at: "00:00:00"
- action: climate.turn_off
target:
entity_id: climate.master_bedroom