Update HA version to 2026.2.1 and enhance climate automation conditions to skip HVAC changes when outside temperature is below 75F. Improved logic for family presence and temperature checks.

pull/1567/head
Carlo Costanzo 2 months ago
parent 07855bc1ca
commit 044be06e7e

@ -1 +1 @@
2026.2.0
2026.2.1

@ -142,6 +142,20 @@ script:
data:
entity_id: climate.downstairs
preset_mode: 'eco'
- conditions:
- condition: and
conditions:
- condition: state
entity_id: group.family
state: 'home'
- condition: numeric_state
entity_id: sensor.pirateweather_temperature
below: 75
sequence:
- service: script.send_to_logbook
data:
topic: "CLIMATE"
message: "Skipping downstairs HVAC changes (outside temp <75F)."
- conditions:
- condition: and
conditions:
@ -165,9 +179,14 @@ script:
entity_id: climate.downstairs
temperature: 78
- conditions:
- condition: state
entity_id: group.family
state: 'home'
- condition: and
conditions:
- condition: state
entity_id: group.family
state: 'home'
- condition: numeric_state
entity_id: sensor.pirateweather_temperature
above: 75
sequence:
- service: script.send_to_logbook
data:

Loading…
Cancel
Save

Powered by TurnKey Linux.