Set color to an homematic HmIP-BSL device

Hi,

I have an HMIP BSL Switch actuator for brand switches, with signal light.
The light is on ch 8 I guess .
So how can I set the light e.g. to RED.
I found an service “Homematic(IP) Local: Set device value”…
But it doesn’t work. Any hints, how I set the color ?

Hi!
The HmIP-BSL device is offering 2 different RGB light entities - one is on ch8, the other on ch12.
To set the color of Homematic entity light.00xxxxxxxxxxxx_8 (i.e. the channel 8 light of your BSL), I am e.g. using the following action in an automation:

action:
  - service: light.turn_on
    data:
      rgb_color:
        - 255
        - 0
        - 0
      brightness_pct: 100
    target:
      entity_id: light.00xxxxxxxxxxxx_8

Color name can be used too:

service: light.turn_on
data:
  color_name: blue
  brightness_pct: 89
target:
  entity_id: light.kuhlschrank_warnung

Other colors are black, blue, green, turquoise, red, purple, yellow, white.

In the recent version, there is also the command “effect”:

action:
  - service: light.turn_on
    data:
      rgb_color:
        - 255
        - 255
        - 255
      brightness_pct: 60
      effect: test

Now, what are the right terms for “effect”?

Thanks a lot!