diff --git a/custom_components/echonetlite/climate.py b/custom_components/echonetlite/climate.py index a6832e4..71f4336 100644 --- a/custom_components/echonetlite/climate.py +++ b/custom_components/echonetlite/climate.py @@ -187,7 +187,8 @@ def _set_attrs(self): """temperature we try to reach.""" _val = self._connector._update_data.get(ENL_HVAC_SET_TEMP) - if _val == -3: + # -3: Rule of thumb, 0xFD: Temperature indeterminable + if _val in {-3, 0xFD}: _val = None self._attr_target_temperature = _val