-
Hi @robinostlund, I need your help with Climate implementation. I don't know if it was working before all the latest changes. I was working last weekend on implementing it with the temp control: But I am stuck with the Let me explain the problem that I am facing. Any idea how to solve it? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 13 replies
-
Hi @stickpin Well it has been working in the past, but it sounds like it is an update trigger that is missing. As currently it is the sensor itself for target temperature that is being update, not the climate. See them as individual entities. I don't remember exactly how it is working but you need to somehow get the climate entity to identify by itself that the value has been updated so it updates the state of the climate entity. I have noticed though that more and more car integrations is moving this control over to button entities. What do you think about that? One button for starting the climatisation and one for stopping. And i think this is because of the complexicy and many dependencies for the climate entity type. |
Beta Was this translation helpful? Give feedback.
-
@robinostlund I was checking an old code and it seems like it never went live:
I can enable the climate On/Off switch but not the temperature control unless I move to the number entity slider or find a way to use the climate entity properly. But I am afraid the last one will require a lot of code rewrite on the frontend part which I am trying to avoid. :) It looks like the climate entity missing a callback, but I don't know how to implement it. |
Beta Was this translation helpful? Give feedback.
-
Core 2024.1.6
Frontend 20240104.0
Am 19. Februar 2024 10:16:05 MEZ schrieb stickpin ***@***.***>:
…Which version of Home Assistant do you use?
--
Reply to this email directly or view it on GitHub:
#568 (reply in thread)
You are receiving this because you commented.
Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
@stickpin I'm trying 4.5.3 on a VM (where I have an updated Home Assistant version) and I don't see the Climate control. I've opened a separate bug as #577 to not pollute the thread here. |
Beta Was this translation helpful? Give feedback.
Hi, when you say:
you mean that when the backend changes the target temperature (for example when a user changes the temp within the Volkswagen app) to a new value it appears on the entity here:
but does not on the control here:
?
If so, I have seen other Home Assistant integrations that change the
self._attr_target_temperature
on theClimateEntity
during an update.Maybe you didn't apply that already? I'm not so skilled in Home Assistant integrations, though, but this is just what I've noticed.
Documentation doesn't help so much.