various esphome changes

This commit is contained in:
root
2025-05-18 16:35:38 +12:00
parent e60f404d05
commit 0c3ba9cad8
36 changed files with 2813 additions and 356 deletions

View File

@@ -0,0 +1,25 @@
automation:
# Automation to turn on drying at 9pm in the master bedroom (if switched on ith the helper)
- id: master_bedroom_offpeak_dehumidify
alias: Master Bedroom Off-Peak Dehumidify
mode: single
trigger:
- platform: time
at: "21:20:00"
condition:
- condition: state
entity_id: input_boolean.master_bedroom_offpeak_dehumidify
state: "on"
action:
- service: climate.set_hvac_mode
target:
entity_id: climate.master_bedroom
data:
hvac_mode: dry
- wait_for_trigger:
- platform: time
at: "00:00:00"
- service: climate.turn_off
target:
entity_id: climate.master_bedroom