-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathautomations.yaml
1479 lines (1479 loc) · 37.8 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: '1603288570136'
alias: 'plafonlamp aan '
description: ''
trigger:
- platform: state
entity_id: binary_sensor.deur_sensor_jarne
from: 'off'
to: 'on'
condition:
- condition: time
before: '23:00:00'
after: 06:00:00
action:
- type: turn_on
device_id: 46a678b089a2fc308e25a99b2dd9e88f
entity_id: light.philips_plafonlamp_1_2
domain: light
brightness_pct: 100
- type: turn_on
device_id: 87da323c661908efcd53f7d2e021825c
entity_id: light.philips_plafonlamp_2_1
domain: light
brightness_pct: 100
mode: single
- id: '1603293802147'
alias: plafonlamp uit
description: ''
trigger:
- platform: state
entity_id: binary_sensor.deur_sensor_jarne
from: 'on'
to: 'off'
condition: []
action:
- type: turn_off
device_id: 46a678b089a2fc308e25a99b2dd9e88f
entity_id: light.philips_plafonlamp_1_2
domain: light
- type: turn_off
device_id: 87da323c661908efcd53f7d2e021825c
entity_id: light.philips_plafonlamp_2_1
domain: light
mode: single
- id: '1603296391273'
alias: deur open
description: ''
trigger:
- platform: state
entity_id: binary_sensor.deur_sensor_jarne
from: 'off'
to: 'on'
condition: []
action:
- service: notify.mobile_app_iphone_van_jarne
data:
title: deursensor
message: ' deur is open '
mode: single
- id: '1603296439099'
alias: deur gesloten
description: ''
trigger:
- platform: state
entity_id: binary_sensor.deur_sensor_jarne
from: 'on'
to: 'off'
condition: []
action:
- service: notify.mobile_app_iphone_van_jarne
data:
title: deursensor
message: ' deur is gesloten '
mode: single
- id: '1603296540285'
alias: rolluik jarne open
description: ''
trigger:
- platform: numeric_state
entity_id: cover.jarne
attribute: current_position
above: '98'
condition: []
action:
- service: notify.mobile_app_iphone_van_jarne
data:
title: rolluik
message: ' rolluik jarne is open '
mode: single
- id: '1603296565112'
alias: rolluik jarne gesloten
description: ''
trigger:
- platform: numeric_state
entity_id: cover.jarne
attribute: current_position
below: '2'
condition: []
action:
- service: notify.mobile_app_iphone_van_jarne
data:
title: rolluik
message: ' rolluik jarne is gesloten '
mode: single
- id: '1603303461733'
alias: rolluik jathe open
description: ''
trigger:
- platform: numeric_state
entity_id: cover.jathe
attribute: current_position
above: '98'
condition: []
action:
- service: notify.family
data:
title: rolluik
message: ' rolluik-Jathe-open '
mode: single
- id: '1603303585747'
alias: rolluik jathe gesloten
description: ''
trigger:
- platform: numeric_state
entity_id: cover.jathe
attribute: current_position
below: '2'
condition: []
action:
- service: notify.family
data:
title: rolluik
message: ' rolluik-Jathe-gesloten '
mode: single
- id: '1603303688540'
alias: rolluik-frank-rechts-open
description: ''
trigger:
- platform: numeric_state
entity_id: cover.frank_rechts
attribute: current_position
above: '98'
condition: []
action:
- service: notify.family
data:
title: rolluik
message: ' rolluik-frank-rechts-open '
mode: single
- id: '1603310903245'
alias: rolluik-frank-rechts-gesloten
description: ''
trigger:
- platform: numeric_state
entity_id: cover.frank_rechts
attribute: current_position
below: '2'
condition: []
action:
- service: notify.family
data:
title: rolluik
message: ' rolluik-frank-rechts-gesloten '
mode: single
- id: '1603310973069'
alias: 'rolluik-frank-links-gesloten '
description: ''
trigger:
- platform: numeric_state
entity_id: cover.frank_links
attribute: current_position
below: '2'
condition: []
action:
- service: notify.family
data:
title: rolluik
message: ' rolluik-frank-links-gesloten '
mode: single
- id: '1603311006828'
alias: rolluik-frank-links-open
description: ''
trigger:
- platform: numeric_state
entity_id: cover.frank_links
attribute: current_position
above: '98'
condition: []
action:
- service: notify.family
data:
title: rolluik
message: ' rolluik-frank-links-open '
mode: single
- id: '1603314664042'
alias: afval morgen
description: ''
trigger:
- platform: time
at: '15:00:00'
condition:
- condition: not
conditions:
- condition: state
entity_id: sensor.limburg_net_morgen
state: geen
action:
- service: notify.family
data:
title: Morgen is een afvaldag
message: 'Opgehaalde afval: {{ states.sensor.limburg_net_morgen.state }}'
mode: single
- id: '1603314921794'
alias: afval vandaag
description: ''
trigger:
- platform: time
at: 06:00:00
condition:
- condition: not
conditions:
- condition: state
entity_id: sensor.limburg_net_vandaag
state: geen
action:
- service: notify.family
data:
title: vandaag is een afvaldag
message: 'Opgehaalde afval: {{ states.sensor.limburg_net_vandaag.state }}'
mode: single
- id: '1603371415663'
alias: jarne thuis
description: ''
trigger:
- platform: state
entity_id: input_boolean.jarne_thuis
from: 'off'
to: 'on'
condition: []
action:
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.jarne_weg
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.jarne_goedemorgen
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.jarne_slaap
- type: turn_on
device_id: bee6b51c279ff9b18e547132f3c156b3
entity_id: light.wled_ledring_ikea
domain: light
brightness_pct: 100
- type: turn_on
device_id: dd2bf8bdd518ba93bfdaaaedbaf60aae
entity_id: light.wled_ledring
domain: light
brightness_pct: 50
- type: turn_on
device_id: d138bef4d17bb4bf1c3bbfd1c80ec220
entity_id: light.wled_ledstrip_sonos_beam
domain: light
brightness_pct: 100
- type: turn_on
device_id: f2a1d3726d13888b4178f9b1bd4c2374
entity_id: light.wled_ledstring_jarne
domain: light
brightness_pct: 100
- type: turn_on
device_id: d823987ed3c45386f3520b94cbf68ec4
entity_id: light.wled_ledstrip_tafel
domain: light
brightness_pct: 50
- type: turn_on
device_id: d012ada9d8c116d81e9a8564b77a56dc
entity_id: light.wled_ledstrip_kast
domain: light
brightness_pct: 20
- type: turn_on
device_id: 5e9868903f51397f6028201b3a48528f
entity_id: light.wled_paneel_tafel
domain: light
brightness_pct: 7
- type: turn_on
device_id: ddf323d29ac75ee88ecdae0abd3779eb
entity_id: switch.led_muismad_1
domain: switch
- type: turn_on
device_id: bcfea0a47689dc222df746ff485dedb4
entity_id: switch.ledjes_kast_nachtkast_1
domain: switch
- type: turn_on
device_id: c43d77ad3d76d4c9ad8db9122ad54c5a
entity_id: switch.ledjes_nachtkast_kast_1
domain: switch
- type: turn_on
device_id: 6c12e4b4c2c61a7e8b53541005c62d32
entity_id: light.philips_lamp_kast_1
domain: light
brightness_pct: 100
- type: turn_on
device_id: ad821a4d39176c14902837ad46897ca5
entity_id: light.philips_lamp_nachtkast_1
domain: light
brightness_pct: 50
- type: turn_on
device_id: 37cf10e575ee9eef9a7a8953237e42d8
entity_id: light.philips_ledstrip_plank_1
domain: light
brightness_pct: 50
- type: turn_on
device_id: 7c35241a4afbdc5635c0601de8ca8c72
entity_id: light.philips_ledstrip_kast_1
domain: light
brightness_pct: 100
- type: turn_on
device_id: 79f7b1f5a437edc79127e60531a2d33b
entity_id: light.philips_ledstrip_deur_1
domain: light
brightness_pct: 100
- type: turn_on
device_id: 0112b068beb18f2dc9fee524ddf18a47
entity_id: light.lidl_light_bar_1_2
domain: light
brightness_pct: 100
- type: turn_on
device_id: 60e7d7bedd675c418b80063aea7510a9
entity_id: light.lidl_light_bar_2_2
domain: light
brightness_pct: 100
- service: notify.mobile_app_iphone_van_jarne
data:
title: jarne thuis
message: ' Welkom Thuis & Fijn Dag Verder '
mode: single
- id: '1603371635097'
alias: 'jarne weg '
description: ''
trigger:
- platform: state
entity_id: input_boolean.jarne_weg
from: 'off'
to: 'on'
condition: []
action:
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.jarne_thuis
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.jarne_slaap
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.jarne_goedemorgen
- type: turn_off
device_id: ddf323d29ac75ee88ecdae0abd3779eb
entity_id: switch.led_muismad_1
domain: switch
- type: turn_off
device_id: bcfea0a47689dc222df746ff485dedb4
entity_id: switch.ledjes_kast_nachtkast_1
domain: switch
- type: turn_off
device_id: c43d77ad3d76d4c9ad8db9122ad54c5a
entity_id: switch.ledjes_nachtkast_kast_1
domain: switch
- type: turn_off
device_id: 6c12e4b4c2c61a7e8b53541005c62d32
entity_id: light.philips_lamp_kast_1
domain: light
- type: turn_off
device_id: ad821a4d39176c14902837ad46897ca5
entity_id: light.philips_lamp_nachtkast_1
domain: light
- type: turn_off
device_id: 7c35241a4afbdc5635c0601de8ca8c72
entity_id: light.philips_ledstrip_kast_1
domain: light
- type: turn_off
device_id: 79f7b1f5a437edc79127e60531a2d33b
entity_id: light.philips_ledstrip_deur_1
domain: light
- type: turn_off
device_id: 37cf10e575ee9eef9a7a8953237e42d8
entity_id: light.philips_ledstrip_plank_1
domain: light
- type: turn_off
device_id: dd2bf8bdd518ba93bfdaaaedbaf60aae
entity_id: light.wled_ledring
domain: light
- type: turn_off
device_id: d138bef4d17bb4bf1c3bbfd1c80ec220
entity_id: light.wled_ledstrip_sonos_beam
domain: light
- type: turn_off
device_id: d823987ed3c45386f3520b94cbf68ec4
entity_id: light.wled_ledstrip_tafel
domain: light
- type: turn_off
device_id: f2a1d3726d13888b4178f9b1bd4c2374
entity_id: light.wled_ledstring_jarne
domain: light
- type: turn_off
device_id: d012ada9d8c116d81e9a8564b77a56dc
entity_id: light.wled_ledstrip_kast
domain: light
- type: turn_off
device_id: 5e9868903f51397f6028201b3a48528f
entity_id: light.wled_paneel_tafel
domain: light
- type: turn_off
device_id: 0112b068beb18f2dc9fee524ddf18a47
entity_id: light.lidl_light_bar_1_2
domain: light
- type: turn_off
device_id: 60e7d7bedd675c418b80063aea7510a9
entity_id: light.lidl_light_bar_2_2
domain: light
- service: media_player.media_pause
data: {}
entity_id: media_player.sonos_beam
- service: media_player.media_pause
data: {}
entity_id: media_player.sonos_ra
- service: notify.mobile_app_iphone_van_jarne
data:
title: jarne weg
message: Fijn Dag & Tot Straks
mode: single
- id: '1603371778206'
alias: 'jarne slaap '
description: ''
trigger:
- platform: state
entity_id: input_boolean.jarne_slaap
from: 'off'
to: 'on'
condition: []
action:
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.jarne_thuis
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.jarne_weg
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.jarne_goedemorgen
- type: turn_off
device_id: ddf323d29ac75ee88ecdae0abd3779eb
entity_id: switch.led_muismad_1
domain: switch
- type: turn_off
device_id: bcfea0a47689dc222df746ff485dedb4
entity_id: switch.ledjes_kast_nachtkast_1
domain: switch
- type: turn_off
device_id: c43d77ad3d76d4c9ad8db9122ad54c5a
entity_id: switch.ledjes_nachtkast_kast_1
domain: switch
- type: turn_off
device_id: 6c12e4b4c2c61a7e8b53541005c62d32
entity_id: light.philips_lamp_kast_1
domain: light
- type: turn_off
device_id: ad821a4d39176c14902837ad46897ca5
entity_id: light.philips_lamp_nachtkast_1
domain: light
- type: turn_off
device_id: 79f7b1f5a437edc79127e60531a2d33b
entity_id: light.philips_ledstrip_deur_1
domain: light
- type: turn_off
device_id: 7c35241a4afbdc5635c0601de8ca8c72
entity_id: light.philips_ledstrip_kast_1
domain: light
- type: turn_off
device_id: 37cf10e575ee9eef9a7a8953237e42d8
entity_id: light.philips_ledstrip_plank_1
domain: light
- type: turn_off
device_id: dd2bf8bdd518ba93bfdaaaedbaf60aae
entity_id: light.wled_ledring
domain: light
- type: turn_off
device_id: d138bef4d17bb4bf1c3bbfd1c80ec220
entity_id: light.wled_ledstrip_sonos_beam
domain: light
- type: turn_off
device_id: d823987ed3c45386f3520b94cbf68ec4
entity_id: light.wled_ledstrip_tafel
domain: light
- type: turn_off
device_id: f2a1d3726d13888b4178f9b1bd4c2374
entity_id: light.wled_ledstring_jarne
domain: light
- type: turn_off
device_id: d012ada9d8c116d81e9a8564b77a56dc
entity_id: light.wled_ledstrip_kast
domain: light
- type: turn_off
device_id: 5e9868903f51397f6028201b3a48528f
entity_id: light.wled_paneel_tafel
domain: light
- type: turn_off
device_id: 0112b068beb18f2dc9fee524ddf18a47
entity_id: light.lidl_light_bar_1_2
domain: light
- type: turn_off
device_id: 60e7d7bedd675c418b80063aea7510a9
entity_id: light.lidl_light_bar_2_2
domain: light
- service: notify.mobile_app_iphone_van_jarne
data:
title: jarne slaap
message: ' Slaapwel & Zet Een Wekker '
mode: single
- id: '1603371897266'
alias: jarne goedemorgen
description: ''
trigger:
- platform: state
entity_id: input_boolean.jarne_goedemorgen
from: 'off'
to: 'on'
condition: []
action:
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.jarne_thuis
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.jarne_weg
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.jarne_slaap
- type: turn_on
device_id: e75312b5133411ebb22e2d048bd1a10c
entity_id: light.ledstrip_kast
domain: light
brightness_pct: 50
- type: turn_on
device_id: 637c1fea133411ebb37df515f3b27bf7
entity_id: light.ledstrip_plank
domain: light
brightness_pct: 50
- type: turn_on
device_id: cc9377e9133411eba3f495f864615ea1
entity_id: light.ledstrip_deur
domain: light
brightness_pct: 50
- type: turn_on
device_id: a975b9d6133411eb996e07cef5936326
entity_id: light.kast_lamp
domain: light
brightness_pct: 50
- type: turn_on
device_id: 4c37991e133411ebb3f6c9333eee2829
entity_id: light.nachtkast
domain: light
brightness_pct: 50
- service: notify.mobile_app_iphone_van_jarne
data:
title: jarne goedemorgen
message: goedemorgen een fijn dag
mode: single
- id: '1603577874528'
alias: afval vandaag 20 uur
description: ''
trigger:
- platform: time
at: '20:00:00'
condition:
- condition: not
conditions:
- condition: state
entity_id: sensor.limburg_net_vandaag
state: geen
action:
- service: notify.family
data:
title: vandaag is een afvaldag
message: ' vergeet de afval niet buiten te zetten: {{ states.sensor.limburg_net_morgen.state
}}'
mode: single
- id: '1604859577414'
alias: 'input_boleaan hue sync box hdmi 1 '
description: ''
trigger:
- platform: state
entity_id: input_boolean.apple_tv
from: 'off'
to: 'on'
condition: []
action:
- service: hue_sync_box.set_hdmi_input
data:
entity_id: remote.hue_sync_box
hdmi_input: 1
entity_id: remote.hue_sync_box
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.telenet_box
mode: single
- id: '1604859899831'
alias: 'input_boolean hue sync box hdmi 2 '
description: ''
trigger:
- platform: state
entity_id: input_boolean.telenet_box
from: 'off'
to: 'on'
condition: []
action:
- service: hue_sync_box.set_hdmi_input
data:
entity_id: remote.hue_sync_box
hdmi_input: 2
entity_id: remote.hue_sync_box
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.apple_tv
mode: single
- id: '1604860766240'
alias: input_boolean hue sync box on
description: ''
trigger:
- platform: state
entity_id: input_boolean.hue_sync_box_aan
from: 'off'
to: 'on'
condition: []
action:
- service: remote.turn_on
data:
entity_id: remote.hue_sync_box
entity_id: remote.hue_sync_box
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.hue_sync_box_uit
mode: single
- id: '1604861492425'
alias: 'input-boolean hue sync box off '
description: ''
trigger:
- platform: state
entity_id: input_boolean.hue_sync_box_uit
from: 'off'
to: 'on'
condition: []
action:
- service: remote.turn_off
data:
entity_id: remote.hue_sync_box
entity_id: remote.hue_sync_box
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.hue_sync_box_aan
mode: single
- id: '1604859577414'
alias: 'input_boleaan hue sync box hdmi 1 '
description: ''
trigger:
- platform: state
entity_id: input_boolean.apple_tv
from: 'off'
to: 'on'
condition: []
action:
- service: hue_sync_box.set_hdmi_input
data:
entity_id: remote.hue_sync_box
hdmi_input: 1
entity_id: remote.hue_sync_box
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.telenet_box
mode: single
- id: '1604859899831'
alias: 'input_boolean hue sync box hdmi 2 '
description: ''
trigger:
- platform: state
entity_id: input_boolean.telenet_box
from: 'off'
to: 'on'
condition: []
action:
- service: hue_sync_box.set_hdmi_input
data:
entity_id: remote.hue_sync_box
hdmi_input: 2
entity_id: remote.hue_sync_box
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.apple_tv
mode: single
- id: '1604860766240'
alias: input_boolean hue sync box on
description: ''
trigger:
- platform: state
entity_id: input_boolean.hue_sync_box_aan
from: 'off'
to: 'on'
condition: []
action:
- service: remote.turn_on
data:
entity_id: remote.hue_sync_box
entity_id: remote.hue_sync_box
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.hue_sync_box_uit
mode: single
- id: '1604861492425'
alias: 'input-boolean hue sync box off '
description: ''
trigger:
- platform: state
entity_id: input_boolean.hue_sync_box_uit
from: 'off'
to: 'on'
condition: []
action:
- service: remote.turn_off
data:
entity_id: remote.hue_sync_box
entity_id: remote.hue_sync_box
- service: input_boolean.turn_off
data: {}
entity_id: input_boolean.hue_sync_box_aan
mode: single
- id: '1604934986125'
alias: select plafonlamp
description: ''
trigger:
- platform: state
entity_id: input_select.lampen
condition: []
action:
- choose:
- conditions:
- condition: state
entity_id: input_select.lampen
state: hue centris spot 1
sequence:
- type: toggle
device_id: cd7694ee13a411eb865a49cfdaaf4ea8
entity_id: light.plafonlamp_1_level_light_color_on_off
domain: light
- conditions:
- condition: state
entity_id: input_select.lampen
state: hue centris spot 2
sequence:
- type: toggle
device_id: e26e9e5113a411ebae3469d471dc58c1
entity_id: light.plafonlamp_2_level_light_color_on_off
domain: light
default: []
mode: single
- id: '1606076351690'
alias: WLED Effect
description: Calls the WLED Effect Script when inputs are changed
trigger:
- platform: state
entity_id: input_select.wled_effect
from: 'off'
to: 'on'
- platform: state
entity_id: input_number.wled_intensity
from: 'off'
to: 'on'
- platform: state
entity_id: input_select.wled_palette
from: 'off'
to: 'on'
- platform: state
entity_id: input_number.wled_speed
from: 'off'
to: 'on'
- platform: state
entity_id: input_boolean.wled_reverse
from: 'off'
to: 'on'
condition: []
action:
- service: script.turn_on
entity_id: script.set_wled_effect
mode: single
- id: '1606259624743'
alias: sonos group on automatis
description: ''
trigger:
- platform: state
entity_id: media_player.slaapkamer_tv
from: 'off'
to: 'on'
condition:
- condition: time
weekday:
- tue
- wed
- thu
- fri
- condition: state
entity_id: media_player.slaapkamer_tv
state: 'on'
action:
- service: sonos.join
data:
master: media_player.sonos_beam
entity_id: media_player.sonos_ra
- service: input_boolean.turn_on
data:
entity_id: input_boolean.sonos_group_on
- service: input_boolean.turn_off
data:
entity_id: input_boolean.sonos_group_off
mode: single
- id: '1606650122459'
alias: elecktrisdeken papa
description: ''
trigger:
- platform: time
at: 06:15:00
condition:
- condition: time
weekday:
- tue
- wed
- thu
- fri
- sat
action:
- service: switch.turn_on
data: {}
target:
entity_id: switch.elektrische_deken_papa_1
- delay: 01:30:00
- service: switch.turn_off
data: {}
target:
entity_id: switch.elektrische_deken_papa_1
mode: single
- id: '1606662904890'
alias: rolluik open plafonlamp uit
description: ''
trigger:
- platform: state
entity_id: binary_sensor.deur_sensor_jarne
to: 'on'
from: 'off'
condition:
- condition: numeric_state
entity_id: cover.jarne
attribute: current_position
above: '99'
action:
- service: light.turn_off
data: {}
target:
entity_id: light.philips_plafonlamp_1_2
- service: light.turn_off
data: {}
target:
entity_id: light.philips_plafonlamp_2_1
mode: single
- id: '1606665385067'
alias: rolluik gesloten plafonlamp aan
description: ''
trigger:
- platform: state
entity_id: binary_sensor.deur_sensor_jarne
to: 'on'
from: 'off'
condition:
- condition: numeric_state
entity_id: cover.jarne
attribute: current_position
below: '98'
- condition: time
before: '23:00:00'
after: 06:00:00
- condition: state
entity_id: input_boolean.jarne_thuis
state: 'on'
action:
- type: turn_on
device_id: 46a678b089a2fc308e25a99b2dd9e88f
entity_id: light.philips_plafonlamp_1_2
domain: light
brightness_pct: 100
- type: turn_on
device_id: 87da323c661908efcd53f7d2e021825c
entity_id: light.philips_plafonlamp_2_1
domain: light
brightness_pct: 100
mode: single
- id: '1606667249247'
alias: rolluiken zonsondergang
description: rolluiken
trigger:
- platform: numeric_state
entity_id: sun.sun
attribute: elevation
below: '-6'
condition: []
action:
- service: cover.close_cover
entity_id: cover.jarne
- service: cover.close_cover
entity_id: cover.jathe
- service: cover.close_cover
entity_id: cover.frank_links
- service: cover.close_cover
entity_id: cover.frank_rechts
mode: single
- id: '1607613308774'
alias: 'kersteled buiten zonsondergang '
description: kersteled
trigger:
- platform: numeric_state
entity_id: sun.sun
attribute: elevation
below: '-6'
condition: []
action:
- service: light.turn_on
entity_id: light.wled_kersteled_buiten
data:
entity_id: light.wled_kersteled_buiten
brightness: 255
mode: single
- id: '1607613533352'
alias: kersteled-buiten-uit
description: kersteled
trigger:
- platform: time
at: 01:00:00
condition: []
action:
- service: light.turn_off
data: {}
entity_id: light.wled_kersteled_buiten
mode: single
- id: '1607874309815'
alias: kersteled-buiten-aan
description: kersteled
trigger:
- platform: time
at: '16:20:00'
condition: []
action:
- service: light.turn_on
data:
brightness: 255
entity_id: light.wled_kersteled_buiten
mode: single
- id: '1607902670950'
alias: stuur jarne een bericht wanneer home
description: zone
use_blueprint:
path: homeassistant/notify_entering_zone.yaml
input:
person_entity: person.jarne
zone_entity: zone.home
notify_device: 4a0c930f13b211eb854471831a829f45
- id: '1607902736989'
alias: stuur jarne een bericht wanneer weggaat
description: zone
use_blueprint:
path: homeassistant/notify_leaving_zone.yaml
input:
person_entity: person.jarne
zone_entity: zone.home
notify_device: 4a0c930f13b211eb854471831a829f45
- id: '1607902822718'
alias: Philips Hue Remote Deur
description: Remote Deur
use_blueprint:
path: homeassistant/Deconz-Philips-Hue-Dimmer-Switch-(RWL021).yaml
input:
remote: bce08e651fcb79cf308fa8aad0884ed0
light:
entity_id:
- light.philips_plafonlamp_1_2
- light.philips_plafonlamp_2_1
- id: '1608122920887'
alias: Home Assistant update notification
description: ''
use_blueprint:
path: homeassistant/Home_Assistant_update_notification.yaml
input:
delay: '0'
updater: binary_sensor.updater
notification_title: update time
notification_message: nieuw versie installeren
notify_device: 4a0c930f13b211eb854471831a829f45