Advertisement
yurghie

Untitled

May 4th, 2023
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.50 KB | None | 0 0
  1. automation:
  2. - alias: endre farge på lys
  3.   trigger:
  4.     platform: time_pattern
  5.     seconds: '/5'
  6.   action:
  7.   - service: input_select.select_next
  8.     entity_id: input_select.color_list
  9.   - service: light.turn_on
  10.     entity_id: light.wiz_spotter_hagen  
  11.     data_template:
  12.       color_name: '{{states("input_select.color_list")}}'
  13.       transition: 2
  14.  
  15. input_select:
  16.   color_list:
  17.     name: Fargeliste
  18.     options:
  19.      - 'red'
  20.       - 'green'
  21.       - 'yellow'
  22.       - 'blue'
  23.       - 'azure'
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement