34 lines
991 B
YAML
Executable File
34 lines
991 B
YAML
Executable File
scene:
|
|
- name: light_adaptive
|
|
entities:
|
|
light.all_direct: false
|
|
light.all_indirect: true
|
|
switch.adaptive_lighting_default: on
|
|
switch.adaptive_lighting_sleep_mode_default: off
|
|
- name: light_blue
|
|
entities:
|
|
switch.adaptive_lighting_default: off
|
|
switch.adaptive_lighting_sleep_mode_default: off
|
|
light.all_direct: false
|
|
light.all_indirect:
|
|
rgb_color: [0, 0, 255]
|
|
state: true
|
|
brightness: 20
|
|
- name: light_night
|
|
entities:
|
|
switch.adaptive_lighting_default: on
|
|
light.all_direct: false
|
|
light.all_indirect:
|
|
rgb_color: [255, 139, 21]
|
|
state: true
|
|
brightness: 1
|
|
switch.adaptive_lighting_sleep_mode_default: on
|
|
- name: light_bright
|
|
entities:
|
|
switch.adaptive_lighting_default: off
|
|
light.all_direct: false
|
|
light.all_lights:
|
|
color_temp: 238
|
|
state: true
|
|
brightness: 255
|
|
switch.adaptive_lighting_sleep_mode_default: off |