I have a RGBW bulb flashed with the latest Tasmota v9.5 and the latest version of Home Assistant.
In HA, I’m able to set the bulb to a pure white value in the UI by selecting the white button and then setting a white value.
However, I’m not able to set the bulb to white using the light.turn_on service.
I’ve tried sending:
data:
rgbw_color: [0,0,0,255]
brightness_pct: 100
But the the light color doesn’t change. Looking at the console output of Tasmota it gives me the same STATE/RESULT values for Color and White as were used in the last color change request.
I can use:
data:
rgb_color: [0,0,255]
brightness_pct: 100
To change the light to blue. But after the light is changed to blue and I try to send any rgbw_color value nothing happens. In fact, sending any rgbw_color values don’t seem to result in a color change at the bulb.
I’m using the Tasmota integration, but I don’t know which topic to subscribe to in order to identify exactly what commands HA is send out to the bulb.
This worked in the June and earlier releases of HA…so something may have broken in the latest release?