Dear all,
thanks first for your help.
I test some automations with my outside lights but the trigger is not working. The lights doensnt turn off/on with the automation.
My groups:
licht_vorgarten:
name: Licht_Vorgarten
entities:
- light.eingangstuer_links
- light.eingangstur_rechts
licht_terasse:
name: Licht_Terasse
entities:
- light.lampe_links
- light.lampe_rechts
and my automation:
- id: outdoor_light_at_night
alias: Outdoor lights at night
initial_state: ‘on’
trigger:
platform: sun
event: sunset
offset: “00:45:00”
action:
- service: homeassistant.turn_on
entity_id:
- group.licht_vorgarten
-
id: outdoor_light_off_midnight
alias: ‘Turn off Light at Midnight’
trigger:
platform: time
at: ‘20:00:00’
action:
service: homeassistant.turn_off
entity_id:
- group.licht_vorgarten -
id: testlight
alias: test
trigger:
platform: time
at: ‘20:15:00’
action:
service: light.turn_off
entity_id: light.lampe_rechts
The last automation is a test and the automation works if I click on trigger at the dashboard. Then the light goes off. But it doesnt turn off with the time … do you have any idea?
Enviroment:
Hassbian on PI3
Thanks.
Best regards