Remove logging and clear up some general cruft

This commit is contained in:
CeeWeasel
2026-07-09 16:26:31 -04:00
parent 30bbe781ef
commit 9d501134c8
10 changed files with 48 additions and 123 deletions
+26 -5
View File
@@ -20,8 +20,29 @@ action:
target:
entity_id: climate.thermostat
- action: climate.set_preset_mode
target:
entity_id: climate.thermostat
data:
preset_mode: "auto"
- choose:
- conditions:
- condition: state
entity_id: input_boolean.home_occupied
state: "on"
sequence:
- action: climate.set_preset_mode
target:
entity_id: climate.thermostat
data:
preset_mode: "home"
- conditions:
- condition: state
entity_id: input_boolean.home_occupied
state: "off"
sequence:
- action: climate.set_preset_mode
target:
entity_id: climate.thermostat
data:
preset_mode: "away"