-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After upgrade to 2024.8.2, unable to use climate.turn_off or turn_on #164
Comments
I use the "change mode" and "set to off" settings. That seems to work. |
Using 'set hvac mode' to 'off' is not working for me. I have a house full of minisplits that I have to turn off manually. Do we know if there is a fix being worked on for this? |
OK, I finally had some time to research this issue. Here's what I found: https://developers.home-assistant.io/blog/2024/01/24/climate-climateentityfeatures-expanded/ TL;DR: If an integration supports climate.turn_on / climate.turn_off it needs to set the proper ClimateEntityFeature flags, or a warning is emitted. Pull request #155 fixed this deprecation warning, but did so in a way that disables turn_on / turn_off. If one of you who sees this issue could test this out by adding |
Thank you for looking into this. I added the code as you instructed and restarted home assistant after doing so. Both my Node Red automation to turn off the heat and the back-up native HA automation I built when I started having this issue are still not turning off the heat when instructed. Both look as though they successfully make the call to turn it off, but when I check the heat is still on. |
The change in this PR: https://github.com/dlarrick/hass-kumo/pull/163/files is what you tried? And it's not working for you? That user reported success. Just for a sanity check, is your main HomeAssistant version reasonably up to date? If this doesn't work the next step is to look at what the other (officially-supported) climate integrations are doing here. I doubt I'll have time before the weekend. |
Your earlier one was more correct I think. The 2nd attempt is missing TURN_ON (and has FAN_MODE twice but that should not matter). So let me ask again, what version of HomeAssistant are you running? |
My apologies - I forgot to answer the other questions; |
FWIW the integration won't load for the second one because you are missing a |
I have automations with:
But after upgrading to 2024.8.2 I get the following error in the log:
Entity climate.computer_room does not support this service.
Additionally, when I try to use
Climate: Turn off
from Developer Tools -> Actions, it showsNo matching entities found
when I try to add an entity.Climate: Turn on
shows the same lack of entites, butClimate: Set HVAC mode
shows all my minisplits, matching what I am seeing in the automations.My current workaround is this:
I am currently running the latest released version of this plugin installed with HACS.
The text was updated successfully, but these errors were encountered: