25 lines
680 B
YAML
25 lines
680 B
YAML
# https://www.home-assistant.io/docs/automation/trigger/#sun-trigger
|
|
description: Außenbeleuchtung einschalten, wenn es dunkel wird
|
|
alias: Außenbeleuchtung einschalten
|
|
id: 809a026b-9996-4cd8-b47c-c709d6173d16
|
|
trigger:
|
|
- platform: numeric_state
|
|
entity_id: sun.sun
|
|
attribute: elevation
|
|
# Can be a positive or negative number
|
|
below: -4.0
|
|
condition:
|
|
- alias: "before 21:00"
|
|
condition: time
|
|
after: "16:30:00"
|
|
before: "21:00:00"
|
|
# weekday:
|
|
# - " mon"
|
|
action:
|
|
- service: notify.dev_telegram
|
|
data:
|
|
message: sun elevation below -4.0 - turning lights on
|
|
- service: light.turn_on
|
|
target:
|
|
entity_id: light.aussenbeleuchtung
|