31 lines
878 B
YAML
31 lines
878 B
YAML
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_all_on
|
|
entities:
|
|
script.light_store_restore: on
|
|
- name: light_all_off
|
|
entities:
|
|
script.light_store_off: on |