Hello all,
I want to automate my blinds, but not every blind at the same time after sunset.
Opening the separate blinds on a certain time is no problem. Even the first group closing after sunset (offset +00:30) works, but I have trouble closing the blind at the second time after sunset (offset +00:45).
Would someone please give me advise on this subject?
description: ''
trigger:
- platform: time
at: '08:30:00'
- platform: time
at: '09:00:00'
- platform: sun
event: sunset
offset: '+00:30'
- platform: sun
event: sunset
offset: '+00:45'
condition: []
action:
- choose:
- conditions:
- condition: time
after: '08:29:00'
before: '08:31:00'
sequence:
- service: cover.open_cover
target:
entity_id:
- cover.duwi_zw_esj_300_blind_control
- cover.rolluik_computerkamer_compute
- cover.rolluik_eetkamer
- cover.rolluik_logeerkamer_logeerk
- conditions:
- condition: time
after: '08:59:00'
before: '09:01:00'
sequence:
- service: cover.open_cover
target:
entity_id: cover.rolluik_woonkam
- conditions:
- condition: sun
after: sunset
after_offset: '+00:30'
sequence:
- service: cover.close_cover
target:
entity_id:
- cover.duwi_zw_esj_300_blind_control
- cover.rolluik_computerkamer_compute
- cover.rolluik_eetkamer
- cover.rolluik_logeerkamer_logeerk
- conditions:
- condition: sun
after: sunset
after_offset: '+00:45'
sequence:
- service: cover.close_cover
target:
entity_id: cover.rolluik_woonkam
default: []
mode: single
Thanks in advance for your help.
Franklin