Return override target temp for incomfort climate (#119528)

pull/119555/head
Jan Bouwhuis 2024-06-12 23:13:12 +02:00 committed by GitHub
parent 51891ff8e2
commit 532f6d1d97
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 2 deletions

View File

@ -86,8 +86,12 @@ class InComfortClimate(IncomfortEntity, ClimateEntity):
@property
def target_temperature(self) -> float | None:
"""Return the temperature we try to reach."""
return self._room.setpoint
"""Return the (override)temperature we try to reach.
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:
"""Set a new target temperature for this zone."""