Sadly it doesn’t work as expected. This it how it looks like.
- id: '1641724966000'
alias: Gast Wlan einschalten
description: Gast Wlan einschalten
trigger:
- platform: time
at: 07:45
id: 'on'
- platform: time
at: '15:00'
id: 'off'
condition: []
action:
- choose:
- conditions:
- condition: trigger
id: 'on'
- condition: time
weekday:
- fri
sequence:
- service: switch.turn_on
target:
entity_id: switch.fritz_box_7590_wi_fi_gast_tux
- choose:
- conditions:
- condition: trigger
id: 'off'
sequence:
- service: switch.turn_off
target:
entity_id: switch.fritz_box_7590_wi_fi_gast_tux
default: []
default: []
I try to understand the automation debugging. This show me:
Executed: 23. Januar 2022, 10:59:06
Result:
choice: default
choose:
- conditions:
- condition: trigger
id: 'on'
- condition: time
weekday:
- fri
sequence:
- service: switch.turn_on
target:
entity_id: switch.fritz_box_7590_wi_fi_gast_tux
- choose:
- conditions:
- condition: trigger
id: 'off'
sequence:
- service: switch.turn_off
target:
entity_id: switch.fritz_box_7590_wi_fi_gast_tux
default: []
default: []
I think i have misunderstood something. The goal is, that the wlan is only on on Friday between 07:45 - 15:00 O’clock.
I understand it there for, that the default action should be set, if the time range not match. And the automation is set to default in the debug mode. So it should be triggered or?