Hi!
I’m trying to change the HVAC temperature (ATLANTIC model) using automation.
I’m able to easily change the preset mode, but totally unable to change the temperature. What’s wrong?
Automation config:
id: '1678172124621'
alias: test temperature
description: ''
trigger:
- platform: time
at: '08:00:00'
condition: []
action:
- service: climate.set_temperature
data:
temperature: 20.5
target:
entity_id: climate.hp_actuator_etage
mode: single
Trace timeline is showing:
Triggered by the time at 7 mars 2023 à 08:00:00
Thermostat: Set temperature Deuxième Etage
(climate.hp_actuator_etage) turned unavailable
1 seconde later
(climate.hp_actuator_etage) turned auto
Finished at 7 mars 2023 à 08:00:00 (runtime: 0.22 seconds)
I can’t do everything with HOME ASSISTANT but I’m struggling on this temperature topic
And the same script is working fine for changing the preset mode (ex: from comfort to eco mode)
I have seen others using a different hub have a similar problem with an Ecobee Thermostat. If the thermostat is in Auto mode where a high temperature is set to turn on cooling and a low temperature to turn on heat, there must be a range of 5 degrees F between the 2 temperatures. Any effort to change one of those temperatures within 5 degrees of the other will be ignored. I am not familiar with the system that you are using or what ECO mode is but is that a possibility? Have you only tried to set to 20 or 21?
This system is really efficient you can normally choose temperature at 0.5°C and it’s working fine (outside home assistant). With a remote controller you can set preset and temperature (this kind of system: COZYTOUCH - Atlantic )
At this time I’m only able to switch between ECO or COMFORT mode (I configured one at 20°C and the other at 22°C). Easy to switch between those mode only.
I’m testing the change target_temp_high and target_temp_low to see if I’m able to change the variable.
In fact when I’m trying to change temperature for one floor using simple_thermostat it changes the temperature visually only, and letters in RED as shown:
So maybe ATLANTIC hvac is blocking something???
5mn after changing the temperature it’s still 19.5 RED in the frontend but variables (dev mode) are showing 20°C. Refreshing the browser is now showing 20°C black. So climate.xx rejected the values.
Changing preset_mode is fine, but not for temperature.
I’ll try to change the target_temp_high or low values as mentionned by @tom_l and I’ll give you feedback.