Hi there,
this is my first post - i hope i got all facts.
Its a Livarno Lux E27 bulb RGB from Lidl (HG06106C).
As long as i controlled it by Lidl original Gateway (by Tuya) - it worked well.
I could switched RGB and CCT as i want to.
Now i switched to my CC2531 controller.
Paring worked well, and the bulb seems to be correctly recognized.
But there is no reaction on my settings, if i choose any RGB setup. Only CCT is working.
I tired to controll it by a standard light card on lovelace. It shows all excepted settings.
As next - i tried to set some parameters by a script - whis i also use to control an ESP8266 with RGBW - that works
So i adopted the script in this way:
sitka_lampe_blau:
alias: 'Sitka: LED Lampe blau fix'
sequence:
- service: light.turn_on
target:
entity_id: light.sitka_rgb_led
data:
brightness: 100
color_temp: 200
mode: single
icon: mdi:led-on
This does what i except - setting the bulb on - to brightness of 100 and color_temp 200.
I can play around with the values - it always works.
Now i try to RGB this :
sitka_lampe_blau:
alias: 'Sitka: LED Lampe blau fix'
sequence:
- service: light.turn_on
target:
entity_id: light.sitka_rgb_led
data:
brightness: 100
color_temp: 200
color_xy:
- color: [rgb,100,50,50]
mode: single
icon: mdi:led-on
Checking the config and reloading “scripts” - done.
On execute this script - i got this fail massage:
"Fehler beim Aufrufen des Diensts script/sitka_lampe_blau. extra keys not allowed @ data[‘color_xy’]
"
I didn’t find the right way to implement the color_xy feature - but honest - i believe, if i find the right structure - my RGB problem will still be.
Does anyone of you have a Lidl E27 Light Bulb running? Who can help me?`
Thank you !