-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathautomations.yaml
More file actions
2414 lines (2410 loc) · 56.2 KB
/
automations.yaml
File metadata and controls
2414 lines (2410 loc) · 56.2 KB
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
- id: '1663895419097'
alias: Hue remote
description: ''
use_blueprint:
path: ericmatte/philips_hue_v2_smart_dimmer_switch.yaml
input:
hue_device: eba9d8b4257ce13c892979b9e850a7fb
Power_Press:
- choose:
- conditions:
- condition: state
entity_id: light.bedroom_2
state: 'off'
sequence:
- action: hue.activate_scene
metadata: {}
data:
transition: 1
dynamic: true
target:
entity_id: scene.bedroom_natural_light
default:
- action: light.turn_off
metadata: {}
data:
transition: 2
target:
entity_id: light.bedroom_2
Up_Press:
- action: light.turn_on
metadata: {}
data:
transition: 1
brightness_pct: 100
target:
area_id: bedroom
Down_Press:
- action: light.turn_on
metadata: {}
data:
transition: 1
brightness_step_pct: -25
target:
area_id: bedroom
Hue_Press:
- action: cover.toggle
metadata: {}
data: {}
target:
area_id: bedroom
Down_Short_Release: []
Down_Repeat: []
Up_Short_Release: []
Up_Repeat: []
Hue_Long_Release:
- action: cover.toggle
metadata: {}
data: {}
target:
area_id: dining_room
- id: '1754713870026'
alias: Turn off all when going to bed
description: ''
triggers:
- trigger: state
entity_id:
- sensor.eric_phone_battery_state
to: charging
id: charger
- trigger: state
entity_id:
- light.bedroom_2
to: 'off'
id: lights_off
conditions:
- condition: time
after: '22:00:00'
before: 02:00:00
- condition: state
entity_id: sensor.eric_phone_battery_state
state: charging
- condition: or
conditions:
- condition: state
entity_id: light.bedroom_2
state: 'off'
- condition: numeric_state
entity_id: light.eric_bedside_table
attribute: brightness
above: 0
below: 5
actions:
- action: script.turn_on
metadata: {}
data: {}
target:
entity_id: script.turn_off_all_lights
mode: single
- id: '1755658280925'
alias: Sync heat with lights
description: ''
triggers:
- trigger: state
entity_id:
- light.theatre
to: 'on'
from: 'off'
id: turn_on
- trigger: state
entity_id:
- light.theatre
from: 'on'
to: 'off'
id: turn_off
conditions: []
actions:
- choose:
- conditions:
- condition: trigger
id:
- turn_on
- condition: sun
after: sunset
sequence:
- if:
- condition: state
entity_id: climate.theatre_thermostat
attribute: preset_mode
state: none
then:
- action: climate.set_temperature
metadata: {}
data:
temperature: 21.5
target:
area_id: theatre
alias: Crank up heat
- conditions:
- condition: trigger
id:
- turn_off
sequence:
- alias: Turn down heat
if:
- condition: state
entity_id: climate.theatre_thermostat
attribute: preset_mode
state: none
then:
- action: climate.set_temperature
metadata: {}
data:
temperature: 20
target:
area_id: theatre
mode: single
- id: '1755658699501'
alias: Motion (5 min before sunset, 1h after)
description: ''
triggers:
- trigger: state
entity_id:
- binary_sensor.motion_remote
to: 'on'
from: 'off'
id: motion
- trigger: state
entity_id:
- light.bedroom_2
to: 'on'
id: lights_on
conditions:
- condition: time
before: 02:00:00
after: 08:00:00
- condition: or
conditions:
- condition: trigger
id:
- lights_on
- condition: state
entity_id: light.bedroom_2
state: 'off'
for:
hours: 0
minutes: 0
seconds: 30
- condition: state
entity_id: light.bedroom_2
state: 'on'
- alias: If not everybody is sleeping
condition: not
conditions:
- condition: and
conditions:
- condition: state
entity_id: sensor.eric_phone_battery_state
state: charging
- condition: state
entity_id: sensor.caro_phone_battery_state
state: charging
actions:
- if:
- condition: time
after: '18:00:00'
before: 02:00:00
- condition: state
entity_id: sensor.caro_phone_battery_state
state: charging
then:
- if:
- condition: state
entity_id: light.bedroom_2
state: 'off'
then:
- action: light.turn_on
metadata: {}
data:
transition: 5
brightness_pct: 22
target:
entity_id: light.eric_bedside_table
else:
- sequence:
- if:
- condition: trigger
id:
- motion
- condition: state
entity_id: light.bedroom_2
state: 'off'
then:
- action: hue.activate_scene
metadata: {}
data:
dynamic: true
transition: 1
target:
entity_id: scene.bedroom_natural_light
- choose:
- conditions:
- condition: sun
before: sunset
after: sunrise
sequence:
- delay:
hours: 0
minutes: 5
seconds: 0
milliseconds: 0
default:
- delay:
hours: 1
minutes: 0
seconds: 0
milliseconds: 0
- action: light.turn_off
metadata: {}
data:
transition: 5
target:
area_id: bedroom
mode: restart
- id: '1755663821309'
alias: Motion on
description: ''
triggers:
- trigger: state
entity_id:
- binary_sensor.theatre_motion_sensor
to: 'on'
from: 'off'
conditions:
- condition: time
before: '23:30:00'
after: 07:30:00
- condition: state
entity_id: light.theatre
state: 'off'
actions:
- action: hue.activate_scene
metadata: {}
data:
dynamic: true
transition: 1
target:
entity_id: scene.theatre_natural_light_2
mode: single
- id: '1755722221689'
alias: Away mode
description: ''
triggers:
- trigger: state
entity_id:
- binary_sensor.anybody
to:
conditions: []
actions:
- choose:
- conditions:
- condition: state
entity_id: binary_sensor.anybody
state: 'on'
sequence:
- action: automation.turn_on
metadata: {}
target:
entity_id: '{{ label_entities(''motions'') + label_entities(''when_at_home'')
}}'
enabled: true
data: {}
- conditions:
- condition: state
entity_id: binary_sensor.anybody
state: 'off'
sequence:
- action: script.turn_on
metadata: {}
data: {}
target:
entity_id: script.turn_off_all_lights
- action: automation.turn_off
metadata: {}
data:
stop_actions: true
target:
entity_id: '{{ label_entities(''motions'') + label_entities(''when_at_home'')
}}'
enabled: true
- action: climate.set_temperature
metadata: {}
target:
entity_id:
- climate.bedroom_thermostat
- climate.eric_s_office_thermostat
- climate.theatre_thermostat
data:
temperature: 19
mode: single
- id: '1755723366418'
alias: Hidden 3-buttons remote
description: ''
triggers:
- trigger: state
entity_id:
- binary_sensor.esp_motion_remote_eric_left_button
id: left_button
to:
- 'on'
- trigger: state
entity_id:
- binary_sensor.esp_motion_remote_eric_middle_button
to:
- 'on'
id: middle_button
- trigger: state
entity_id:
- binary_sensor.esp_motion_remote_eric_right_button
to:
- 'on'
id: right_button
- trigger: state
entity_id:
- binary_sensor.esp_motion_remote_caro_button
to:
- 'on'
id: caro_button
conditions: []
actions:
- choose:
- conditions:
- condition: trigger
id:
- caro_button
sequence:
- wait_for_trigger:
- trigger: state
entity_id:
- binary_sensor.esp_motion_remote_caro_button
to:
- 'off'
timeout:
hours: 0
minutes: 0
seconds: 0
milliseconds: 700
continue_on_timeout: true
- if:
- condition: template
value_template: '{{ wait.completed }}'
alias: Quick click
then:
- action: light.toggle
metadata: {}
data:
transition: 1
target:
area_id: bedroom
else:
- if:
- condition: state
entity_id: person.eric
state:
- home
then:
- action: light.toggle
metadata: {}
target:
entity_id: light.caro_bedside_table
data:
transition: 1
else:
- action: script.turn_on
metadata: {}
data: {}
target:
entity_id: script.turn_off_all_lights
- conditions:
- condition: trigger
id:
- left_button
sequence:
- wait_for_trigger:
- trigger: state
entity_id:
- binary_sensor.esp_motion_remote_eric_left_button
to:
- 'off'
timeout:
hours: 0
minutes: 0
seconds: 0
milliseconds: 700
continue_on_timeout: true
- if:
- condition: template
value_template: '{{ wait.completed }}'
then:
- action: script.turn_on
metadata: {}
data: {}
target:
entity_id: script.turn_off_things_before_sleeping
else:
- action: script.turn_on
metadata: {}
data: {}
target:
entity_id: script.turn_off_all_lights
- conditions:
- condition: trigger
id:
- middle_button
sequence:
- if:
- condition: state
entity_id: light.eric_bedside_table
state:
- 'off'
then:
- action: light.turn_on
metadata: {}
data:
brightness_pct: 1
transition: 1
target:
entity_id: light.eric_bedside_table
else:
- action: light.turn_on
metadata: {}
data:
brightness_pct: 100
transition: 1
target:
entity_id: light.eric_bedside_table
- conditions:
- condition: trigger
id:
- right_button
sequence:
- if:
- condition: state
entity_id: light.bedroom_2
state:
- 'off'
then:
- action: hue.activate_scene
metadata: {}
data:
transition: 1
dynamic: true
target:
entity_id: scene.bedroom_natural_light
else:
- action: light.turn_on
metadata: {}
data:
transition: 1
brightness_pct: 100
target:
area_id: bedroom
mode: parallel
max: 10
- id: '1756351726973'
alias: Motion off after 45min after sunset
description: ''
triggers:
- trigger: state
entity_id:
- binary_sensor.theatre_motion_sensor
to: 'off'
for:
hours: 0
minutes: 45
seconds: 0
- trigger: state
entity_id:
- media_player.theatre_tv
from:
- playing
for:
hours: 0
minutes: 45
seconds: 0
conditions:
- condition: sun
after: sunset
before: sunrise
- condition: state
entity_id: binary_sensor.theatre_motion_sensor
state: 'off'
for:
hours: 0
minutes: 45
seconds: 0
- condition: or
conditions:
- condition: state
entity_id: media_player.theatre_tv
state:
- 'off'
- condition: state
entity_id: media_player.theatre_tv
state:
- idle
actions:
- action: light.turn_off
metadata: {}
data:
transition: 5
target:
area_id: theatre
mode: single
- id: '1757204962690'
alias: Show outside temperature on thermostats
description: ''
use_blueprint:
path: ericmatte/climate_outdoor_temperature.yaml
input:
temperature_input: weather.home
thermostats:
- 6cac62494ac9c1f73ab0bab89f83e3d2
- 83eb981d39bcce2114b24b1630994074
- ae632394cc0506da5e99eed1e5885bc0
- 54e5c6a92f5b996aeb4875a3fce1f411
- b0f91e9fca55faafdfaa7d489d4794fd
- id: '1757464460111'
alias: Motion
description: ''
triggers:
- trigger: state
entity_id:
- binary_sensor.motion_presence
to: 'on'
conditions:
- condition: state
entity_id: person.eric
state: home
- condition: state
entity_id: light.office
state: 'off'
for:
hours: 0
minutes: 0
seconds: 30
enabled: true
- condition: time
after: 06:00:00
before: '23:30:00'
actions:
- action: light.turn_on
metadata: {}
data:
transition: 1
target:
entity_id: light.office
mode: single
- id: '1757464873639'
alias: Sync auxiliary light with main light
description: ''
triggers:
- trigger: state
entity_id:
- light.office
to:
conditions: []
actions:
- choose:
- conditions:
- condition: state
entity_id: light.office
state: 'on'
sequence:
- action: hue.activate_scene
metadata: {}
data:
transition: 1
target:
entity_id: scene.eric_office_cool_bright
default:
- action: light.turn_off
metadata: {}
data:
transition: 1
target:
entity_id: light.auxiliary_lamp
mode: single
- id: '1758113303096'
alias: Sync box toggle
description: ''
triggers:
- trigger: state
entity_id:
- input_select.sync_box_settings
to:
- trigger: state
entity_id:
- media_player.theatre_tv
to:
conditions: []
actions:
- choose:
- conditions:
- condition: state
entity_id: input_select.sync_box_settings
state: 'On'
sequence:
- action: light.turn_on
metadata: {}
data:
brightness_pct: 75
target:
entity_id: light.sync_box
- conditions:
- condition: and
conditions:
- condition: state
entity_id: input_select.sync_box_settings
state: On while playing TV
- condition: state
entity_id: media_player.theatre_tv
state:
- playing
sequence:
- action: light.turn_on
metadata: {}
data:
brightness_pct: 75
target:
entity_id: light.sync_box
default:
- action: light.turn_off
metadata: {}
data: {}
target:
entity_id: light.sync_box
mode: single
- id: '1758600795981'
alias: Sync box reset
description: ''
triggers:
- trigger: state
entity_id:
- media_player.theatre_tv
to:
- 'off'
conditions:
- condition: state
entity_id: input_select.sync_box_settings
state: 'On'
actions:
- action: input_select.select_option
metadata: {}
data:
option: On while playing TV
target:
entity_id: input_select.sync_box_settings
mode: single
- id: '1758678147252'
alias: Sump leak alarm notification
description: ''
triggers:
- trigger: state
entity_id:
- binary_sensor.sump_water_leak_detector_water_leak
to: 'on'
conditions: []
actions:
- action: notify.notify
metadata: {}
data:
title: "⚠️ Augmentation du niveau d'eau! \U0001F4A6"
message: Dans le puisard
data:
ttl: 0
priority: high
mode: single
- id: '1758678867687'
alias: Dishwasher leak alarm notification
description: ''
triggers:
- trigger: state
entity_id:
- binary_sensor.dishwasher_leak_detector_water_leak
to: 'on'
conditions: []
actions:
- action: notify.notify
metadata: {}
data:
title: "⚠️ Fuite a été détecté! \U0001F4A6"
message: Au lave-vaisselle
data:
ttl: 0
priority: high
mode: single
- id: '1759028691915'
alias: Laundry light on when door opens
description: ''
triggers:
- trigger: state
entity_id:
- binary_sensor.laundry_door
to:
conditions: []
actions:
- if:
- condition: state
entity_id: binary_sensor.laundry_door
state: 'on'
then:
- action: light.turn_on
metadata: {}
data: {}
target:
entity_id: light.laundry
else:
- action: light.turn_off
metadata: {}
data: {}
target:
entity_id: light.laundry
mode: single
- id: '1759029939032'
alias: Lights on when arriving or opening the door
description: ''
triggers:
- trigger: state
entity_id:
- binary_sensor.front_door
to: 'on'
id: door
- trigger: state
entity_id:
- person.eric
- person.caro
to: home
id: a person
conditions:
- condition: sun
before: sunrise
after: sunset
after_offset: -01:00:00
actions:
- action: light.turn_on
metadata: {}
data:
transition: 2
target:
entity_id:
- light.entrance_lights
- light.driveway_lantern
- if:
- condition: trigger
id:
- a person
then:
- action: light.turn_on
metadata: {}
data:
transition: 2
target:
area_id:
- entrance
- delay:
hours: 0
minutes: 5
seconds: 0
milliseconds: 0
- action: light.turn_off
metadata: {}
data:
transition: 2
target:
entity_id:
- light.entrance_lights
- light.driveway_lantern
mode: restart
- id: '1759083438717'
alias: Warn when below 0°C
description: ''
triggers:
- trigger: numeric_state
entity_id:
- sensor.workshop_temperature_humidity_temperature
below: 0
conditions: []
actions:
- action: notify.notify
metadata: {}
data:
message: La température dans l'établie est en dessous de 0°C. Il est temps de
rentrer du stock.
title: "\U0001F321️ Avertissement de temperature \U0001F976"
mode: single
- id: '1759255356717'
alias: High humidity alert
description: ''
use_blueprint:
path: ericmatte/humidity_high_alert.yaml
input:
humidity_sensors:
- sensor.rm4_humidity
- sensor.motion_humidity
- sensor.workshop_temperature_humidity_humidity
threshold: 65
- id: '1759267988873'
alias: Sync covers with time and sun
description: ''
triggers:
- trigger: state
entity_id:
- sun.sun
to: below_horizon
id: Sun below horizon
- trigger: time
at: 09:30:00
id: Time in the morning
conditions: []
actions:
- choose:
- conditions:
- condition: trigger
id:
- Time in the morning
sequence:
- action: cover.open_cover
metadata: {}
data: {}
target:
area_id:
- dining_room
- if:
- condition: state
entity_id: input_boolean.guest_mode
state:
- 'off'
then:
- action: cover.open_cover
metadata: {}
data: {}
target:
area_id:
- guest_room
- conditions:
- condition: trigger
id:
- Sun below horizon
sequence:
- action: cover.close_cover
metadata: {}
data: {}
target:
floor_id:
- first_floor
- basement
mode: single
- id: '1759287649594'
alias: Sync kitchen lights
description: ''
use_blueprint:
path: ericmatte/lights_sync.yaml
input:
lights:
- light.kitchen_island_lights
- light.kitchen_sink_lights
- light.kitchen_middle_light
- id: '1759336603445'
alias: Turn off light after 30min before sunset
description: ''
triggers:
- trigger: state
entity_id:
- light.kitchen_island_lights
to: 'on'
for:
hours: 0
minutes: 30
seconds: 0
conditions:
- condition: time
before: 04:00:00
actions:
- action: light.turn_off
metadata: {}
data: {}
target:
area_id: kitchen
mode: single
- id: '1759450285307'
alias: Lights off after 1h30am
description: ''
triggers:
- trigger: time
at: 01:30:00
conditions:
- condition: state
entity_id: light.outside_outlet
state: 'on'
actions:
- action: light.turn_off
metadata: {}
data: {}
target:
entity_id: light.outside_outlet
mode: single
- id: '1759495948382'
alias: Open curtains when lights are turned on in the morning
description: ''
triggers:
- trigger: state
entity_id:
- light.kitchen_middle_light
to: 'on'
conditions:
- condition: time
after: 07:00:00
before: '10:00:00'
actions:
- action: cover.open_cover
metadata: {}
data: {}
target:
area_id: dining_room
mode: single
- id: '1759638483935'
alias: Turn up heat while lights are on
description: ''
triggers:
- trigger: state
entity_id:
- light.office
from: 'off'
to: 'on'
id: Turn on
- trigger: state
entity_id:
- light.office
from: 'on'
to: 'off'
for:
hours: 0
minutes: 15
seconds: 0
id: Off for 15 min
conditions:
- condition: state
entity_id: person.eric
state: home
- condition: time
weekday:
- mon
- tue
- wed
- thu
- fri
actions:
- choose:
- conditions:
- condition: trigger