#Hi - hope someone can help me. I have a
1 messages · Page 1 of 1 (latest)
I had to do the opposite a couple of years ago: light bulbs showed only white/color-temp but no RGB. Had to override the entity's supported_values.
In configuration.yaml, make sure you have something like this yaml homeassistant: customize: !include customize.yaml
This is my example In customize.yaml ```yaml
light.living_room_1:
supported_features: 191
light.living_room_2:
supported_features: 191```
Where the the supported_features value is derrived from these values: ```# SUPPORT_BRIGHTNESS = 1
SUPPORT_COLOR_TEMP = 2
SUPPORT_EFFECT = 4
SUPPORT_FLASH = 8
SUPPORT_COLOR = 16
SUPPORT_TRANSITION = 32
SUPPORT_WHITE_VALUE = 128
All features = 191```
So, for you, I would suggest trying a value of 175.
1 + 2 + 4 + 8 + 32 + 128 = 175
Restart HA and see if that works for you. If not, just remove what we did. I'm not 100% sure this will work, but it is what I would try.