forked from wills106/homeassistant-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautomations.yaml
476 lines (431 loc) · 11.2 KB
/
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
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
#######################################
# #
# Input_Boolean's #
# #
#######################################
#############################
# #
# Reset - Input_Boolean's #
# #
#############################
- alias: Reset Daily Booleans
trigger:
- platform: time
at: '20:00:00'
action:
- service: homeassistant.turn_off
entity_id:
- input_boolean.early_shift
- input_boolean.late_shift
- input_boolean.overtime
- input_boolean.holiday
- input_boolean.party
- input_boolean.weekend
#############################
# #
# Set - Input_Boolean's #
# #
#############################
- alias: Early Shift
trigger:
- platform: state
entity_id: calendar.early_shift
to: 'on'
action:
- service: input_boolean.turn_on
entity_id: input_boolean.early_shift
- alias: Late Shift
trigger:
- platform: state
entity_id: calendar.late_shift
to: 'on'
action:
- service: input_boolean.turn_on
entity_id: input_boolean.late_shift
- alias: Overtime
trigger:
- platform: state
entity_id: calendar.overtime
to: 'on'
action:
- service: input_boolean.turn_on
entity_id: input_boolean.overtime
- alias: Holiday
trigger:
- platform: state
entity_id: calendar.holiday
to: 'on'
action:
- service: input_boolean.turn_on
entity_id: input_boolean.holiday
- alias: Party
trigger:
- platform: state
entity_id: calendar.party
to: 'on'
action:
- service: input_boolean.turn_on
entity_id: input_boolean.party
- alias: Weekend
trigger:
- platform: state
entity_id: calendar.weekend
to: 'on'
action:
- service: input_boolean.turn_on
entity_id: input_boolean.weekend
#######################################
# #
# MQTT - Status Power on Startup #
# #
#######################################
#Check Power Status on startup for Sonoff Devices
- alias: "Power state on HA start-up"
trigger:
platform: homeassistant
event: start
action:
- service: mqtt.publish
data:
topic: "cmnd/sonoffs/power1"
payload: ""
- service: mqtt.publish
data:
topic: "cmnd/sonoffs/power2"
payload: ""
- service: mqtt.publish
data:
topic: "cmnd/sonoffs/Power3"
payload: ""
- service: mqtt.publish
data:
topic: "cmnd/sonoffs/power4"
payload: ""
- service: mqtt.publish
data:
topic: "cmnd/sonoffs/power5"
payload: ""
#######################################
# #
# 2 Way Light Control #
# #
#######################################
# Automation for two way Living Room Lights
- alias: Living Room Lights On
initial_state: 'on'
trigger:
platform: state
entity_id: group.LivingRoomLights
to: 'on'
action:
service: homeassistant.turn_on
entity_id: group.LivingRoomLights
- alias: Living Room Lights Off
initial_state: 'on'
trigger:
- platform: state
entity_id: light.LivingroomMaster
to: 'off'
- platform: state
entity_id: light.LivingroomSlave
to: 'off'
action:
service: homeassistant.turn_off
entity_id: group.LivingRoomLights
# Automation for two way Hall Lights
- alias: Hall Lights On
initial_state: 'on'
trigger:
platform: state
entity_id: group.HallLights
to: 'on'
action:
service: homeassistant.turn_on
entity_id: group.HallLights
- alias: Hall Lights Off
initial_state: 'on'
trigger:
- platform: state
entity_id: light.HallMaster
to: 'off'
- platform: state
entity_id: light.HallSlave
to: 'off'
action:
service: homeassistant.turn_off
entity_id: group.HallLights
#######################################
# #
# Lights - Based on Calendar #
# #
#######################################
#############################
# #
# Lights - Early Shift #
# #
#############################
# Time to get up...
# Condition ideally needs to check light lux for summer months, no need for kitchen lights then.
- alias: "LightsOnMorningEarly"
trigger:
platform: time
at: '04:30:00'
condition:
condition: state
entity_id: input_boolean.early_shift
state: 'on'
action:
- service: homeassistant.turn_on
entity_id: group.HallLights
# Time for work...
- alias: "LightsOutWorkEarly"
trigger:
platform: time
at: '05:20:00'
condition:
condition: state
entity_id: input_boolean.early_shift
state: 'on'
action:
service: homeassistant.turn_off
entity_id: group.alllights
# Time for bed...
- alias: "LightsOutBedEarly"
trigger:
platform: time
at: '22:15:00'
condition:
condition: state
entity_id: input_boolean.early_shift
state: 'on'
action:
service: homeassistant.turn_off
entity_id: group.alllights
#############################
# #
# Lights - Late Shift #
# #
#############################
# Time for work...
- alias: "LightsOutWorkLate"
trigger:
platform: time
at: '12:40:00'
condition:
condition: state
entity_id: input_boolean.late_shift
state: 'on'
action:
service: homeassistant.turn_off
entity_id: group.alllights
# Time for bed...
- alias: "LightsOutBedLate"
trigger:
platform: time
at: '01:00:00'
condition:
condition: state
entity_id: input_boolean.late_shift
state: 'on'
action:
service: homeassistant.turn_off
entity_id: group.alllights
#############################
# #
# Lights - Overtime #
# #
#############################
# Time for work...
- alias: "LightsOutWorkOvertime"
trigger:
platform: time
at: '05:20:00'
condition:
condition: state
entity_id: input_boolean.overtime
state: 'on'
action:
service: homeassistant.turn_off
entity_id: group.alllights
# Time for bed...
- alias: "LightsOutBedOvertime"
trigger:
platform: time
at: '22:15:00'
condition:
condition: state
entity_id: input_boolean.overtime
state: 'on'
action:
service: homeassistant.turn_off
entity_id: group.alllights
#############################
# #
# Lights - Holiday #
# #
#############################
# Time for bed...
- alias: "LightsOutBedHoliday"
trigger:
platform: time
at: '00:15:00'
condition:
condition: state
entity_id: input_boolean.holiday
state: 'on'
action:
service: homeassistant.turn_off
entity_id: group.alllights
#############################
# #
# Lights - Party #
# #
#############################
# Time for bed...
- alias: "LightsOutBedParty"
trigger:
platform: time
at: '02:00:00'
condition:
condition: state
entity_id: input_boolean.party
state: 'on'
action:
service: homeassistant.turn_off
entity_id: group.alllights
#############################
# #
# Lights - Weekend #
# #
#############################
# Time for bed...
- alias: "LightsOutBedWeekend"
trigger:
platform: time
at: '00:15:00'
condition:
condition: state
entity_id: input_boolean.weekend
state: 'on'
action:
service: homeassistant.turn_off
entity_id: group.alllights
#############################
# #
# Lights - Vacation #
# #
#############################
#############################
# #
# Lights - Failsafe @ Night #
# #
#############################
# I already said it's time for bed...
- alias: "LightsOutFailSafe"
trigger:
platform: state
entity_id: group.alllights
to: 'on'
condition:
condition: time
after: '02:00:00'
before: '04:25:00'
action:
- delay: 00:15:00
- service: homeassistant.turn_off
entity_id: group.alllights
#######################################
# #
# 433Mhz Door / Window Sensor #
# #
#######################################
- alias: Turn Bathroom Lights On Off
trigger:
platform: mqtt
topic: tele/sonoffBridge/RESULT
condition:
condition: template
value_template: '{{ trigger.payload_json.RfReceived.Data == "513D12" }}'
action:
- service: homeassistant.toggle
entity_id: group.BathroomLights
#######################################
# #
# Recieve IFTTT.com message #
# #
#######################################
- alias: Ifttt_webhook
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 }}'
#- alias: Stream Doorbell
# trigger:
# platform: mqtt
# topic: tele/sonoffBridge/RESULT
# condition:
# condition: template
# value_template: '{{ trigger.payload_json.RfReceived.Data == "1234EE" }}'
# action:
# - service: media_player.play_media
# entity_id: media_player.living_room_tv
# data:
# media_content_id: 'does not work'
# media_content_type: video
#- alias: 'Notify when front door is open'
# trigger:
# platform: mqtt
# topic: tele/sonoffBridge/RESULT
# condition:
# condition: template
# value_template: '{{ trigger.payload_json.RfReceived.Data == "1234EE" }}'
# action:
# service: notify.Lounge
# data_template:
# title: "Home Assistant"
# message: "Front door is OPEN"
# data:
# file:
# url: !secret carport_url
- alias: Im Home light me up
trigger:
platform: state
entity_id: device_tracker.wills106_willsphone
from: 'not_home'
to: 'home'
condition:
condition: or # 'when dark' condition: either after sunset or before sunrise
conditions:
- condition: sun
after: sunset
# after_offset: "-00:15:00"
- condition: sun
before: sunrise
action:
service: homeassistant.turn_on
entity_id: group.HallLights
- alias: Tripwire
trigger:
platform: state
entity_id: binary_sensor.driveway_line_crossing
from: 'off'
to: 'on'
condition:
condition: or # 'when dark' condition: either after sunset or before sunrise
conditions:
- condition: sun
after: sunset
- condition: sun
before: sunrise
action:
- service: homeassistant.turn_on
entity_id: group.HallLights
- service: camera.snapshot
data:
entity_id: camera.hikvision__ds2cd2t42wdi8
filename: '/local/snapshots/Driveway_{{ now().strftime("%Y%m%d-%H%M%S") }}.jpg'