-
Notifications
You must be signed in to change notification settings - Fork 0
/
automation.yaml
406 lines (384 loc) · 10.7 KB
/
automation.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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
- alias: HA_Start After Sunrise
trigger:
platform: event
event_type: homeassistant_start
condition:
condition: and
conditions:
- condition: sun
after: sunrise
- condition: sun
before: sunset
action:
- service: switch.turn_on
entity_id: switch.pc_room_
- service: homeassistant.turn_on
entity_id: input_boolean.sun_has_risen
- service: notify.pushbullet
data:
message: "System Restart at Moo Castle!"
title: "Moo Castle Update"
- alias: HA_Start After Sunset
trigger:
platform: event
event_type: homeassistant_start
condition:
condition: and
conditions:
- condition: sun
after: sunset
- condition: sun
before: sunrise
action:
- service: switch.turn_on
entity_id: switch.pc_room_
- service: homeassistant.turn_off
entity_id: input_boolean.sun_has_risen
- service: notify.pushbullet
data:
message: "System Restart at Moo Castle!"
title: "Moo Castle Update"
- alias: Toggle Sunrise State Tracker to On
trigger:
platform: sun
event: sunrise
action:
service: homeassistant.turn_on
entity_id: input_boolean.sun_has_risen
- alias: Toggle Sunrise State Tracker to Off
trigger:
platform: sun
event: sunset
action:
service: homeassistant.turn_off
entity_id: input_boolean.sun_has_risen
- alias: Turn on Moo Castle UV Lamp and Heater
trigger:
platform: sun
event: sunrise
action:
- service: switch.turn_on
entity_id: switch.pc_room_
- service: switch.turn_on
entity_id: switch.bedroom_filter
- service: notify.pushbullet
data:
message: "Sun up at Moo Castle!"
title: "Moo Castle Update"
- alias: Turn off Moo Castle UV Lamp 3.5 hours after sunrise
trigger:
platform: sun
event: sunrise
offset: "03:30:00"
action:
- service: switch.turn_off
entity_id: switch.bedroom_filter
- service: notify.pushbullet
data:
message: "Morning over at Moo Castle!"
title: "Moo Castle Update"
- alias: Test PC Room light/trigger/sensor
trigger:
platform: time
after: '20:52'
action:
service: light.hue_activate_scene
data:
group_name: "PC room"
scene_name: "Read"
- alias: Before Sunrise - Moo Castle - Below 21 c
condition:
condition: state
entity_id: input_boolean.sun_has_risen
state: 'off'
trigger:
platform: numeric_state
entity_id: sensor.aeotec_zw074_multisensor_gen5_temperature_2_1
below: 21
action:
- service: switch.turn_on
entity_id: switch.pc_room_
- service: notify.pushbullet
data:
message: "It's less than 21c in here human! Turn on the lamp!"
title: "Moo Castle Update"
- alias: Before Sunrise - Moo Castle - Above 22 c
condition:
condition: state
entity_id: input_boolean.sun_has_risen
state: 'off'
trigger:
platform: numeric_state
entity_id: sensor.aeotec_zw074_multisensor_gen5_temperature_2_1
above: 22
action:
- service: switch.turn_off
entity_id: switch.pc_room_
- service: notify.pushbullet
data:
message: "It's more than 21c in here human! Turn off the lamp!"
title: "Moo Castle Update"
- alias: After Sunrise - Moo Castle - Below 24 c
condition:
condition: state
entity_id: input_boolean.sun_has_risen
state: 'on'
trigger:
platform: numeric_state
entity_id: sensor.aeotec_zw074_multisensor_gen5_temperature_2_1
below: 24
action:
- service: switch.turn_on
entity_id: switch.pc_room_
- service: notify.pushbullet
data:
message: "It's less than 24c in here human! Turn on the lamp!"
title: "Moo Castle Update"
- alias: After Sunrise - Moo Castle - Above 26 c
condition:
condition: state
entity_id: input_boolean.sun_has_risen
state: 'on'
trigger:
platform: numeric_state
entity_id: sensor.aeotec_zw074_multisensor_gen5_temperature_2_1
above: 26
action:
- service: switch.turn_off
entity_id: switch.pc_room_
- service: notify.pushbullet
data:
message: "It's more than 26c in here human! Turn off the lamp!"
title: "Moo Castle Update"
- alias: Gary left Home
condition:
condition: state
entity_id: input_boolean.gary_home
state: 'on'
trigger:
platform: state
entity_id: device_tracker.pi_garyss7
state: 'not_home'
action:
- service: homeassistant.turn_off
entity_id: input_boolean.gary_home
- service: homeassistant.turn_off
entity_id: input_boolean.family_home
- service: automation.turn_on
entity_id: automation.lights_on_as_someone_arrives_15_mins_before_sunset
- alias: Gary arrived Home
condition:
condition: state
entity_id: input_boolean.gary_home
state: 'off'
trigger:
platform: state
entity_id: device_tracker.pi_garyss7
state: 'home'
action:
- service: homeassistant.turn_on
entity_id: input_boolean.gary_home
- service: homeassistant.turn_on
entity_id: input_boolean.family_home
- alias: Jane left Home
condition:
condition: state
entity_id: input_boolean.jane_home
state: 'on'
trigger:
platform: state
entity_id: device_tracker.pi_janes6
state: 'not_home'
action:
- service: homeassistant.turn_off
entity_id: input_boolean.jane_home
- service: homeassistant.turn_off
entity_id: input_boolean.family_home
- service: automation.turn_on
entity_id: automation.lights_on_as_someone_arrives_15_mins_before_sunset
- alias: Jane arrived Home
condition:
condition: state
entity_id: input_boolean.jane_home
state: 'off'
trigger:
platform: state
entity_id: device_tracker.pi_janes6
state: 'home'
action:
- service: homeassistant.turn_on
entity_id: input_boolean.jane_home
- service: homeassistant.turn_on
entity_id: input_boolean.family_home
- alias: Lights on as someone arrives - 15 mins before sunset
condition:
condition: and
conditions:
- condition: sun
after: sunset
after_offset: "-00:15:00"
trigger:
platform: state
entity_id: input_boolean.family_home
state: 'on'
action:
- service: light.hue_activate_scene
data:
group_name: "Kitchen"
scene_name: "Read"
- service: light.hue_activate_scene
data:
group_name: "Living Room"
scene_name: "Relax"
- alias: Lights off when no Family at home
condition:
condition: state
entity_id: input_boolean.lightskill_override
state: 'off'
trigger:
platform: state
entity_id: input_boolean.family_home
from: 'on'
to: 'off'
action:
service: light.Turn_off
entity_id: group.all_lights
- alias: Bathroom light triggered by Sunset
condition:
condition: and
conditions:
- condition: state
entity_id: input_boolean.family_home
state: 'on'
- condition: state
entity_id: light.hue_ambiance_lamp_2
state: 'off'
trigger:
platform: sun
event: sunset
offset: "00:05:00"
action:
service: light.hue_activate_scene
data:
group_name: "Bathroom"
scene_name: "Read"
- alias: PC room light triggered after Sunset
condition:
condition: and
conditions:
- condition: state
entity_id: input_boolean.family_home
state: 'on'
- condition: sun
after: sunset
after_offset: "00:05:00"
- condition: state
entity_id: light.hue_ambiance_lamp_4
state: 'off'
trigger:
platform: state
entity_id: binary_sensor.aeotec_zw074_multisensor_gen5_sensor_4_0
state: 'on'
action:
service: light.hue_activate_scene
data:
group_name: "PC Room"
scene_name: "Read"
- alias: Bathroom light off after midnight
condition:
condition: and
conditions:
- condition: state
entity_id: input_boolean.family_home
state: 'on'
- condition: state
entity_id: light.hue_ambiance_lamp_2
state: 'on'
- condition: state
entity_id: binary_sensor.aeotec_zw074_multisensor_gen5_sensor_4_0
state: 'off'
- condition: time
after: "00:10:00"
- condition: sun
before: sunrise
trigger:
platform: state
entity_id: binary_sensor.aeotec_zw074_multisensor_gen5_sensor_3_0
state: 'on'
action:
service: light.turn_off
entity_id: light.hue_ambiance_lamp_2
data:
transition: 120
- alias: PC room light off after midnight
condition:
condition: and
conditions:
- condition: state
entity_id: input_boolean.family_home
state: 'on'
- condition: state
entity_id: light.hue_ambiance_lamp_4
state: 'on'
- condition: state
entity_id: binary_sensor.aeotec_zw074_multisensor_gen5_sensor_4_0
state: 'off'
- condition: time
after: "00:10:00"
- condition: sun
before: sunrise
trigger:
platform: state
entity_id: binary_sensor.aeotec_zw074_multisensor_gen5_sensor_3_0
state: 'on'
action:
service: light.turn_off
entity_id: light.hue_ambiance_lamp_4
data:
transition: 120
- alias: Bathroom light triggered by PIR
condition:
condition: and
conditions:
- condition: state
entity_id: input_boolean.family_home
state: 'on'
- condition: time
after: "00:10:00"
- condition: state
entity_id: light.hue_ambiance_lamp_2
state: 'off'
- condition: sun
before: sunrise
trigger:
platform: state
entity_id: binary_sensor.aeotec_zw074_multisensor_gen5_sensor_3_0
state: 'on'
action:
service: light.hue_activate_scene
data:
group_name: "Bathroom"
scene_name: "Relax"
- alias: Bathroom light off after PIR trigger
condition:
condition: and
conditions:
- condition: state
entity_id: input_boolean.family_home
state: 'on'
- condition: time
after: "00:10:00"
- condition: state
entity_id: light.hue_ambiance_lamp_2
state: 'on'
- condition: sun
before: sunrise
trigger:
platform: state
entity_id: binary_sensor.aeotec_zw074_multisensor_gen5_sensor_3_0
state: 'on'
action:
service: light.turn_off
entity_id: light.hue_ambiance_lamp_2
data:
transition: 120