-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathautomations.yaml
1246 lines (1246 loc) · 32.9 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
- id: '1603830622083'
alias: Gangverlichting aan bij beweging of openen voordeur als het donker is
description: Triggers when there is movement in the hall at ground level or first
floor. When it freezes, warn with a blue light. Brightness is adapted to the desired
level. Because the IKEA sensor at the corridor is slow in going to the cleared
state, have a 10m wait before the Philips sensor at the hall is allowed to clear.
triggers:
- type: occupied
device_id: e13fa775ae5c1aa7dc0dd04f3d6fe2e8
entity_id: 48f91ab28a35ff8c56779561f10c1d33
domain: binary_sensor
trigger: device
- type: motion
device_id: f0557193b49cd30a72b37ed875ced7b6
entity_id: ee892634746b2f5638cbfadb0a0aca3c
domain: binary_sensor
trigger: device
- type: opened
device_id: 051215d5b20dc09f912d269348bf1441
entity_id: 4a91250870afd2a57d0c1da622f884cf
domain: binary_sensor
trigger: device
conditions:
- condition: state
entity_id: binary_sensor.donker
state: 'off'
alias: ' Als het donker is'
actions:
- choose:
- conditions:
- condition: time
after: '22:00:00'
before: 06:00:00
sequence:
- data:
brightness_pct: 1
kelvin: 2000
action: light.turn_on
target:
area_id:
- corridor
- hall
- conditions:
- type: is_temperature
condition: device
device_id: 7ad8ff08e5afbb2dcf95776a9b974c9b
entity_id: 46a11c647e970ebba10844fc272365f8
domain: sensor
below: 0
sequence:
- data:
color_temp: 500
brightness: 255
target:
entity_id:
- light.hall
action: light.turn_on
- data:
brightness: 100
color_temp: 331
target:
entity_id:
- light.corridor
action: light.turn_on
- conditions:
- condition: time
weekday:
- mon
- tue
- wed
- thu
- fri
after: 06:39:00
before: 07:05:00
- condition: not
conditions:
- condition: state
entity_id: sensor.utrecht_alkmaar
state:
- unknown
- unavailable
alias: Utrecht - Alkmaar is available
- alias: Test if there is an abnormality
condition: or
conditions:
- condition: state
entity_id: sensor.utrecht_alkmaar
attribute: going
state: 'false'
alias: Train not running
- alias: Train status is not normal
condition: not
conditions:
- condition: state
entity_id: sensor.utrecht_alkmaar
state: normal
attribute: status
- condition: state
entity_id: sensor.utrecht_alkmaar
attribute: departure_delay
state: 'true'
sequence:
- data:
color_temp: 153
brightness_pct: 100
flash: long
action: light.turn_on
target:
area_id:
- hall
- corridor
alias: Rijdendetreinen?
default:
- data:
brightness: 100
color_temp: 326
action: light.turn_on
target:
area_id:
- hall
- corridor
- wait_template: ' {{ (states(''binary_sensor.gang_bewegingsmelder_bezetting'')
== ''off'') and (states(''binary_sensor.overloop_bewegingsmelder'') == ''off'')
}}'
continue_on_timeout: true
timeout: 01:00:00
alias: Wachten tot er geen beweging meer gedetecteerd wordt
- data: {}
action: light.turn_off
target:
area_id:
- hall
- corridor
mode: single
- id: '1603831020194'
alias: Keukenverlichting aan bij beweging als het donker is
description: Triggers when there is movement in the kitchen. Only activate light
when there is less than 20 lux measured in the hall at ground level. Brightness
is adapted to the desired level.
triggers:
- type: motion
device_id: 811fd532a4a1bdde606177e29af0ec97
entity_id: 8b1ce9932b09c8693d6712cf440baf21
domain: binary_sensor
trigger: device
conditions:
- condition: state
entity_id: binary_sensor.donker
state: 'off'
actions:
- if:
- condition: time
after: '22:00:00'
before: 07:00:00
then:
- action: light.turn_on
metadata: {}
data:
brightness_pct: 1
target:
area_id: kitchen
else:
- action: light.turn_on
metadata: {}
data:
brightness_pct: 100
target:
area_id: kitchen
- wait_for_trigger:
- type: no_motion
device_id: 811fd532a4a1bdde606177e29af0ec97
entity_id: 8b1ce9932b09c8693d6712cf440baf21
domain: binary_sensor
trigger: device
timeout:
hours: 1
minutes: 0
seconds: 0
milliseconds: 0
alias: Wachten op geen beweging in de keuken
- data: {}
action: light.turn_off
target:
area_id: kitchen
mode: single
- id: '1608134139962'
alias: Schuurverlichting aan bij openen deur als het donker is
description: Put the light in the shed on when the door is opened and it is dark.
Put it off when the door is closed for longer than two minutes. If the door is
closed, the user is reminded of this automation by a brief flash.
triggers:
- type: opened
device_id: b3c874782468351d90c0ebe2fac89018
entity_id: 4e9c30ff5c5964462e30115fc96d94ab
domain: binary_sensor
trigger: device
conditions:
- condition: state
entity_id: binary_sensor.donker
state: 'off'
alias: Als het donker is
actions:
- data: {}
target:
area_id: shed
action: light.turn_on
- wait_for_trigger:
- type: not_opened
device_id: b3c874782468351d90c0ebe2fac89018
entity_id: 4e9c30ff5c5964462e30115fc96d94ab
domain: binary_sensor
trigger: device
timeout:
hours: 0
minutes: 5
seconds: 0
milliseconds: 0
- delay:
hours: 0
minutes: 2
seconds: 0
milliseconds: 0
- data: {}
target:
area_id: shed
action: light.turn_off
mode: restart
- id: '1609974870568'
alias: Knipper lampen en waarschuw wanneer deurbel ingedrukt wordt
description: Flash lights and notify when the doorbell is detected by the RTL_433
extension.
triggers:
- domain: mqtt
device_id: 83b12a930eaf4c7cb659f87de06f7708
type: button_short_release
subtype: button_1
discovery_id: Proove-Security-3-30755554 Proove-Security-3-30755554-CH
trigger: device
conditions: []
actions:
- parallel:
- device_id: c0f2abd8a92c0bfad616ec4aa371901d
domain: mobile_app
type: notify
message: Deurbel!
- action: notify.persistent_notification
metadata: {}
data:
message: Deurbel!
- sequence:
- data:
flash: long
target:
area_id:
- kitchen
- hall
- corridor
action: light.toggle
- delay:
hours: 0
minutes: 0
seconds: 1
milliseconds: 0
- data:
flash: long
target:
area_id:
- kitchen
- hall
- corridor
action: light.toggle
mode: single
- id: '1612988672846'
alias: Toiletverlichting aan bij openen deur
description: Switch the toilet light when the door is opened.
triggers:
- type: opened
device_id: 51fb2dd677fc2b08b7cd63bf90894249
entity_id: 2aca2e2658c249b56823c6566e78311b
domain: binary_sensor
trigger: device
conditions: []
actions:
- data: {}
action: light.turn_on
target:
area_id: toilet
- wait_for_trigger:
- type: not_opened
device_id: 51fb2dd677fc2b08b7cd63bf90894249
entity_id: 2aca2e2658c249b56823c6566e78311b
domain: binary_sensor
trigger: device
timeout:
hours: 0
minutes: 15
seconds: 0
milliseconds: 0
alias: Wachten op sluiten toiletdeur
- wait_for_trigger:
- type: opened
device_id: 51fb2dd677fc2b08b7cd63bf90894249
entity_id: 2aca2e2658c249b56823c6566e78311b
domain: binary_sensor
trigger: device
timeout:
hours: 0
minutes: 15
seconds: 0
milliseconds: 0
alias: Wachten op openen toiletdeur
- data: {}
action: light.turn_off
target:
area_id: toilet
mode: single
- id: '1612988850571'
alias: Voorraadkastverlichting aan bij openen deur
description: Switch the light in the pantry when the door is opened or closed.
triggers:
- type: opened
device_id: b8bb92a8be279ee84529cbd0037afbc5
entity_id: ba8143fedc11dcd58928ffe1c89c7adb
domain: binary_sensor
trigger: device
conditions: []
actions:
- action: light.turn_on
data: {}
target:
area_id: pantry
- wait_for_trigger:
- type: not_opened
device_id: b8bb92a8be279ee84529cbd0037afbc5
entity_id: ba8143fedc11dcd58928ffe1c89c7adb
domain: binary_sensor
trigger: device
timeout:
hours: 0
minutes: 5
seconds: 0
milliseconds: 0
- action: light.turn_off
data: {}
target:
area_id: pantry
mode: single
- id: '1614112596198'
alias: Fietsverlichting aan bij beweging als het donker is
description: ''
triggers:
- type: motion
device_id: 92f92740112aad1de8eac8a6c9ebb5bd
entity_id: 29def69b4b7ae4b0c7c435a54a4ad9da
domain: binary_sensor
trigger: device
conditions:
- condition: state
entity_id: binary_sensor.donker
state: 'off'
alias: Als het donker is
actions:
- type: turn_on
device_id: 663b87c1fa016b28463175ae19183722
entity_id: 79243d07315d99d310ba3b2cf36e9cc9
domain: light
- wait_for_trigger:
- type: no_motion
device_id: 92f92740112aad1de8eac8a6c9ebb5bd
entity_id: 29def69b4b7ae4b0c7c435a54a4ad9da
domain: binary_sensor
trigger: device
timeout:
hours: 0
minutes: 10
seconds: 0
milliseconds: 0
- type: turn_off
device_id: 663b87c1fa016b28463175ae19183722
entity_id: 79243d07315d99d310ba3b2cf36e9cc9
domain: light
mode: single
- id: '1652901588502'
alias: Waarschuw wanneer robotstofzuiger opgeladen is
description: ''
triggers:
- entity_id:
- vacuum.robotstofzuiger
attribute: battery_level
above: '99'
trigger: numeric_state
conditions: []
actions:
- device_id: c0f2abd8a92c0bfad616ec4aa371901d
domain: mobile_app
type: notify
message: Vacuum charged
mode: single
- id: '1662921513914'
alias: Inloopkast verlichting aan bij openen deur
description: ''
triggers:
- entity_id:
- binary_sensor.inloopkastdeur
from: 'off'
to: 'on'
trigger: state
conditions: []
actions:
- data: {}
action: light.turn_on
target:
area_id: walk_in_closet
- wait_for_trigger:
- entity_id:
- binary_sensor.walk_in_closet_door
to: 'off'
trigger: state
continue_on_timeout: true
timeout:
hours: 0
minutes: 10
seconds: 0
milliseconds: 0
- data: {}
action: light.turn_off
target:
area_id: walk_in_closet
mode: single
- id: '1672607309301'
alias: Bureau M
description: Handling events from the buttons on the desks.
triggers:
- id: Aanzetten
device_id: f2920d964a5c507e42ff8757a220ddb8
domain: zha
type: remote_button_short_press
subtype: turn_on
trigger: device
- id: Uitzetten
device_id: f2920d964a5c507e42ff8757a220ddb8
domain: zha
type: remote_button_short_press
subtype: turn_off
trigger: device
conditions: []
actions:
- choose:
- conditions:
- condition: trigger
id:
- Aanzetten
sequence:
- type: turn_on
device_id: 88f3bd6155d65b4b9ac1c8964e27fa20
entity_id: a4b1e2e1270d476cd119e59125d373af
domain: switch
- conditions:
- condition: trigger
id:
- Uitzetten
sequence:
- type: turn_off
device_id: 88f3bd6155d65b4b9ac1c8964e27fa20
entity_id: a4b1e2e1270d476cd119e59125d373af
domain: switch
mode: single
- id: '1692770404361'
alias: Waarschuw wanneer vaatwasser klaar is
description: ''
triggers:
- type: not_running
device_id: b28019ef58e81922c56d1e9238d4a9df
entity_id: a5b3b533f4c4f98239aac22268eb4e6e
domain: binary_sensor
trigger: device
for:
hours: 0
minutes: 1
seconds: 0
conditions: []
actions:
- device_id: c0f2abd8a92c0bfad616ec4aa371901d
domain: mobile_app
type: notify
message: Vaatwasser is klaar
- delay:
hours: 0
minutes: 30
seconds: 0
mode: single
- id: '1693470796463'
alias: Waarschuw wanneer afwasmachine klaar is
description: ''
triggers:
- type: not_running
device_id: 7b748ddf488252dc1ed824f226b39955
entity_id: 917e85b275361e10b477a358351e103b
domain: binary_sensor
trigger: device
conditions: []
actions:
- device_id: c0f2abd8a92c0bfad616ec4aa371901d
domain: mobile_app
type: notify
message: Wasmachine is klaar
- delay:
hours: 0
minutes: 30
seconds: 0
milliseconds: 0
mode: single
- id: '1699803193333'
alias: Slaapkamer afstandsbediening
description: ''
triggers:
- device_id: 5a9933c449a2a8068f6012de36a6e91d
domain: zha
type: remote_button_short_press
subtype: turn_on
id: Aanzetten
trigger: device
- device_id: 5a9933c449a2a8068f6012de36a6e91d
domain: zha
type: remote_button_short_press
subtype: dim_up
id: Dim omhoog
trigger: device
- device_id: 5a9933c449a2a8068f6012de36a6e91d
domain: zha
type: remote_button_short_press
subtype: dim_down
id: Dim omlaag
trigger: device
- device_id: 5a9933c449a2a8068f6012de36a6e91d
domain: zha
type: remote_button_short_press
subtype: left
id: Links
trigger: device
- device_id: 5a9933c449a2a8068f6012de36a6e91d
domain: zha
type: remote_button_short_press
subtype: right
id: Rechts
trigger: device
conditions: []
actions:
- choose:
- conditions:
- condition: trigger
id:
- Aanzetten
sequence:
- data: {}
action: light.toggle
target:
area_id: bedroom
- conditions:
- condition: trigger
id:
- Dim omhoog
sequence:
- data:
kelvin: 2000
brightness_pct: 100
action: light.turn_on
target:
area_id: bedroom
- conditions:
- condition: trigger
id:
- Dim omlaag
sequence:
- data:
kelvin: 2000
brightness_pct: 1
action: light.turn_on
target:
area_id: bedroom
- conditions:
- condition: trigger
id:
- Links
sequence:
- type: toggle
device_id: 6783c5c5d415efc8d8ee992bcede1f16
entity_id: c0713d089c995a6583b6ea2ca85d3848
domain: light
- conditions:
- condition: trigger
id:
- Rechts
sequence:
- type: toggle
device_id: a86d85dac77c6830cc859999c74e41da
entity_id: 7b92662312ab2bfa93a704d11b8f5b1b
domain: light
mode: single
- id: '1712905763291'
alias: Slaapkamer knop
description: ''
triggers:
- device_id: ef6cce96c0aff37b73773be4f1a30e2f
domain: zha
type: remote_button_short_press
subtype: turn_on
id: Aanzetten
trigger: device
- device_id: ef6cce96c0aff37b73773be4f1a30e2f
domain: zha
type: remote_button_short_press
subtype: turn_off
id: Uitzetten
trigger: device
- device_id: ef6cce96c0aff37b73773be4f1a30e2f
domain: zha
type: remote_button_long_release
subtype: dim_up
id: Dim omhoog
trigger: device
conditions: []
actions:
- choose:
- conditions:
- condition: trigger
id:
- Aanzetten
sequence:
- type: turn_on
device_id: 6783c5c5d415efc8d8ee992bcede1f16
entity_id: c0713d089c995a6583b6ea2ca85d3848
domain: light
- conditions:
- condition: trigger
id:
- Uitzetten
sequence:
- metadata: {}
data: {}
action: light.turn_off
target:
area_id: bedroom
- conditions:
- condition: trigger
id:
- Dim omhoog
sequence:
- data:
brightness_pct: 100
action: light.turn_on
target:
area_id: bedroom
mode: single
- id: '1722715718463'
alias: 'Dakterras '
description: ''
trigger:
- device_id: 88565956afb4bf97d9676e215e0a2711
domain: zha
platform: device
type: remote_button_short_press
subtype: turn_on
id: 'Enkel '
- device_id: 88565956afb4bf97d9676e215e0a2711
domain: zha
platform: device
type: remote_button_double_press
subtype: turn_on
id: Dubbel
- device_id: 88565956afb4bf97d9676e215e0a2711
domain: zha
platform: device
type: remote_button_long_press
subtype: dim_up
id: Lang
condition: []
action:
- choose:
- conditions:
- condition: trigger
id:
- 'Enkel '
sequence:
- type: toggle
device_id: a9f1fc5ca682b5534d1e91820b492b08
entity_id: 3af0fb3f0b98e437fa6d458101b1e14a
domain: light
- conditions:
- condition: trigger
id:
- Dubbel
sequence:
- service: light.turn_on
metadata: {}
data:
rgb_color:
- 0
- 0
- 255
kelvin: 2000
brightness_pct: 50
target:
device_id: a9f1fc5ca682b5534d1e91820b492b08
- conditions:
- condition: trigger
id:
- Lang
sequence:
- service: light.turn_on
metadata: {}
data:
brightness_pct: 100
target:
entity_id: light.dakterras
mode: single
- id: '1731854909673'
alias: Kerstverlichting aan bij zonsondergang en na 5:00
description: ''
triggers:
- trigger: sun
event: sunset
offset: 0
- trigger: time
at: 05:00:00
conditions: []
actions:
- type: turn_on
device_id: 663b87c1fa016b28463175ae19183722
entity_id: e66fd00d6540c7638875c855100258f2
domain: light
mode: single
- id: '1731854960187'
alias: Kerstverlichting uit bij zonsopkomst en 1:00
description: ''
triggers:
- trigger: sun
event: sunrise
offset: 0
- trigger: time
at: 01:00:00
conditions: []
actions:
- type: turn_off
device_id: 663b87c1fa016b28463175ae19183722
entity_id: 753f1beb62f0242f3ee4802ff9b91d63
domain: switch
mode: single
- id: '1735895231627'
alias: Waarschuw wanneer oven klaar is
description: ''
triggers:
- type: not_running
device_id: 752177bf79c6d8dc1645724bada15a97
entity_id: 618206933f9672951a2dd5238d20bcf0
domain: binary_sensor
trigger: device
conditions: []
actions:
- device_id: c0f2abd8a92c0bfad616ec4aa371901d
domain: mobile_app
type: notify
message: Oven is klaar
mode: single
- id: '1735992924117'
alias: Waarschuw wanneer wasdroger klaar is
description: ''
triggers:
- type: not_running
device_id: 2cc7d3a80ca61a3674d0508ee599438f
entity_id: 910dc20be40ff62f7483236f79461bd7
domain: binary_sensor
trigger: device
conditions: []
actions:
- device_id: c0f2abd8a92c0bfad616ec4aa371901d
domain: mobile_app
type: notify
message: Wasdroger is klaar
- delay:
hours: 1
minutes: 30
seconds: 0
mode: single
- id: '1735994952981'
alias: Bureau GJ
description: ''
triggers:
- device_id: edc737eaf70410f77edc47501e93b308
domain: zha
type: remote_button_short_press
subtype: turn_on
trigger: device
id: Aanzetten
- device_id: edc737eaf70410f77edc47501e93b308
domain: zha
type: remote_button_short_press
subtype: turn_off
trigger: device
id: Uitzetten
conditions: []
actions:
- choose:
- conditions:
- condition: trigger
id:
- Aanzetten
sequence:
- type: turn_on
device_id: 36543f490d13ca02e682f5623788a79b
entity_id: ab46a26638e7ab4314922daaada9644a
domain: switch
- conditions:
- condition: trigger
id:
- Uitzetten
sequence:
- type: turn_off
device_id: 36543f490d13ca02e682f5623788a79b
entity_id: ab46a26638e7ab4314922daaada9644a
domain: switch
mode: single
- id: '1735997408921'
alias: Waarschuw bij algemene probleem
description: ''
triggers:
- trigger: state
entity_id:
- binary_sensor.schuur_vriesprobleem
- binary_sensor.bureau_gj_overpowering
- binary_sensor.wasdroger_overpowering
- binary_sensor.serverkast_overpowering
- binary_sensor.toiletlamp_overpowering
- binary_sensor.vaatwasser_overpowering
- binary_sensor.wasmachine_overpowering
- binary_sensor.energiemeter_overpowering
- binary_sensor.badkamerverwarming_overpowering
- binary_sensor.inloopkast_koelkast_overpowering
- binary_sensor.fietsenstalling_stopcontact_overpowering
- binary_sensor.fietsenstalling_verlichting_overpowering
- binary_sensor.bureau_gj_overheating
- binary_sensor.wasdroger_overheating
- binary_sensor.serverkast_overheating
- binary_sensor.toiletlamp_overheating
- binary_sensor.vaatwasser_overheating
- binary_sensor.wasmachine_overheating
- binary_sensor.fietsenstalling_overheating
- binary_sensor.badkamerverwarming_overheating
- binary_sensor.inloopkast_koelkast_overheating
- binary_sensor.nieuw_engeland_security_status
- binary_sensor.zielhorst_beveiligingsstatus
- sensor.nieuw_engeland_drive_1_status
- sensor.zielhorst_drive_2_status
- sensor.nieuw_engeland_drive_2_status
to: 'on'
- type: moist
device_id: 4e458e050949dc393f7743185a458889
entity_id: acd2f3e0b3085c146651edad738825c9
domain: binary_sensor
trigger: device
- trigger: numeric_state
entity_id:
- sensor.schuur_thermometer_temperatuur
- sensor.zolder_thermometer_temperatuur
- sensor.badkamer_thermometer_temperatuur
- sensor.woonkamer_thermometer_temperatuur
- sensor.slaapkamer_thermometer_temperatuur
- sensor.gastenkamer_thermometer_temperatuur
above: 35
- trigger: numeric_state
entity_id:
- sensor.schuur_thermometer_temperatuur
- sensor.zolder_thermometer_temperatuur
- sensor.badkamer_thermometer_temperatuur
- sensor.woonkamer_thermometer_temperatuur
- sensor.slaapkamer_thermometer_temperatuur
- sensor.gastenkamer_thermometer_temperatuur
below: 0
conditions: []
actions:
- device_id: c0f2abd8a92c0bfad616ec4aa371901d
domain: mobile_app
type: notify
message: '{{ trigger.from_state.attributes.friendly_name }}'
- action: persistent_notification.create
metadata: {}
data:
message: '{{ trigger.from_state.attributes.friendly_name }}'
mode: single
- id: '1736006622068'
alias: Zet verwarming na drie uur uit en waarschuw
description: ''
triggers:
- trigger: state
entity_id:
- climate.badkamerverwarming
- climate.slaapkamerverwarming
- climate.zolderverwarming
to: heat
for:
hours: 3
minutes: 0
seconds: 0
conditions: []
actions:
- action: climate.turn_off
metadata: {}
data: {}
target:
entity_id: '{{ trigger.entity_id }}'
alias: Verwarming uitzetten
- device_id: c0f2abd8a92c0bfad616ec4aa371901d
domain: mobile_app
type: notify
message: '{{ message }}'
- action: notify.persistent_notification
metadata: {}
data:
message: '{{ message }}'
enabled: false
variables:
message: '{{ trigger.from_state.attributes.friendly_name }} uitgezet omdat deze
drie uur aanstaat.'
mode: single
- id: '1736080909541'
alias: Schakel apparatuur af en waarschuw bij hoog stroomverbruik
description: ''
triggers:
- trigger: numeric_state
entity_id:
- sensor.energiemeter_stroom
for:
hours: 0
minutes: 1
seconds: 0
above: sensor.stroomzekering
conditions: []
actions:
- device_id: c0f2abd8a92c0bfad616ec4aa371901d
domain: mobile_app
type: notify
message: Teveel stroomverbruik. Zet verwarmingen zacht uit.
- action: persistent_notification.create
metadata: {}
data:
message: Teveel stroomverbruik. Zet verwarmingen zacht uit.
- action: climate.turn_off
metadata: {}
data: {}
target:
floor_id:
- begane_grond
- eerste_verdieping
- zolder
- delay:
hours: 0
minutes: 0
seconds: 5
- action: switch.turn_off
metadata: {}
data: {}
target:
device_id:
- ae99c98711a5eb4ca519f4cd2aed79a2
- 1aaca9ecff74dd2e4d510ebcbb2c2d3f
- b2f73e9e6017b1b2f108badaa6973eb6
- device_id: c0f2abd8a92c0bfad616ec4aa371901d
domain: mobile_app
type: notify
message: Nog steeds teveel stroomverbruik. Verwarming hard uitzetten.
- action: persistent_notification.create
metadata: {}
data:
message: Nog steeds teveel stroomverbruik. Verwarming hard uitzetten.
- delay:
hours: 0
minutes: 0
seconds: 5
- action: switch.turn_off
metadata: {}
data: {}
target:
device_id:
- 752177bf79c6d8dc1645724bada15a97
- b28019ef58e81922c56d1e9238d4a9df
- c522f9c634231c1c375497d420f433fc
- 2cc7d3a80ca61a3674d0508ee599438f
- 7b748ddf488252dc1ed824f226b39955
- device_id: c0f2abd8a92c0bfad616ec4aa371901d
domain: mobile_app
type: notify
message: Nog steeds teveel stroomverbruik. Oven, vaatwasser, wasmachine, en wasdroger
uitgezet.
- action: persistent_notification.create
metadata: {}
data:
message: Nog steeds teveel stroomverbruik. Oven, vaatwasser, wasmachine, en
wasdroger uitgezet.
mode: single
- id: '1736080956414'