27 lines
754 B
YAML
27 lines
754 B
YAML
# https://www.home-assistant.io/integrations/script
|
|
alias: Skript Gute Nacht
|
|
sequence:
|
|
- service: light.turn_on
|
|
target:
|
|
entity_id: light.attic_ceiling_spots
|
|
data:
|
|
brightness: 130
|
|
rgb_color: [255, 0, 0]
|
|
- service: switch.turn_off
|
|
target:
|
|
entity_id: switch.metered_wall_plug_switch_node4
|
|
- service: light.turn_off
|
|
target:
|
|
entity_id: light.licht_buero_regal
|
|
- service: light.turn_off
|
|
target:
|
|
entity_id: light.licht_buero_decke
|
|
- service: light.turn_off
|
|
target:
|
|
entity_id: light.stricklicht
|
|
- delay:
|
|
minutes: 3 # supports seconds, milliseconds, minutes, hours
|
|
- service: scene.turn_on
|
|
target:
|
|
entity_id: scene.schalfenszeit
|
|
mode: single |