async def async_update(self):
Request a state update from KNX bus.
await self._device.sync()
await self._device.mode.sync()
@property
def temperature_unit(self):
After Change
async def async_update(self) -> None:
Request a state update from KNX bus.
await self._device.sync()
if self._device.mode is not None:
await self._device.mode.sync()
@property
def temperature_unit(self) -> str:
Return the unit of measurement.
return self._unit_of_measurement