diff --git a/custom_components/wyzeapi/light.py b/custom_components/wyzeapi/light.py index c2be47e3..f71b7b75 100644 --- a/custom_components/wyzeapi/light.py +++ b/custom_components/wyzeapi/light.py @@ -218,6 +218,8 @@ def supported_color_modes(self): @property def color_mode(self): + if self._bulb.type is DeviceTypes.LIGHT: + return ColorMode.COLOR_TEMP return ColorMode.COLOR_TEMP if self._bulb.color_mode == "2" else ColorMode.HS @property