Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
- alias: Kalender Urlaub
id: kalender_urlaub
trigger:
- platform: calendar
event: start
entity_id: kalender.urlaub
- platform: calendar
event: end
entity_id: kalender.urlaub
condition:
- condition: template
value_template: "{{ 'Urlaub' in trigger.calendar_event.summary }}"
action:
- if:
- "{{ trigger.event == 'start' }}"
then:
- service: input_boolean.turn_on
entity_id: input_boolean.urlaub
else:
- service: input_boolean.turn_off
entity_id: input_boolean.urlaub
mode: queued