diff --git a/custom_components/hon/number.py b/custom_components/hon/number.py index 60081e9..ba148e9 100644 --- a/custom_components/hon/number.py +++ b/custom_components/hon/number.py @@ -252,6 +252,10 @@ class HonNumberEntity(HonEntity, NumberEntity): class HonConfigNumberEntity(HonNumberEntity): entity_description: HonConfigNumberEntityDescription + @property + def native_value(self) -> float | None: + return self._device.settings[self.entity_description.key].value + async def async_set_native_value(self, value: str) -> None: setting = self._device.settings[self.entity_description.key] if isinstance(setting, HonParameterRange):