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

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

Loading…
Cancel
Save

Powered by TurnKey Linux.