Quantcast
Channel: Configuration - Home Assistant Community
Viewing all articles
Browse latest Browse all 106412

Holiday Lights RGB loop Automation Help

$
0
0

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

Read full topic


Viewing all articles
Browse latest Browse all 106412

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>