Update HA version to 2025.10.4 and modify climate automation to set temperatures directly instead of using preset modes for improved control. Adjusted automation sequences for both upstairs and downstairs thermostats. Replace Nest Thermostat #1508

pull/1535/head
Carlo Costanzo 1 month ago
parent 934152949a
commit 1c91252512

@ -1 +1 @@
2025.10.3
2025.10.4

@ -234,10 +234,12 @@ automation:
action:
- service: climate.set_preset_mode
data:
entity_id:
- climate.downstairs
- climate.upstairs
entity_id: climate.downstairs
preset_mode: 'eco'
- service: climate.set_temperature
data:
entity_id: climate.upstairs
temperature: 84
# Automation: Set Thermostats Back to Cool Mode
- alias: 'Set Thermostats to Cool When Home'
@ -278,7 +280,7 @@ automation:
entity_id: person.justin
state: 'home'
sequence:
- service: climate.set_preset_mode
- service: climate.set_temperature
data:
entity_id: climate.upstairs
preset_mode: 'none'
temperature: 80

@ -156,10 +156,10 @@ automation:
data:
entity_id: climate.upstairs
hvac_mode: cool
- service: climate.set_preset_mode
- service: climate.set_temperature
data:
entity_id: climate.upstairs
preset_mode: eco
temperature: 80
- service: script.notify_engine
data:

Loading…
Cancel
Save

Powered by TurnKey Linux.