Closed msondermeijer closed 1 year ago
Hey there @home-assistant/core, mind taking a look at this issue as it has been labeled with an integration (climate
) you are listed as a code owner for? Thanks!
(message by CodeOwnersMention)
climate documentation climate source (message by IssueLinks)
I have same issue, should I provide some info?
I have a similar issue with climate.set_temperature when trying to set the temperature and the hvac_mode at the same time (in my case the target value was "heat"): It only sometimes managed to set the thermostat's target temperatures sometimes it just doesn't update at all.
I have resorted to splitting the commands into two service calls like suggest here: https://community.home-assistant.io/t/climate-set-temperature-not-working-on-honeywell-thermostat/394011
- service: climate.set_temperature
data:
temperature: "{{ states('input_number.zieltemperatur_arbeitszimmer') }}"
hvac_mode: heat
target:
area_id: arbeitszimmer
->
- service: climate.set_temperature
data:
temperature: "{{ states('input_number.zieltemperatur_arbeitszimmer') }}"
target:
area_id: arbeitszimmer
- service: climate.set_hvac_mode
data:
hvac_mode: heat
target:
area_id: arbeitszimmer
There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates. Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment 👍 This issue has now been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.
The problem
Using the UI, I cannot set my temperature anymore for a Qubino Zwave ZMNHIA thermostat (non zw+, FW: v1.12) this module only have one HVAC_Mode (off / heat_cool), but only ONE setpoint. this is not compatible with the description in https://www.home-assistant.io/integrations/climate/
please update/ allow this setpoint to be used again also with hvac_mode = heat_cool or Auto)
see forum: https://community.home-assistant.io/t/qubino-thermostat-old-zmnhiax-cant-set-temperature/460453/4
What version of Home Assistant Core has the issue?
2022.10.5
What was the last working version of Home Assistant Core?
No response
What type of installation are you running?
Home Assistant Container
Integration causing the issue
Climate, ZwaveJS
Link to integration documentation on our website
No response
Diagnostics information
No response
Example YAML snippet
Anything in the logs that might be useful for us?
Additional information
No response