Skip to content

Commit 1c91252

Browse files
committed
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
1 parent 9341529 commit 1c91252

3 files changed

Lines changed: 10 additions & 8 deletions

File tree

config/.HA_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025.10.3
1+
2025.10.4

config/packages/climate.yaml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -234,10 +234,12 @@ automation:
234234
action:
235235
- service: climate.set_preset_mode
236236
data:
237-
entity_id:
238-
- climate.downstairs
239-
- climate.upstairs
237+
entity_id: climate.downstairs
240238
preset_mode: 'eco'
239+
- service: climate.set_temperature
240+
data:
241+
entity_id: climate.upstairs
242+
temperature: 84
241243

242244
# Automation: Set Thermostats Back to Cool Mode
243245
- alias: 'Set Thermostats to Cool When Home'
@@ -278,7 +280,7 @@ automation:
278280
entity_id: person.justin
279281
state: 'home'
280282
sequence:
281-
- service: climate.set_preset_mode
283+
- service: climate.set_temperature
282284
data:
283285
entity_id: climate.upstairs
284-
preset_mode: 'none'
286+
temperature: 80

config/packages/powerwall.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,10 +156,10 @@ automation:
156156
data:
157157
entity_id: climate.upstairs
158158
hvac_mode: cool
159-
- service: climate.set_preset_mode
159+
- service: climate.set_temperature
160160
data:
161161
entity_id: climate.upstairs
162-
preset_mode: eco
162+
temperature: 80
163163

164164
- service: script.notify_engine
165165
data:

0 commit comments

Comments
 (0)