Hue transition not working?

Why don’t this work?

It switches on the first lamp to full brightness directly and nothing happens to the 2nd lamp. No transition what so ever?

    - service: light.turn_on
      data:
        entity_id: light.bedroom_1, light.bedroom_2
        brightness: 255
        rgb_color: [255,255,255]
        transition: 30

use scenes like in this thread

Thank you @MarkR, I’ll test this tomorrow :slight_smile:

You’d encounter the same issue if you formatted your code that way when using scenes or even scripts.

Change your code to this:

- service: light.turn_on
  data:
    entity_id:
      - light.bedroom_1
      - light.bedroom_2
    brightness: 255
    rgb_color: [255,255,255]
    transition: 30
1 Like