diff --git a/homeassistant/components/velbus/climate.py b/homeassistant/components/velbus/climate.py index c11698b1358..5dce4033074 100644 --- a/homeassistant/components/velbus/climate.py +++ b/homeassistant/components/velbus/climate.py @@ -61,6 +61,11 @@ class VelbusClimate(VelbusEntity, ClimateEntity): None, ) + @property + def current_temperature(self) -> int | None: + """Return the current temperature.""" + return self._channel.get_state() + async def async_set_temperature(self, **kwargs: Any) -> None: """Set new target temperatures.""" if (temp := kwargs.get(ATTR_TEMPERATURE)) is None: