mirror of
https://github.com/GeorgeSG/sarah.git
synced 2026-06-21 10:57:43 +00:00
Move config out of subfolder
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
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"
|
||||
Reference in New Issue
Block a user