ZyberSE
1
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
MarkR
2
use scenes like in this thread
ZyberSE
3
Thank you @MarkR, I’ll test this tomorrow
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