-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusb-powered-automations.yaml
201 lines (201 loc) · 6.4 KB
/
usb-powered-automations.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
alias: Babybuddy Panel
description: ""
trigger:
- platform: event
event_type: esphome.babybuddy_panel_sleepstop
id: sleepstop
- platform: event
event_type: esphome.babybuddy_panel_tummytimestart
id: tummytimestart
- platform: event
event_type: esphome.babybuddy_panel_tummytimestop
id: tummytimestop
- platform: event
event_type: esphome.babybuddy_panel_feedingstop
id: feedingstop
- platform: event
event_type: esphome.babybuddy_panel_sleepstart
id: sleepstart
- platform: event
event_type: esphome.babybuddy_panel_diaperwet
id: diaperwet
- platform: event
event_type: esphome.babybuddy_panel_diapersolid
id: diapersolid
- platform: event
event_type: esphome.babybuddy_panel_feedingstart
id: feedingstart
condition: []
action:
- choose:
- conditions:
- condition: trigger
id: sleepstart
sequence:
- service: babybuddy.start_timer
data:
name: Sleep Timer
target:
entity_id: switch.[yourbabies_timer]
- conditions:
- condition: trigger
id: sleepstop
sequence:
- service: babybuddy.add_sleep
data:
timer: true
notes: From panel
target:
entity_id: switch.[yourbabies_timer]
- conditions:
- condition: trigger
id: feedingstart
sequence:
- service: babybuddy.start_timer
data:
name: Feeding Timer
target:
entity_id: switch.[yourbabies_timer]
- conditions:
- condition: trigger
id: feedingstop
sequence:
- choose:
- conditions:
- condition: template
value_template: "{{trigger.event.data.title == 'single_click'}}"
sequence:
- service: babybuddy.add_feeding
data:
timer: true
type: Breast milk
method: Left breast
notes: From panel
target:
entity_id: switch.[yourbabies_timer]
- conditions:
- condition: template
value_template: "{{trigger.event.data.title == 'dbl_click'}}"
sequence:
- service: babybuddy.add_feeding
data:
timer: true
type: Breast milk
method: Right breast
notes: From panel
target:
entity_id: switch.[yourbabies_timer]
- conditions:
- condition: template
value_template: "{{trigger.event.data.title == 'triple_click'}}"
sequence:
- service: babybuddy.add_feeding
data:
timer: true
type: Breast milk
method: Both breasts
notes: From panel
target:
entity_id: switch.[yourbabies_timer]
- conditions:
- condition: trigger
id: tummytimestart
sequence:
- service: babybuddy.start_timer
data:
name: Tummy Time Timer
target:
entity_id: switch.[yourbabies_timer]
- conditions:
- condition: trigger
id: tummytimestop
sequence:
- service: babybuddy.add_tummy_time
data:
timer: true
target:
entity_id: switch.[yourbabies_timer]
- conditions:
- condition: and
conditions:
- condition: trigger
id: diaperwet
- condition: template
value_template: "{{trigger.event.data.title == 'single_click'}}"
sequence:
- service: babybuddy.add_diaper_change
data:
type: Wet
amount: 5
notes: From panel
target:
entity_id: sensor.[your baby]
device_id: [device_id for your baby]
- conditions:
- condition: and
conditions:
- condition: trigger
id: diaperwet
- condition: template
value_template: "{{trigger.event.data.title == 'long_click'}}"
sequence:
- service: babybuddy.add_diaper_change
data:
type: Wet
amount: 10
notes: From panel
target:
entity_id: sensor.[your baby]
device_id: [device_id for your baby]
- conditions:
- condition: and
conditions:
- condition: trigger
id: diapersolid
- condition: template
value_template: "{{trigger.event.data.title == 'single_click'}}"
sequence:
- service: babybuddy.add_diaper_change
data:
type: Solid
amount: 5
notes: From panel
target:
entity_id: sensor.[your baby]
device_id: [device_id for your baby]
- conditions:
- condition: and
conditions:
- condition: trigger
id: diapersolid
- condition: template
value_template: "{{trigger.event.data.title == 'long_click'}}"
sequence:
- service: babybuddy.add_diaper_change
data:
type: Solid
amount: 10
notes: From panel
target:
entity_id: sensor.[your baby]
device_id: [device_id for your baby]
- conditions:
- condition: and
conditions:
- condition: or
conditions:
- condition: trigger
id: diaperwet
- condition: trigger
id: diapersolid
- condition: template
value_template: "{{trigger.event.data.title == 'dbl_click'}}"
sequence:
- service: babybuddy.add_diaper_change
data:
type: Wet and Solid
amount: 10
notes: From panel
target:
entity_id: sensor.[your baby]
mode: single