diff --git a/custom_components/localtuya/light.py b/custom_components/localtuya/light.py index b7745e7..d0d7c67 100644 --- a/custom_components/localtuya/light.py +++ b/custom_components/localtuya/light.py @@ -188,7 +188,10 @@ class LocaltuyaLight(LocalTuyaEntity, LightEntity): """Return the hs color value.""" if self.is_color_mode: return self._hs - if self.supported_features & SUPPORT_COLOR: + if ( + self.supported_features & SUPPORT_COLOR + and not self.supported_features & SUPPORT_COLOR_TEMP + ): return [0, 0] return None