From 146ec4e760e12b0e9aecb8cea735cfd8af7b6306 Mon Sep 17 00:00:00 2001 From: Avi Miller Date: Sun, 28 Jul 2024 18:28:42 +1000 Subject: [PATCH] Create theme select entities on matrix devices (#122695) Signed-off-by: Avi Miller --- homeassistant/components/lifx/select.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/lifx/select.py b/homeassistant/components/lifx/select.py index ef2967d1776..de3a5b431a9 100644 --- a/homeassistant/components/lifx/select.py +++ b/homeassistant/components/lifx/select.py @@ -50,7 +50,10 @@ async def async_setup_entry( LIFXInfraredBrightnessSelectEntity(coordinator, INFRARED_BRIGHTNESS_ENTITY) ) - if lifx_features(coordinator.device)["multizone"] is True: + if ( + lifx_features(coordinator.device)["multizone"] is True + or lifx_features(coordinator.device)["matrix"] is True + ): entities.append(LIFXThemeSelectEntity(coordinator, THEME_ENTITY)) async_add_entities(entities)