forked from dshokouhi/Home-AssistantConfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
automations.yaml
5836 lines (5556 loc) · 167 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
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
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
################################################
#
# Harmony Automations
#
################################################
- alias: Close Bedroom Curtains At Sunset
trigger:
- event: sunset
platform: sun
offset: '-00:30:00'
condition:
condition: state
entity_id: cover.bedroom_curtains
state: 'open'
action:
- service: cover.close_cover
entity_id: cover.bedroom_curtains
- alias: Close Bay Window Curtains At Sunset
trigger:
- event: sunset
platform: sun
offset: '-00:30:00'
condition:
condition: state
entity_id: cover.bay_window_curtains
state: 'open'
action:
- service: cover.close_cover
entity_id: cover.bay_window_curtains
- alias: Outside Speakers CC
trigger:
- platform: state
entity_id: media_player.outdoor_speakers
to: 'playing'
- platform: state
entity_id: media_player.outdoor_speakers
to: 'idle'
condition:
condition: state
entity_id: media_player.onkyo_den_zone_2
state: 'off'
action:
- service: script.turn_on
entity_id: script.zone_2_cc
- alias: Outside Speakers CC off
trigger:
platform: state
entity_id: media_player.outdoor_speakers
to: 'off'
condition:
condition: state
entity_id: media_player.onkyo_den_zone_2
state: 'on'
action:
- service: script.turn_on
entity_id: script.zone_2_off
- alias: Set Den Harmony Off
trigger:
platform: state
entity_id: remote.harmony_hub_den
from: 'on'
to: 'off'
condition:
condition: template
value_template: '{{ trigger.to_state.attributes.current_activity == "PowerOff" }}'
action:
- service: light.turn_off
entity_id: light.tv_lights
- condition: state
entity_id: switch.fireplace
state: 'on'
- service: switch.turn_off
entity_id: switch.fireplace
- alias: Set Bedroom Booleans Off
trigger:
platform: state
entity_id: remote.harmony_hub_bedroom
from: 'on'
to: 'off'
condition:
condition: template
value_template: '{{ trigger.to_state.attributes.current_activity == "PowerOff" }}'
action:
- service: light.turn_off
entity_id: light.biased_lights
- alias: Fireplace and TV Lights Between Sunset and Sunrise
trigger:
- platform: state
entity_id: remote.harmony_hub_den
from: 'off'
to: 'on'
- platform: sun
event: sunset
offset: "00:01:00"
condition:
condition: and
conditions:
- condition: state
entity_id: sun.sun
state: 'below_horizon'
- condition: template
value_template: "{{ states.remote.harmony_hub_den.attributes.current_activity != 'PowerOff' }}"
action:
- service: light.turn_on
entity_id: light.tv_lights
data:
brightness_pct: 100
kelvin: 6500
- condition: state
entity_id: switch.fireplace
state: 'off'
- service: switch.turn_on
entity_id: switch.fireplace
- alias: Turn on Fireplace and TV Lights Night
trigger:
- event: sunset
platform: sun
offset: '-00:30:00'
condition:
condition: template
value_template: "{{ states.remote.harmony_hub_den.attributes.current_activity != 'PowerOff' }}"
action:
- service: light.turn_on
entity_id: light.tv_lights
data:
brightness_pct: 100
kelvin: 6500
- condition: state
entity_id: switch.fireplace
state: 'off'
- service: switch.turn_on
entity_id: switch.fireplace
- alias: Turn on bias lighting bedroom at night
trigger:
- platform: state
entity_id: remote.harmony_hub_bedroom
from: 'off'
to: 'on'
- platform: sun
event: sunset
offset: "00:01:00"
condition:
condition: and
conditions:
- condition: state
entity_id: sun.sun
state: 'below_horizon'
- condition: template
value_template: '{{ states.remote.harmony_hub_bedroom.attributes.current_activity != "PowerOff" }}'
action:
- service: light.turn_on
entity_id: light.biased_lights
data:
brightness_pct: 100
kelvin: 6500
- alias: Turn on bias Lights Night
trigger:
- event: sunset
platform: sun
offset: '-00:30:00'
condition:
condition: template
value_template: "{{ states.remote.harmony_hub_bedroom.attributes.current_activity != 'PowerOff' }}"
action:
- service: light.turn_on
entity_id: light.biased_lights
data:
brightness_pct: 100
kelvin: 6500
- alias: Harmony Den activity start
trigger:
platform: state
entity_id: input_select.harmony_den
from: 'Select Input'
action:
- service: remote.turn_on
entity_id: remote.harmony_hub_den
data_template:
activity: >
{% if is_state("input_select.harmony_den", "Netflix") %}
19168891
{% elif is_state("input_select.harmony_den", "Watch Roku") %}
27030102
{% elif is_state("input_select.harmony_den", "Watch PC") %}
25516536
{% elif is_state("input_select.harmony_den", "Watch Smart TV") %}
19688407
{% elif is_state("input_select.harmony_den", "Xbox") %}
22642672
{% else %}
{% endif %}
- service: input_select.select_option
entity_id: input_select.harmony_den
data_template:
option: "Select Input"
- alias: Harmony Bed activity start
trigger:
platform: state
entity_id: input_select.harmony_bed
from: 'Select Input'
action:
- service: remote.turn_on
entity_id: remote.harmony_hub_bedroom
data_template:
activity: >
{% if is_state("input_select.harmony_den", "Bedroom Bluray") %}
23738920
{% elif is_state("input_select.harmony_den", "Bedroom Chromecast") %}
23739184
{% elif is_state("input_select.harmony_den", "Watch Fire TV") %}
19492437
{% else %}
{% endif %}
- service: input_select.select_option
entity_id: input_select.harmony_bed
data_template:
option: "Select Input"
- alias: Harmony Den power off
trigger:
platform: state
entity_id: input_select.harmony_den
to: 'Power Off'
action:
- service: remote.turn_off
entity_id: remote.harmony_hub_den
- service: input_select.select_option
entity_id: input_select.harmony_den
data_template:
option: "Select Input"
- alias: Harmony Bed power off
trigger:
platform: state
entity_id: input_select.harmony_bed
to: 'Power Off'
action:
- service: remote.turn_off
entity_id: remote.harmony_hub_bedroom
- service: input_select.select_option
entity_id: input_select.harmony_bed
data_template:
option: "Select Input"
- alias: Turn off bias lights and fireplace at sunrise
trigger:
platform: sun
event: sunrise
offset: "00:30:00"
action:
- service: light.turn_off
entity_id: light.tv_lights
- service: light.turn_off
entity_id: light.biased_lights
- condition: state
entity_id: input_boolean.fireplace
state: 'on'
- service: switch.turn_off
entity_id: switch.fireplace
- alias: Turn off bedroom tv in night mode if movie is done and you fell asleep
trigger:
- platform: state
entity_id: media_player.kodi_bedroom, media_player.bedroom_shield_tv
to: 'off'
for:
minutes: 30
condition:
condition: state
entity_id: input_boolean.night_mode
state: 'on'
action:
- service: remote.turn_off
entity_id: remote.harmony_hub_bedroom
- alias: Turn off bedroom tv in night mode when channels have been playing for 3 hours
trigger:
- platform: state
entity_id: media_player.kodi_bedroom
to: playing
for:
hours: 3
- platform: state
entity_id: media_player.bedroom_shield_tv
to: 'paused'
for:
hours: 3
- platform: state
entity_id: sensor.bedroom_shield_app
to: TiviMate
for:
hours: 3
condition:
condition: and
conditions:
- condition: template
value_template: "{{ is_state('media_player.kodi_bedroom', 'playing') or not is_state('media_player.bedroom_shield_tv', 'off') }}"
- condition: state
entity_id: input_boolean.night_mode
state: 'on'
action:
- service: remote.turn_off
entity_id: remote.harmony_hub_bedroom
- alias: Mark kitchen tv as on when an app is playing
trigger:
platform: state
entity_id: sensor.kitchen_fire_stick_app
from: 'com.amazon.tv.launcher'
condition:
condition: and
conditions:
- condition: state
entity_id: switch.kitchen_tv
state: 'off'
- condition: not
conditions:
- condition: state
entity_id: sensor.kitchen_fire_stick_app
state:
- 'unavailable'
- 'unknown'
action:
service: input_boolean.turn_on
entity_id: input_boolean.kitchen_tv
################################################
#
# Laundry notifications
#
################################################
- alias: Dryer Notification
trigger:
platform: state
entity_id: sensor.dryer_running
to: 'False'
for:
minutes: 3
condition:
condition: state
entity_id: input_boolean.dryer_status
state: 'on'
action:
- service: input_boolean.turn_off
entity_id: input_boolean.dryer_status
- service: notify.den
data_template:
data:
color: red
duration: 10
position: center
message: "The dryer is done 🎉.{% if is_state('input_boolean.washer_status', 'on') %} However the washer is still running 🙈 {% else %} Time to get your clothes 👍 {% endif %}"
title: Shokabow Zoo
- service: notify.android
data_template:
message: "The dryer is done 🎉.{% if is_state('input_boolean.washer_status', 'on') %} However the washer is still running 🙈 {% else %} Time to get your clothes 👍 {% endif %}"
title: Laundry
data:
ttl: 0
priority: high
channel: Laundry
group: laundry
notification_icon: "mdi:washing-machine"
- condition: state
entity_id: input_boolean.night_mode
state: 'off'
- service: notify.google_assistant_sdk
data:
message: "The dryer is done {% if is_state('input_boolean.washer_status', 'on') %} However the washer is still running {% else %} Time to get your clothes {% endif %}"
- alias: Washer Notification
trigger:
platform: state
entity_id: sensor.washer_running
to: 'False'
for:
minutes: 3
condition:
condition: state
entity_id: input_boolean.washer_status
state: 'on'
action:
- service: input_boolean.turn_off
entity_id: input_boolean.washer_status
- service: notify.den
data_template:
data:
color: red
duration: 10
position: center
message: "The washer is done 🎉.{% if is_state('input_boolean.dryer_status', 'on') %} However the dryer is still running 🙈 {% else %} Time to switch laundry 👍 {% endif %}"
title: Shokabow Zoo
- service: notify.android
data_template:
message: "The washer is done 🎉.{% if is_state('input_boolean.dryer_status', 'on') %} However the dryer is still running 🙈 {% else %} Time to switch laundry 👍 {% endif %}"
title: Laundry
data:
ttl: 0
priority: high
channel: Laundry
group: laundry
notification_icon: "mdi:washing-machine"
- condition: state
entity_id: input_boolean.night_mode
state: 'off'
- service: notify.google_assistant_sdk
data:
message: "The washer is done {% if is_state('input_boolean.dryer_status', 'on') %} However the dryer is still running {% else %} Time to switch laundry {% endif %}"
- alias: Dishwasher Notification
trigger:
platform: state
entity_id: sensor.dishwasher_running
to: 'False'
for:
minutes: 5
condition:
condition: state
entity_id: input_boolean.dishwasher_status
state: 'on'
action:
- service: notify.den
data:
data:
color: red
duration: 10
position: center
message: "The dishes are done! 🎉"
title: Shokabow Zoo
- service: input_boolean.turn_off
entity_id: input_boolean.dishwasher_status
- service: notify.android
data_template:
message: "The dishes are done! 🎉"
data:
ttl: 0
priority: high
channel: Dishwasher
tag: dishes
group: dishes
notification_icon: "mdi:washing-machine"
- service: input_boolean.turn_on
entity_id: input_boolean.dishes_clean
- condition: state
entity_id: input_boolean.night_mode
state: 'off'
- service: notify.google_assistant_sdk
data:
message: "The dishes are done"
- alias: Washer Start
trigger:
platform: state
entity_id: sensor.washer_running
to: 'True'
for:
minutes: 3
action:
service: input_boolean.turn_on
entity_id: input_boolean.washer_status
- alias: Dryer Start
trigger:
platform: state
entity_id: sensor.dryer_running
to: 'True'
for:
minutes: 10
action:
service: input_boolean.turn_on
entity_id: input_boolean.dryer_status
- alias: Dishwasher Start
trigger:
platform: state
entity_id: sensor.dishwasher_running
to: 'True'
action:
- service: input_boolean.turn_on
entity_id: input_boolean.dishwasher_status
- service: input_boolean.turn_off
entity_id: input_boolean.dishes_clean
################################################
#
# TTS notifications
#
################################################
- alias: Front Door TTS
mode: queued
trigger:
- platform: state
entity_id: binary_sensor.front_door
to: 'on'
- platform: state
entity_id: binary_sensor.front_door
to: 'off'
condition:
condition: template
value_template: "{{ trigger.from_state.state != 'unavailable' }}"
action:
- service: tts.google_say
entity_id: media_player.living_room_home
data_template:
message: >
{% if is_state("binary_sensor.front_door", "on") %}
The front door is open
{% elif is_state("binary_sensor.front_door", "off") %}
The front door is closed
{% else %}
{% endif %}
- alias: Announce Lock Jammed
trigger:
platform: state
entity_id: sensor.front_door_lock_alarm_type
to: '11'
action:
- service: notify.android
data_template:
message: "The front door lock is jammed 🚪🔒⛔."
data:
ttl: 0
priority: high
channel: Lock
group: lock
notification_icon: "mdi:lock-alert"
- condition: state
entity_id: input_boolean.night_mode
state: 'off'
- service: notify.google_assistant_sdk
data:
message: "The front door lock is jammed"
- alias: Notify Catio Door Left Open
trigger:
platform: state
entity_id: binary_sensor.catio_firepit_door, binary_sensor.catio_pool_door
to: 'on'
for:
seconds: 30
condition:
condition: and
conditions:
- condition: state
entity_id: alarm_control_panel.home
state: 'disarmed'
- condition: state
entity_id: input_boolean.gardener
state: 'off'
action:
- service: notify.android
data_template:
message: "{{ trigger.to_state.attributes.friendly_name }} has been left open for 30 seconds 🚪🙀"
title: Door Open
data:
ttl: 0
priority: high
channel: alert
group: alert
notification_icon: "mdi:door-open"
- service: tts.google_say
entity_id: media_player.den_home_hub
data_template:
message: "{{ trigger.to_state.attributes.friendly_name }} has been left open, please close it"
- alias: Printer paused
trigger:
platform: state
entity_id: sensor.octoprint_current_state
to: 'Paused'
condition:
condition: and
conditions:
- condition: state
entity_id: input_boolean.night_mode
state: 'off'
- condition: state
entity_id: input_boolean.shower_mode
state: 'off'
- condition: state
entity_id: alarm_control_panel.home
state: 'disarmed'
- condition: state
entity_id: input_boolean.guest_mode
state: 'off'
action:
- service: tts.google_say
entity_id: media_player.den_home_hub, media_player.kitchen_display
data_template:
message: "Printing paused."
- alias: TTS close den sliding door
trigger:
- platform: state
entity_id: binary_sensor.den_sliding_door
to: 'on'
for:
minutes: 3
- platform: state
entity_id: climate.thermostat
to: 'cool'
- platform: state
entity_id: climate.thermostat
to: 'heat'
condition:
condition: and
conditions:
- condition: state
entity_id: binary_sensor.den_sliding_door
state: 'on'
- condition: or
conditions:
- condition: state
entity_id: climate.thermostat
state: 'cool'
- condition: state
entity_id: climate.thermostat
state: 'heat'
action:
- service: tts.google_say
entity_id: media_player.den_home_hub
data_template:
message: "Please close the den sliding door, the thermostat is set to {{ states('climate.thermostat') }}."
- service: notify.android
data_template:
message: "Please close the den sliding 🚪, the thermostat is set to {{ states('climate.thermostat') }}."
title: Door Open
data:
ttl: 0
priority: high
group: door
tag: door
notification_icon: "mdi:door-open"
- wait_for_trigger:
- platform: state
entity_id: binary_sensor.den_sliding_door
to: 'off'
- platform: state
entity_id: climate.thermostat
to: 'off'
- service: notify.android
data:
message: clear_notification
data:
tag: door
################################################
#
# Alarm automations and notifications
#
################################################
- alias: Front Door And Living Room Alarm Pic
trigger:
- platform: state
entity_id: binary_sensor.front_door
to: 'on'
- platform: state
entity_id: binary_sensor.living_room_right_bay_window
to: 'on'
- platform: state
entity_id: binary_sensor.living_room_side_window
to: 'on'
- platform: state
entity_id: binary_sensor.living_room_left_bay_window
to: 'on'
condition:
condition: state
entity_id: alarm_control_panel.home
state: 'armed_away'
for:
minutes: 1
action:
- service: camera.snapshot
data:
entity_id: camera.living_room_camera
filename: '/home/homeassistant/.homeassistant/www/living_room_camera.jpg'
- service: notify.plex_shokouhi
data_template:
message: "{{ trigger.to_state.attributes.friendly_name }} triggered snapshot 📸 "
data:
file:
path: "/home/homeassistant/.homeassistant/www/living_room_camera.jpg"
- service: notify.hass
data_template:
message: "{{ trigger.to_state.attributes.friendly_name }} triggered snapshot 📸 "
target:
- !secret discord_alarm
data:
images:
- "/home/homeassistant/.homeassistant/www/living_room_camera.jpg"
- service: notify.android
data_template:
message: "{{ trigger.to_state.attributes.friendly_name }} triggered snapshot"
title: "Alarm"
data:
image: "/local/living_room_camera.jpg"
group: alarm
channel: alarm
sticky: true
importance: high
notification_icon: "mdi:shield-home"
- service: switch.turn_on
entity_id: switch.living_room_state
- delay: "00:00:30"
- service: switch.turn_off
entity_id: switch.living_room_state
- alias: Den Alarm Pic
trigger:
- platform: state
entity_id: binary_sensor.den_sliding_door
to: 'on'
- platform: state
entity_id: binary_sensor.den_window
to: 'on'
condition:
condition: state
entity_id: alarm_control_panel.home
state: 'armed_away'
for:
minutes: 1
action:
- service: camera.snapshot
data:
entity_id: camera.den_camera
filename: '/home/homeassistant/.homeassistant/www/den_camera.jpg'
- service: notify.plex_shokouhi
data_template:
message: "{{ trigger.to_state.attributes.friendly_name }} triggered snapshot 📸"
data:
file:
path: "/home/homeassistant/.homeassistant/www/den_camera.jpg"
- service: notify.hass
data_template:
message: "{{ trigger.to_state.attributes.friendly_name }} triggered snapshot. 📸 "
target:
- !secret discord_alarm
data:
images:
- "/home/homeassistant/.homeassistant/www/den_camera.jpg"
- service: notify.android
data_template:
message: "{{ trigger.to_state.attributes.friendly_name }} triggered snapshot"
title: "Alarm"
data:
image: "/local/den_camera.jpg"
group: alarm
channel: alarm
sticky: true
importance: high
notification_icon: "mdi:shield-home"
- service: switch.turn_on
entity_id: switch.den_state
- delay: "00:00:30"
- service: switch.turn_off
entity_id: switch.den_state
- alias: Kitchen Alarm Pic
trigger:
platform: state
entity_id: binary_sensor.kitchen_window
to: 'on'
condition:
condition: state
entity_id: alarm_control_panel.home
state: 'armed_away'
for:
minutes: 1
action:
- service: camera.snapshot
data:
entity_id: camera.kitchen
filename: '/home/homeassistant/.homeassistant/www/kitchen.jpg'
- service: notify.plex_shokouhi
data:
message: "Kitchen camera triggered snapshot 📸 "
data:
file:
path: "/home/homeassistant/.homeassistant/www/kitchen.jpg"
- service: notify.hass
data_template:
message: "Kitchen camera triggered snapshot 📸"
target:
- !secret discord_alarm
data:
images:
- "/home/homeassistant/.homeassistant/www/kitchen.jpg"
- service: notify.android
data:
message: "Kitchen camera triggered snapshot"
title: "Alarm"
data:
image_file: "/local/kitchen.jpg"
group: alarm
channel: alarm
sticky: true
importance: high
notification_icon: "mdi:shield-home"
- service: switch.turn_on
entity_id: switch.kitchen_state
- delay: "00:00:30"
- service: switch.turn_off
entity_id: switch.kitchen_state
- alias: Alarm Tripped
trigger:
- platform: state
entity_id: binary_sensor.den_sliding_door
to: 'on'
- platform: state
entity_id: binary_sensor.den_window
to: 'on'
- platform: state
entity_id: binary_sensor.front_door
to: 'on'
- platform: state
entity_id: binary_sensor.living_room_right_bay_window
to: 'on'
- platform: state
entity_id: binary_sensor.living_room_side_window
to: 'on'
- platform: state
entity_id: binary_sensor.living_room_left_bay_window
to: 'on'
- platform: state
entity_id: binary_sensor.kitchen_window
to: 'on'
- platform: state
entity_id: binary_sensor.ollies_window
to: 'on'
- platform: state
entity_id: binary_sensor.bedroom_window
to: 'on'
- platform: state
entity_id: binary_sensor.bathroom_window
to: 'on'
- platform: state
entity_id: binary_sensor.garage_frontyard_door
to: 'on'
condition:
condition: state
entity_id: alarm_control_panel.home
state: 'armed_away'
for:
minutes: 1
action:
- delay: "00:00:02"
- condition: state
entity_id: alarm_control_panel.home
state: 'armed_away'
- service: alarm_control_panel.alarm_trigger
entity_id: alarm_control_panel.home
- service: notify.plex_shokouhi
data_template:
message: "The alarm has been tripped ⚠ from the following windows/doors (may be false alarm, wait for triggered notification in 1 minute): {{ dict((states|selectattr('entity_id', 'in', state_attr('group.monitored_contacts', 'entity_id'))|list)|groupby('state'))['on']|map(attribute='name')|list|join(', ') }}"
- service: notify.hass
data_template:
message: "The alarm has been tripped ⚠ from the following windows/doors (may be false alarm, wait for triggered notification in 1 minute): {{ dict((states|selectattr('entity_id', 'in', state_attr('group.monitored_contacts', 'entity_id'))|list)|groupby('state'))['on']|map(attribute='name')|list|join(', ') }}"
target:
- !secret discord_alarm
- service: notify.mobile_app_dannys_pixel_7_pro
data_template:
message: TTS
data:
tts_text: "Warning the alarm was just tripped at the following windows/doors: {{ dict((states|selectattr('entity_id', 'in', state_attr('group.monitored_contacts', 'entity_id'))|list)|groupby('state'))['on']|map(attribute='name')|list|join(', ') }}"
- alias: Goodbye on Alarm
trigger:
platform: state
entity_id: alarm_control_panel.home
to: 'armed_away'
action:
- service: scene.turn_on
entity_id: scene.goodbye
- service: lock.lock
entity_id: lock.front_door
- service: notify.plex_shokouhi
data:
message: "The alarm has been activated."
- service: notify.hass
data_template:
message: "The alarm has been activated."
target:
- !secret discord_alarm
- service: notify.mobile_app_dannys_pixel_7_pro
data:
message: TTS
data:
ttl: 0
priority: 'high'
tts_text: "The alarm has been activated."
# - delay: "00:00:05"
# - service: script.turn_on
# entity_id: script.update_lights_dynamic
- alias: Notify Alarm Off
trigger:
platform: state
entity_id: alarm_control_panel.home
from: armed_away
to: disarmed
action:
- service: notify.plex_shokouhi
data:
message: "The alarm has been deactivated."
- service: notify.hass
data_template:
message: "The alarm has been deactivated."
target:
- !secret discord_alarm
- alias: Arm Alarm When Nobody Home
trigger:
- entity_id: group.tracked_users
platform: state
to: not_home
for:
minutes: 3
condition:
condition: and
conditions:
- condition: state
entity_id: alarm_control_panel.home
state: 'disarmed'
- condition: state
entity_id: input_boolean.vacation_mode
state: 'off'
- condition: state
entity_id: input_boolean.guest_mode
state: 'off'
action:
- service: alarm_control_panel.alarm_arm_away
data:
entity_id: alarm_control_panel.home
- service: notify.plex_shokouhi
data:
message: "The alarm has been activated since nobody is home"
- service: notify.hass
data_template:
message: "The alarm has been activated since nobody is home"
target:
- !secret discord_alarm
- service: notify.mobile_app_dannys_pixel_7_pro
data:
message: TTS
data:
ttl: 0
priority: 'high'
tts_text: "The alarm has been activated since nobody is home"
- alias: Disarm alarm when someone comes home
trigger:
- platform: state
entity_id: group.tracked_users
to: 'home'
condition:
condition: state
entity_id: alarm_control_panel.home
state: 'armed_away'
action:
- service: alarm_control_panel.alarm_disarm
data:
entity_id: alarm_control_panel.home
- service: notify.plex_shokouhi
data:
message: "The alarm has been deactivated since a tracked user is home"
- service: notify.hass
data_template:
message: "The alarm has been deactivated since a tracked user is home"
target:
- !secret discord_alarm
- alias: Arm Alarm Front Door
trigger:
- platform: event
event_type: "zwave_js_notification"
event_data:
event: 5
- platform: state
entity_id: sensor.front_door_lock_alarm_type
to: '5'
condition:
condition: state
entity_id: alarm_control_panel.home