I’m trying to make a loop that slow transitions my 7 outdoor WGRB bulbs between red and green. I’ve setup the automation, but I don’t get any feedback when it runs. Not sure where to start fixing it?
alias: Christmas Color Cycle
trigger:
- platform: sun
event: sunset
offset: '0'
action:
- service: light.turn_on
data:
transition: 10
brightness_pct: 100
rgbw_color: red
target:
entity_id:
- light.porch_rgb_4
- light.porch_rgb_1
- light.garage_can_rgb
- service: light.turn_on
data:
transition: 10
brightness_pct: 100
rgbw_color: green
target:
entity_id:
- light.porch_rgb_3
- light.porch_rgb_2
- light.garage_left_rgb
- light.garage_right_rgb
- delay:
seconds: 5
- service: light.turn_on
data:
transition: 10
brightness_pct: 100
rgbw_color: red
target:
entity_id:
- light.garage_left_rgb
- light.garage_right_rgb
- light.porch_rgb_2
- light.porch_rgb_3
- service: light.turn_on
data:
transition: 10
brightness_pct: 100
rgbw_color: green
target:
entity_id:
- light.garage_can_rgb
- light.porch_rgb_2
- light.porch_rgb_3
- repeat:
until:
- condition: time
after: '01:00:00'
mode: single
3 posts - 2 participants