mirror of
https://github.com/home-assistant/core.git
synced 2025-07-24 21:57:51 +00:00
Return override target temp for incomfort climate (#119528)
This commit is contained in:
parent
51891ff8e2
commit
532f6d1d97
@ -86,8 +86,12 @@ class InComfortClimate(IncomfortEntity, ClimateEntity):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def target_temperature(self) -> float | None:
|
def target_temperature(self) -> float | None:
|
||||||
"""Return the temperature we try to reach."""
|
"""Return the (override)temperature we try to reach.
|
||||||
return self._room.setpoint
|
|
||||||
|
As we set the override, we report back the override. The actual set point is
|
||||||
|
is returned at a later time.
|
||||||
|
"""
|
||||||
|
return self._room.override
|
||||||
|
|
||||||
async def async_set_temperature(self, **kwargs: Any) -> None:
|
async def async_set_temperature(self, **kwargs: Any) -> None:
|
||||||
"""Set a new target temperature for this zone."""
|
"""Set a new target temperature for this zone."""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user