diff --git a/homeassistant/components/wled/light.py b/homeassistant/components/wled/light.py index 701f765ebaa9..0845735e6c31 100644 --- a/homeassistant/components/wled/light.py +++ b/homeassistant/components/wled/light.py @@ -254,10 +254,10 @@ class WLEDSegmentLight(WLEDEntity, LightEntity): } if ATTR_RGB_COLOR in kwargs: - data[ATTR_COLOR_PRIMARY] = kwargs[ATTR_RGB_COLOR] + data[ATTR_COLOR_PRIMARY] = tuple(kwargs[ATTR_RGB_COLOR]) if ATTR_RGBW_COLOR in kwargs: - data[ATTR_COLOR_PRIMARY] = kwargs[ATTR_RGBW_COLOR] + data[ATTR_COLOR_PRIMARY] = tuple(kwargs[ATTR_RGBW_COLOR]) if ATTR_COLOR_TEMP_KELVIN in kwargs: data[ATTR_CCT] = kelvin_to_255(