-
Notifications
You must be signed in to change notification settings - Fork 13
/
medication_reminder_ios.yaml
183 lines (166 loc) · 5.96 KB
/
medication_reminder_ios.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
blueprint:
name: Advanced medication reminder (iOS)
description: Get advanced notification and history for medication reminder
domain: automation
input:
reminder_time:
name: Reminder time
description: At what time do you want to be reminded
selector:
time: {}
notify_device:
name: Notification
description: Device needs to run the official Home Assistant app to receive notifications
selector:
device:
integration: mobile_app
multiple: false
input_boolean:
name: Dedicated input_boolean
description: Create and set here a input_boolean to handle history and state of the automation
selector:
entity:
domain: input_boolean
multiple: false
notification_title:
name: Notification title (Optional)
description: "Default: Medication reminder"
default: "Medication reminder!"
notification_message:
name: Notification message (Optional)
description: "Default: It's time to take your medication"
default: "It's time to take your medication"
notification_action_taken:
name: "Notification action: Taken (Optional)"
description: "Default: Taken"
default: "Taken"
notification_action_later:
name: "Notification action: Ask later (Optional)"
description: "Default: Ask later"
default: "Ask later"
notification_action_skip:
name: "Notification action: Skip (Optional)"
description: "Default: Skip"
default: "Skip"
ask_later_wait_time:
name: Wait time before next reminder
description: Minutes before notify again after a Ask later action.
default: 30
selector:
number:
min: 5
max: 1440
unit_of_measurement: minutes
step: 1
mode: slider
logbook_message_remind:
name: Logbook message for remind (Optional)
description: "Default: Reminder sent"
default: "Reminder sent"
logbook_message_taken:
name: Logbook message for action Taken (Optional)
description: "Default: Medication taken"
default: "Medication taken"
logbook_message_later:
name: Logbook message for action Ask later (Optional)
description: "Default: Postpone reminder"
default: "Postpone reminder"
logbook_message_skip:
name: Logbook message for action Skip (Optional)
description: "Default: Reminder skipped"
default: "Reminder skipped"
logbook_message_no_answer:
name: Logbook message for no action after timeout (Optional)
description: "Default: No answer time out"
default: "No answer time out"
optional_action:
name: Optional action
description: Run an action like notify a speaker at the same time that the mobile notification
selector:
action: {}
default: []
trigger:
- platform: time
at: !input reminder_time
mode: restart
action:
- service: input_boolean.turn_off
target:
entity_id: !input input_boolean
- alias: "Notify until the medication has been take"
repeat:
while:
- condition: state
entity_id: !input input_boolean
state: "off"
sequence:
- service: logbook.log
data:
name: !input notification_title
message: !input logbook_message_remind
entity_id: !input input_boolean
- choose:
- conditions: "{{ true }}"
sequence: !input optional_action
- device_id: !input notify_device
domain: mobile_app
type: notify
title: !input notification_title
message: !input notification_message
data:
actions:
- title: !input notification_action_taken
action: "taken"
- title: !input notification_action_later
action: "later"
- title: !input notification_action_skip
action: "skip"
tag: !input input_boolean
- wait_for_trigger:
platform: event
event_type: ios.notification_action_fired
event_data: {}
timeout:
minutes: !input ask_later_wait_time
- choose:
- conditions: "{{ wait.trigger and wait.trigger.event.data.actionName == 'taken' }}"
sequence:
- service: input_boolean.turn_on
target:
entity_id: !input input_boolean
- service: logbook.log
data:
name: !input notification_title
message: !input logbook_message_taken
entity_id: !input input_boolean
- conditions: "{{ wait.trigger and wait.trigger.event.data.actionName == 'later' }}"
sequence:
- service: logbook.log
data:
name: !input notification_title
message: !input logbook_message_later
entity_id: !input input_boolean
- delay:
minutes: !input ask_later_wait_time
- conditions: "{{ wait.trigger and wait.trigger.event.data.actionName == 'skip' }}"
sequence:
- service: input_boolean.turn_on
target:
entity_id: !input input_boolean
- service: logbook.log
data:
name: !input notification_title
message: !input logbook_message_skip
entity_id: !input input_boolean
default:
- device_id: !input notify_device
domain: mobile_app
type: notify
message: "clear_notification"
data:
tag: !input input_boolean
- service: logbook.log
data:
name: !input notification_title
message: !input logbook_message_no_answer
entity_id: !input input_boolean