mirror of
https://github.com/GeorgeSG/sarah.git
synced 2026-05-13 19:54:42 +00:00
40 lines
1.4 KiB
YAML
40 lines
1.4 KiB
YAML
automation:
|
|
- alias: iOS · Alarm off
|
|
trigger:
|
|
platform: event
|
|
event_type: ios.action_fired
|
|
action:
|
|
choose:
|
|
- conditions: "{{ trigger.event.data.actionName == 'alarm_off' }}"
|
|
sequence:
|
|
- service: notify.telegram
|
|
data:
|
|
title: "📱 *iOS Module*"
|
|
message: "iOS alarm is off. Switching to Day Mode!"
|
|
- service: input_select.select_option
|
|
entity_id: input_select.bedroom_mode
|
|
data:
|
|
option: "day"
|
|
|
|
- conditions: "{{ trigger.event.data.actionName == 'wind_down' }}"
|
|
sequence:
|
|
- service: notify.telegram
|
|
data:
|
|
title: "📱 *iOS Module*"
|
|
message: "iOS wind_down is on. Switching to Bed Mode!"
|
|
- service: input_select.select_option
|
|
entity_id: input_select.bedroom_mode
|
|
data:
|
|
option: "bed"
|
|
|
|
- conditions: "{{ trigger.event.data.actionName == 'bedtime' }}"
|
|
sequence:
|
|
- service: notify.telegram
|
|
data:
|
|
title: "📱 *iOS Module*"
|
|
message: "iOS bedtime is on. Switching to Night Mode!"
|
|
- service: input_select.select_option
|
|
entity_id: input_select.bedroom_mode
|
|
data:
|
|
option: "night"
|