Skip to content

Commit a0a93dc

Browse files
committed
Update climate automation to adjust temperature threshold to 79 and add condition for guest mode, enhancing control over climate settings.
1 parent 7403198 commit a0a93dc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

config/packages/climate.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,16 @@ automation:
189189
- platform: numeric_state
190190
entity_id: climate.downstairs
191191
attribute: temperature
192-
below: 78
192+
below: 79
193193
condition:
194194
- condition: state
195195
entity_id: sun.sun
196196
state: 'above_horizon'
197197
- condition: template
198198
value_template: "{{ state_attr('climate.downstairs', 'temperature') < 79 }}"
199+
- condition: state
200+
entity_id: input_boolean.guest_mode
201+
state: 'off'
199202
action:
200203
- service: climate.set_temperature
201204
data:

0 commit comments

Comments
 (0)