Tuya led_strip_wifi_BLE

This Tuya strip is driving me a little mad…I’ve tried adding it via the Tuya Integration and local_tuya from HACS and by either method I get the same problem.

Full control is possible in Lovelace with the card. Color brightness etc all work fine…for either the (cloud) Tuya Integration or the local one.

But I want automations to set different colors and brightness levels based on other events (for example when the TV is switched on at night I want the lights behind me to dim so as not to cause glare)

I just can’t figure this out…as when I set up the automation the only options I get are on/off, Toggle and one for brightness, even though the colour picker works in Lovelace there seems to be no entity for it.

How would I set up an automation to set a specific (RGB) color ?

Just updating here as I found the answer.

Call a Service light.turn_on eg. Also works in the config GUI with a color picker etc…obvious when you know :smiley:

action:
  - service: light.turn_on
    data:
      rgb_color:
        - 247
        - 253
        - 172
      brightness_pct: 100
    target:
      device_id: ***************
mode: single
1 Like