-
Notifications
You must be signed in to change notification settings - Fork 0
/
automation.yaml
executable file
·528 lines (439 loc) · 13.1 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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
##########################################################
## Zwave ready notification
##########################################################
- alias: Z-Wave network is ready
trigger:
platform: event
event_type: zwave.network_ready
action:
- service: notify.pushover
data:
message: 'Zwave ready.'
##########################################################
## Set initial theme
##########################################################
- alias: 'Set theme at startup'
initial_state: 'on'
trigger:
- platform: homeassistant
event: start
action:
service: frontend.set_theme
data:
name: dark-red
##########################################################
## Turn on outside lights at night
##########################################################
- alias: 'Outside Lights On'
trigger:
- platform: sun
event: sunset
offset: "-00:30:00"
action:
- service: switch.turn_on
entity_id: switch.ge_outside_light_switch
- service: switch.turn_on
entity_id: switch.switch_1
# - service: switch.turn_on
# entity_id: switch.switch_2
# - service: switch.turn_on
# entity_id: switch.switch_3
##########################################################
## Turn off outside lights
##########################################################
- alias: Outside Lights Off
trigger:
- platform: time
at: '00:23:59'
action:
- service: switch.turn_off
entity_id: switch.ge_outside_light_switch
- service: switch.turn_off
entity_id: switch.switch_1
##########################################################
## Turn on Lights at Sunset IF home
##########################################################
- alias: Sunset Lights
trigger:
- platform: sun
event: sunset
offset: "-01:00:00"
condition:
- condition: state
entity_id: group.household
state: 'home'
action:
- service: script.turn_on
entity_id: script.downstairs_normal_lights
- service: switch.turn_on
entity_id: switch.switch_3
##########################################################
## Fade lights on starting at 6:15am until 6:30am
##########################################################
- alias: Wakeup Lights
trigger:
- platform: time
at: '06:15:00'
condition:
condition: and
conditions:
- condition: state
entity_id: group.household
state: 'home'
- condition: state
entity_id: input_boolean.guest_mode
state: 'off'
- condition: time
weekday:
- mon
- tue
- wed
- thu
- fri
action:
- service: light.turn_on
entity_id: group.master_bedroom_lights
data:
transition: 900
brightness: 200
##########################################################
## Turn on Normal Lights at 8:30am if Still Home
##########################################################
- alias: Normal Morning Lights
trigger:
- platform: time
at: '08:30:00'
condition:
condition: and
conditions:
- condition: state
entity_id: group.household
state: 'home'
- condition: state
entity_id: input_boolean.guest_mode
state: 'off'
action:
- service: script.turn_on
entity_id: script.downstairs_normal_lights
- service: switch.turn_on
entity_id: switch.switch_3
##########################################################
## Turn on Lights when home
##########################################################
- alias: Arrive Home
trigger:
- platform: state
entity_id: group.household
from: 'not_home'
to: 'home'
action:
- service: script.turn_on
entity_id: script.downstairs_normal_lights
- service: switch.turn_on
entity_id: switch.switch_3
# - service: switch.turn_on
# entity_id: switch.switch_2
##########################################################
## Apple TV Lights On/Off Downstairs
##########################################################
- alias: "Media player stopped"
trigger:
- platform: state
entity_id: media_player.apple_tv_4k
to: 'idle'
- platform: state
entity_id: media_player.apple_tv_4k
to: 'Off'
condition:
- condition: state
entity_id: input_boolean.movie_lighting_downstairs
state: 'on'
action:
- service: script.turn_on
entity_id: script.downstairs_normal_lights
- alias: "Media player paused"
trigger:
- platform: state
entity_id: media_player.apple_tv_4k
to: 'paused'
from: 'playing'
condition:
- condition: state
entity_id: input_boolean.movie_lighting_downstairs
state: 'on'
action:
- service: script.turn_on
entity_id: script.downstairs_normal_lights
- alias: "Media player playing"
trigger:
- platform: state
entity_id: media_player.apple_tv_4k
to: 'playing'
condition:
- condition: state
entity_id: input_boolean.movie_lighting_downstairs
state: 'on'
action:
- service: script.turn_on
entity_id: script.downstairs_movie_lights
##########################################################
## Apple TV Lights On/Off Upstairs
##########################################################
- alias: "Media player stopped2"
trigger:
- platform: state
entity_id: media_player.apple_tv
to: 'idle'
- platform: state
entity_id: media_player.apple_tv
to: 'Off'
condition:
- condition: state
entity_id: input_boolean.movie_lighting_upstairs
state: 'on'
action:
- service: script.turn_on
entity_id: script.upstairs_normal_lights
- alias: "Media player paused2"
trigger:
- platform: state
entity_id: media_player.apple_tv
to: 'paused'
from: 'playing'
condition:
- condition: state
entity_id: input_boolean.movie_lighting_upstairs
state: 'on'
action:
- service: script.turn_on
entity_id: script.upstairs_normal_lights
- alias: "Media player playing2"
trigger:
- platform: state
entity_id: media_player.apple_tv
to: 'playing'
condition:
- condition: state
entity_id: input_boolean.movie_lighting_upstairs
state: 'on'
action:
- service: script.turn_on
entity_id: script.upstairs_movie_lights
##########################################################
## Office Doorbell Lights
##########################################################
# - alias: Doorbell Lights
# trigger:
# - platform: state
# entity_id: binary_sensor.front_door_camera_person_detected
# to: 'on'
# condition:
# condition: and
# conditions:
# - condition: state
# entity_id: group.household
# state: 'home'
# - condition: state
# entity_id: light.office_lamp_1
# state: 'on'
# action:
# - service: light.turn_on
# entity_id: light.office_lamp_1
# data:
# brightness_pct: 100
# color_name: blue
# - delay: 00:00:01
# - service: light.turn_off
# entity_id: light.office_lamp_1
# - delay: 00:00:01
# - service: light.turn_on
# entity_id: light.office_lamp_1
# data:
# brightness_pct: 100
# color_name: blue
# - delay: 00:00:01
# - service: light.turn_off
# entity_id: light.office_lamp_1
# - delay: 00:00:01
# - service: light.turn_on
# entity_id: light.office_lamp_1
# data:
# brightness_pct: 100
# color_name: blue
# - delay: 00:00:01
# - service: light.turn_on
# entity_id: light.office_lamp_1
# data:
# brightness_pct: 100
# profile: relax
##########################################################
## Notify if garage door open after away
##########################################################
- alias: Garage Door Notification
trigger:
- platform: state
entity_id: group.household
to: 'not_home'
condition:
- condition: state
entity_id: cover.main_garage
state: 'open'
action:
- service: notify.pushover
data:
message: 'Garage door left open!'
##########################################################
## Notify if front door not locked after away
##########################################################
- alias: Front Door Notification
trigger:
- platform: state
entity_id: group.household
to: 'not_home'
condition:
- condition: state
entity_id: lock.schlage_front_door_locked
state: 'unlocked'
action:
- service: notify.pushover
data:
message: 'Front door not locked!'
##########################################################
## Notify if water sensor tripped
##########################################################
- alias: Water detected laundry room
trigger:
- platform: state
entity_id: binary_sensor.laundry_room_water_sensor
to: 'on'
action:
- service: notify.pushover
data:
message: 'Water detected in laundry room!'
##########################################################
## Notify if garage door open at night
##########################################################
- alias: Garage Door Notification Night
trigger:
- platform: time
minutes: '/10'
seconds: 00
condition:
condition: and
conditions:
- condition: time
after: '20:00:00'
before: '05:00:00'
- condition: state
entity_id: cover.main_garage
state: 'open'
for:
minutes: 20
seconds: 00
action:
- service: notify.pushover
data:
message: 'Garage door open!'
##########################################################
## Cabinet Light Automations
##########################################################
- alias: "Cabinet Lights Animation Speed"
initial_state: True
hide_entity: False
trigger:
- platform: state
entity_id: input_number.cabinet_lights_animation_speed
action:
- service: mqtt.publish
data_template:
topic: "bruh/cabinetlights/set"
payload: '{"transition":{{ trigger.to_state.state | int }}}'
##########################################################
## Reset Amazon Echo input_booleans to OFF every two minutes
##########################################################
- alias: Reset input boolean
trigger:
platform: time
minutes: '/2'
seconds: 0
condition:
condition: or
conditions:
- condition: state
entity_id: input_boolean.normal_lights
state: 'on'
- condition: state
entity_id: input_boolean.bedtime
state: 'on'
- condition: state
entity_id: input_boolean.home_theater
state: 'off'
action:
- service: input_boolean.turn_off
entity_id: input_boolean.normal_lights
- service: input_boolean.turn_off
entity_id: input_boolean.bedtime
- service: input_boolean.turn_on
entity_id: input_boolean.home_theater
##########################################################
## Open living room shades one hour after sunrise - WEEKENDS
##########################################################
- alias: Sunrise Shades
trigger:
- platform: sun
event: sunrise
offset: "+01:00:00"
condition:
- condition: state
entity_id: group.household
state: 'home'
- condition: time
weekday:
- sat
- sun
action:
- service: cover.open_cover
entity_id: cover.living_room_shade_level
##########################################################
## Open living room shades 45 minutes before sunrise - WEEKDAYS
##########################################################
- alias: Sunrise Shades Weekday
trigger:
- platform: sun
event: sunrise
offset: "-00:45:00"
condition:
- condition: time
weekday:
- mon
- tue
- wed
- thu
- fri
action:
- service: cover.open_cover
entity_id: cover.living_room_shade_level
##########################################################
## Close living room shades 30 minutes after sunset
##########################################################
- alias: Sunset Shades
trigger:
- platform: sun
event: sunset
offset: "+04:00:00"
action:
- service: cover.close_cover
entity_id: cover.living_room_shade_level
##########################################################
## IFTTT Integration
##########################################################
# - alias: IFTTT Integration
# trigger:
# platform: event
# event_type: ifttt_webhook_received
# event_data:
# action: call_service
# action:
# service_template: '{{ trigger.event.data.service }}'
# data_template:
# entity_id: '{{ trigger.event.data.entity_id }}'