-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathautomations.yaml
4324 lines (4313 loc) · 108 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: '1605130829896'
alias: Schlafzimmer Licht Simulation und Cover CLOSE (NOT_HOME)
description: ''
trigger:
- platform: time
at: '22:00:00'
condition:
- condition: state
entity_id: group.awesome_people
state: not_home
action:
- if:
- condition: state
entity_id: group.awesome_people
state: not_home
then:
- delay:
minutes: '{{ ''%0.2d''|format(range(0, 30)|random|int) }}'
alias: Delay 0 to 30 Minutes, when Awesome People not_home
- if:
- condition: state
entity_id: group.awesome_people
state: not_home
then:
- service: light.turn_on
data: {}
target:
entity_id: light.dingz_schlafzimmer_boden_light
alias: Light Schlafzimmer On, when Awesome People not_home
- if:
- condition: state
entity_id: group.awesome_people
state: not_home
then:
- service: input_boolean.turn_on
data: {}
target:
entity_id: input_boolean.umschalter_cover
alias: Umschalter Cover On, when Awesome People not_home
- if:
- condition: state
entity_id: group.awesome_people
state: not_home
then:
- delay:
minutes: '{{ ''%0.2d''|format(range(20, 40)|random|int) }}'
alias: Delay 20 to 40 Minutes, when Awesome People not_home
- if:
- condition: state
entity_id: group.awesome_people
state: not_home
then:
- service: light.turn_off
data: {}
target:
entity_id: light.dingz_schlafzimmer_boden_light
alias: Light Schlafzimmer Off, when Awesome People not_home
mode: single
- id: '1605131875883'
alias: Schlafzimmer Szene OFF 23:30, random 1-20, not_home
description: ''
trigger:
- platform: time
at: '23:30:00'
condition:
- condition: state
entity_id: group.awesome_people
state: not_home
action:
- wait_template: '{{ ''22:''''%0.2d'''':00''|format(range(0, 20)|random|int) }}'
- type: turn_off
device_id: 0dd0ce477d4f719fd4fc8341b067bc85
entity_id: light.schlafzimmer
domain: light
- type: turn_off
device_id: 44c495113e18e26db13a2f4bdc5442a4
entity_id: light.schlafzimmer_pia
domain: light
- type: turn_off
device_id: bcf481a9e79122849c323a61b91105d9
entity_id: light.schlafzimmer_stephan
domain: light
mode: single
- id: '1605216723225'
alias: Wohnen Ambient Hue Licht ON Cover OPEN - Morgen Home
description: Schaltet das Licht ein, sobald die Kaffeemaschine läuft oder das Licht
Küchenschrank eingeschaltet wird unter der Bedingung, dass jemand zu Hause ist,
der Zeitplan Morgenstunden erfüllt und der Licht Schwellwert Garten stimmt
trigger:
- platform: state
entity_id:
- binary_sensor.schwellwertsensor_watt_wohnung_p3_grau
to: 'on'
from: 'off'
for:
hours: 0
minutes: 0
seconds: 5
- platform: state
entity_id:
- light.dingz_kuche_schrank_light
to: 'on'
from: 'off'
for:
hours: 0
minutes: 0
seconds: 5
condition:
- condition: state
entity_id: group.awesome_people
state: home
- condition: state
entity_id: schedule.zeitplan_morgenstunden
state: 'on'
- condition: state
entity_id: binary_sensor.schwellwertsensor_illumination_dark_low
state: 'on'
action:
- service: scene.turn_on
target:
entity_id: scene.hue_wohnzimmer_on_ambient
metadata: {}
- service: input_boolean.turn_off
data: {}
target:
entity_id: input_boolean.umschalter_cover
mode: single
- id: '1605216797509'
alias: Wohnen Ambient Hue Licht OFF Cover OPEN - Morgen
description: ''
trigger:
- platform: state
entity_id:
- binary_sensor.schwellwertsensor_illumination_dark_low
to: 'off'
from: 'on'
for:
hours: 0
minutes: 2
seconds: 0
condition: []
action:
- scene: scene.hue_wohnzimmer_off
- service: input_boolean.turn_off
data: {}
target:
entity_id: input_boolean.umschalter_cover
mode: single
- id: '1605247431207'
alias: Wohnen Ambient Hue Licht ON - Abend (HOME, NOT_HOME)
description: 'Schaltet das Licht ein, sobald draussen im Garten das Licht schwindet '
trigger:
- platform: state
entity_id:
- binary_sensor.schwellwertsensor_illumination_dark_low
to: 'on'
from: 'off'
for:
hours: 0
minutes: 2
seconds: 0
- platform: state
entity_id:
- group.awesome_people
to: home
from: not_home
for:
hours: 0
minutes: 2
seconds: 0
condition:
- condition: state
entity_id: binary_sensor.schwellwertsensor_illumination_dark_low
state: 'on'
action:
- if:
- condition: state
entity_id: group.awesome_people
state: home
then:
- service: scene.turn_on
target:
entity_id: scene.hue_wohnzimmer_on_ambient
metadata: {}
else:
- delay:
hours: '{{ ''%0.1d''|format(range(0, 1)|random|int) }}'
minutes: '{{ ''%0.1d''|format(range(0, 30)|random|int) }}'
seconds: 0
milliseconds: 0
- service: scene.turn_on
target:
entity_id: scene.hue_wohnzimmer_on_ambient
metadata: {}
mode: single
- id: '1605247871692'
alias: Wohnung Licht OFF (NOT_HOME)
description: ''
trigger:
- platform: time
at: '23:00:00'
condition:
- condition: state
entity_id: group.awesome_people
state: not_home
action:
- delay:
hours: 0
minutes: '{{ ''%0.2d''|format(range(0, 30)|random|int) }}'
seconds: 0
milliseconds: 0
- service: light.turn_off
target:
entity_id:
- light.gruppe_licht_dingz
- light.gruppe_licht_hue
data: {}
mode: single
- id: '1605249083791'
alias: Büro Szene ON Sunset, home
description: ''
trigger:
- platform: state
entity_id:
- binary_sensor.schwellwertsensor_illumination_dark_low
from: 'off'
to: 'on'
for:
hours: 0
minutes: 2
seconds: 0
condition:
- condition: state
entity_id: group.awesome_people
state: home
action:
- service: scene.turn_on
target:
entity_id: scene.hue_buro_on_ambient_sparmodus
metadata: {}
mode: single
- id: '1605249667376'
alias: Büro Licht Simulation (NOT_HOME)
description: ''
trigger:
- platform: state
entity_id:
- binary_sensor.schwellwertsensor_illumination_dark_low
from: 'off'
to: 'on'
for:
hours: 0
minutes: 2
seconds: 0
condition:
- condition: state
entity_id: group.awesome_people
state: not_home
action:
- repeat:
while:
- condition: and
conditions:
- condition: time
before: '23:00:00'
- condition: state
entity_id: group.awesome_people
state: not_home
alias: Bis 23:00 und not_home
sequence:
- if:
- condition: state
entity_id: group.awesome_people
state: not_home
then:
- delay:
hours: 0
minutes: '{{ ''%0.2d''|format(range(5, 40)|random|int) }}'
seconds: 0
milliseconds: 0
alias: Random Delay, wenn nicht zu Hause
- if:
- condition: state
entity_id: group.awesome_people
state: not_home
then:
- service: scene.turn_on
target:
entity_id: scene.hue_buro_on_ambient
metadata: {}
alias: Licht an, wenn nicht zu Hause (Hue)
- if:
- condition: state
entity_id: group.awesome_people
state: not_home
then:
- choose:
- conditions:
- condition: state
entity_id: light.gruppe_licht_dingz_bad
state: 'on'
sequence:
- service: light.turn_on
data: {}
target:
entity_id: light.buro_decke_stephan
- conditions:
- condition: state
entity_id: light.gruppe_licht_dingz_dusche
state: 'on'
sequence:
- service: light.turn_on
data: {}
target:
entity_id: light.buro_decke_pia
alias: Licht an, wenn nicht zu Hause (Dingz)
- if:
- condition: state
entity_id: group.awesome_people
state: not_home
then:
- delay:
hours: 0
minutes: '{{ ''%0.2d''|format(range(5, 20)|random|int) }}'
seconds: 0
milliseconds: 0
alias: Random Delay, wenn nicht zu Hause
- if:
- condition: state
entity_id: group.awesome_people
state: not_home
then:
- scene: scene.hue_buro_off
alias: Licht aus, wenn nicht zu Hause (Hue)
- if:
- condition: state
entity_id: group.awesome_people
state: not_home
then:
- service: light.turn_off
data: {}
target:
entity_id:
- light.buro_decke_pia
- light.buro_decke_stephan
alias: Licht aus, wenn nicht zu Hause (Dingz)
alias: Bis 23:00 Uhr, solange not_home
mode: single
- id: '1616048845700'
alias: Bad Licht ON (Motion)
description: ''
trigger:
- type: motion
platform: device
device_id: b1bef2906fa987ce9aa4e1fd996068bf
entity_id: binary_sensor.motion_bad_motion
domain: binary_sensor
condition:
- condition: state
entity_id: input_text.text_status_bad_licht
state: reset
action:
- choose:
- conditions:
- condition: state
entity_id: input_number.nummer_status_licht_level
state: '0.0'
sequence:
- service: light.turn_on
data:
brightness_pct: 1
target:
entity_id: light.dingz_bad_decke_wc_light
- delay:
hours: 0
minutes: 2
seconds: 0
milliseconds: 0
- conditions:
- condition: state
entity_id: input_number.nummer_status_licht_level
state: '1.0'
sequence:
- service: light.turn_on
data:
brightness_pct: 40
target:
entity_id: light.dingz_bad_decke_wc_light
- delay:
hours: 0
minutes: 5
seconds: 0
milliseconds: 0
- conditions:
- condition: state
entity_id: input_number.nummer_status_licht_level
state: '2.0'
sequence:
- service: light.turn_on
data:
brightness_pct: 60
target:
entity_id: light.dingz_bad_decke_wc_light
- delay:
hours: 0
minutes: 5
seconds: 0
milliseconds: 0
- conditions:
- condition: state
entity_id: input_number.nummer_status_licht_level
state: '3.0'
sequence:
- service: light.turn_on
data:
brightness_pct: 80
target:
entity_id: light.dingz_bad_decke_wc_light
- delay:
hours: 0
minutes: 5
seconds: 0
milliseconds: 0
default: []
- if:
- condition: state
entity_id: input_text.text_status_bad_licht
state: reset
then:
- service: light.turn_off
data: {}
target:
entity_id: light.dingz_bad_decke_wc_light
mode: restart
- id: '1616050267437'
alias: Dusche Licht ON (Motion)
description: ''
trigger:
- type: motion
platform: device
device_id: a151a8942f34d0b72bf83ecf7b1ed1a8
entity_id: binary_sensor.motion_dusche_motion
domain: binary_sensor
condition:
- condition: state
entity_id: input_text.text_status_dusche_licht
state: reset
action:
- choose:
- conditions:
- condition: state
entity_id: input_number.nummer_status_licht_level
state: '0.0'
sequence:
- service: light.turn_on
data:
brightness_pct: 1
target:
entity_id: light.dingz_dusche_decke_light
- delay:
hours: 0
minutes: 2
seconds: 0
milliseconds: 0
- conditions:
- condition: state
entity_id: input_number.nummer_status_licht_level
state: '1.0'
sequence:
- service: light.turn_on
data:
brightness_pct: 40
target:
entity_id: light.dingz_dusche_decke_light
- delay:
hours: 0
minutes: 5
seconds: 0
milliseconds: 0
- conditions:
- condition: state
entity_id: input_number.nummer_status_licht_level
state: '2.0'
sequence:
- service: light.turn_on
data:
brightness_pct: 80
target:
entity_id: light.dingz_dusche_decke_light
- delay:
hours: 0
minutes: 5
seconds: 0
milliseconds: 0
default: []
- if:
- condition: state
entity_id: input_text.text_status_dusche_licht
state: reset
then:
- service: light.turn_off
data: {}
target:
entity_id: light.dingz_dusche_decke_light
mode: restart
- id: '1616071228508'
alias: Dusche Licht OFF (keine Motion)
description: ''
trigger:
- type: no_motion
platform: device
device_id: a151a8942f34d0b72bf83ecf7b1ed1a8
entity_id: binary_sensor.motion_dusche_motion
domain: binary_sensor
for:
hours: 1
minutes: 0
seconds: 0
condition:
- condition: state
entity_id: light.gruppe_licht_dingz_dusche
state: 'on'
for:
hours: 0
minutes: 45
seconds: 0
action:
- service: light.turn_off
data: {}
target:
entity_id: light.gruppe_licht_dingz_dusche
- service: input_text.set_value
data:
value: reset
target:
entity_id: input_text.text_status_dusche_licht
mode: single
- id: '1616393998146'
alias: Gang Licht Hue Farbe (Temperatur, @Home, Aktivität)
description: 'unter -5°: violet
unter 3°: skyblue
unter 11°: green
unter 21°: yellow
unter 31°: orange
über 30°: rot'
trigger:
- platform: state
entity_id:
- sensor.mediansensor_aussentemperatur
for:
hours: 0
minutes: 2
seconds: 0
- platform: state
entity_id:
- group.awesome_people
from:
- not_home
- home
to:
- not_home
- home
for:
hours: 0
minutes: 2
seconds: 0
- platform: state
entity_id:
- input_boolean.umschalter_aktivitat
from:
- 'on'
- 'off'
to:
- 'on'
- 'off'
condition: []
action:
- choose:
- conditions:
- condition: and
conditions:
- condition: state
entity_id: group.awesome_people
state: home
- condition: state
entity_id: input_boolean.umschalter_aktivitat
state: 'on'
sequence:
- choose:
- conditions:
- condition: numeric_state
entity_id: sensor.mediansensor_aussentemperatur
below: '-5'
sequence:
- service: light.turn_on
data:
color_name: violet
brightness_pct: 15
target:
device_id: dc41bd82f147d78bd4d07285cf947d9d
- conditions:
- condition: numeric_state
entity_id: sensor.mediansensor_aussentemperatur
below: '3'
sequence:
- service: light.turn_on
data:
color_name: skyblue
brightness_pct: 15
target:
device_id: dc41bd82f147d78bd4d07285cf947d9d
- conditions:
- condition: numeric_state
entity_id: sensor.mediansensor_aussentemperatur
below: '11'
sequence:
- service: light.turn_on
data:
color_name: green
brightness_pct: 15
target:
device_id: dc41bd82f147d78bd4d07285cf947d9d
- conditions:
- condition: numeric_state
entity_id: sensor.mediansensor_aussentemperatur
below: '21'
sequence:
- service: light.turn_on
data:
color_name: yellow
brightness_pct: 15
target:
device_id: dc41bd82f147d78bd4d07285cf947d9d
- conditions:
- condition: numeric_state
entity_id: sensor.mediansensor_aussentemperatur
below: '31'
sequence:
- service: light.turn_on
data:
color_name: orange
brightness_pct: 15
target:
device_id: dc41bd82f147d78bd4d07285cf947d9d
- conditions:
- condition: numeric_state
entity_id: sensor.mediansensor_aussentemperatur
above: 30
sequence:
- service: light.turn_on
data:
color_name: red
brightness_pct: 15
target:
device_id: dc41bd82f147d78bd4d07285cf947d9d
default:
- service: notify.mobile_app_stephs_iphone
data:
message: 'Invalid Mediansensor Aussentemperatur: {{ states(''sensor.mediansensor_aussentemperatur'')
}}'
default:
- type: turn_off
device_id: dc41bd82f147d78bd4d07285cf947d9d
entity_id: light.gang
domain: light
mode: single
- id: '1616394722797'
alias: Gang Schrank Lüfter ON-OFF, abhängig Temperatur
description: ''
trigger:
- platform: state
entity_id:
- binary_sensor.schwellwertsensor_degc_lufter_schrank
from:
- 'on'
- 'off'
to:
- 'on'
- 'off'
for:
hours: 0
minutes: 2
seconds: 0
condition: []
action:
- choose:
- conditions:
- condition: state
entity_id: binary_sensor.schwellwertsensor_degc_lufter_schrank
state: 'on'
sequence:
- service: switch.turn_on
data: {}
target:
entity_id: switch.schrank_lufter
- conditions:
- condition: state
entity_id: binary_sensor.schwellwertsensor_degc_lufter_schrank
state: 'off'
sequence:
- service: switch.turn_off
data: {}
target:
entity_id: switch.schrank_lufter
default:
- service: notify.mobile_app_stephs_iphone
data:
message: Strom Lüfter Schalter - No Condition Error
mode: restart
- id: '1616394930906'
alias: Keller Entfeuchter ON, Entfeuchter OFF (Schwellwert Luftfeuchtigkeit)
description: ''
trigger:
- platform: state
entity_id:
- binary_sensor.schwellwertsensor_rfh_keller
from:
- 'on'
- 'off'
to:
- 'on'
- 'off'
for:
hours: 0
minutes: 2
seconds: 0
condition: []
action:
- choose:
- conditions:
- condition: state
entity_id: binary_sensor.schwellwertsensor_rfh_keller
state: 'on'
sequence:
- service: switch.turn_on
target:
entity_id: switch.entfeuchter
data: {}
- service: notify.mobile_app_stephs_iphone
data:
message: Keller Entfeuchter ON
- conditions:
- condition: state
entity_id: binary_sensor.schwellwertsensor_rfh_keller
state: 'off'
sequence:
- service: switch.turn_off
target:
entity_id: switch.entfeuchter
data: {}
- service: notify.mobile_app_stephs_iphone
data:
message: Keller Entfeuchter OFF
default:
- service: notify.mobile_app_stephs_iphone
data:
message: Entfeuchter Schalter - No Condition Error
mode: single
- id: '1616871141759'
alias: Bad Licht OFF (keine Motion)
description: ''
trigger:
- type: no_motion
platform: device
device_id: b1bef2906fa987ce9aa4e1fd996068bf
entity_id: binary_sensor.motion_bad_motion
domain: binary_sensor
for:
hours: 2
minutes: 0
seconds: 0
condition:
- condition: state
entity_id: light.gruppe_licht_dingz_bad
state: 'on'
for:
hours: 1
minutes: 30
seconds: 0
action:
- service: light.turn_off
target:
entity_id:
- light.gruppe_licht_dingz_bad
data: {}
- service: input_text.set_value
data:
value: reset
target:
entity_id: input_text.text_status_bad_licht
mode: single
- id: '1617084313798'
alias: Wohnung Kamera ON-OFF (home, not_home, co2, sun, power)
description: ''
trigger:
- platform: time_pattern
hours: '*'
minutes: /5
seconds: '1'
condition: []
action:
- choose:
- conditions:
- condition: state
entity_id: group.awesome_people
state: not_home
sequence:
- service: switch.turn_on
target:
entity_id:
- switch.presence
- service: script.turn_on
target:
entity_id: script.dingz_led_markise1_und_schlafzimmer_red
- conditions:
- condition: and
conditions:
- condition: numeric_state
entity_id: sun.sun
attribute: elevation
below: '0'
- condition: numeric_state
entity_id: sensor.netatmo_steffs_home_living_sleep_co2
above: '700'
- condition: numeric_state
entity_id: sensor.mystrom_hifi_center_power
below: '55'
sequence:
- service: switch.turn_on
target:
entity_id:
- switch.presence
- service: script.turn_on
target:
entity_id: script.dingz_led_markise1_und_schlafzimmer_red
- conditions:
- condition: numeric_state
entity_id: sun.sun
attribute: elevation
below: '0'
sequence:
- service: switch.turn_on
target:
entity_id:
- switch.presence
- service: script.turn_on
target:
entity_id: script.dingz_led_markise1_und_schlafzimmer_violett
default:
- service: switch.turn_off
target:
entity_id:
- switch.presence
- service: script.turn_on
target:
entity_id: script.dingz_led_markise1_und_schlafzimmer_grun
mode: single
- id: '1617126118364'
alias: Schlafzimmer Hue Light Ambient Webhook
description: ''
trigger:
- platform: webhook
allowed_methods:
- PUT
webhook_id: schlafzimmer_light_on_ambient
condition: []
action:
- scene: scene.hue_schlafzimmer_on_ambient
mode: single
- id: '1617126303592'
alias: Schlafzimmer Hue Light Bright Webhook
description: ''
trigger:
- platform: webhook
allowed_methods:
- PUT
webhook_id: schlafzimmer_light_on_bright
local_only: true
condition: []
action:
- scene: scene.hue_schlafzimmer_on_bright
mode: single
- id: '1617126330007'
alias: Schlafzimmer Hue Light OFF Webhook
description: ''
trigger:
- platform: webhook
allowed_methods:
- PUT
webhook_id: schlafzimmer_light_off
condition: []
action:
- scene: scene.hue_schlafzimmer_off
mode: single
- id: '1617131412607'
alias: Wohnung Light OFF Webhook
description: ''
trigger:
- platform: webhook
allowed_methods:
- PUT
webhook_id: wohnung_light_off
condition: []
action:
- service: light.turn_off
data: {}
target:
entity_id:
- light.gruppe_licht_dingz
- light.gruppe_licht_hue
mode: single
- id: '1617132794904'
alias: Wohnung Light PANIK Webhook
description: ''
trigger:
- platform: webhook
allowed_methods:
- PUT
webhook_id: wohnung_light_panik
condition: []
action:
- service: light.turn_on
data:
brightness_step_pct: 100
target:
entity_id:
- light.gruppe_licht_dingz
- light.gruppe_licht_hue
mode: single
- id: '1617386935918'
alias: Büro Stephan Light Toggle Webhook
description: ''
trigger:
- platform: webhook
allowed_methods:
- PUT
webhook_id: buro_stephan_light_toggle
condition: []
action:
- service: light.toggle
data:
color_temp: 313
brightness_pct: 50
target:
device_id: 5db4bf233bea079061c66ad5776109a5
mode: restart
- id: '1617387798636'
alias: Büro Pia Light Toggle Webhook
description: ''
trigger:
- platform: webhook
allowed_methods:
- PUT
webhook_id: buro_pia_light_toggle
condition: []
action:
- service: light.toggle
data:
color_temp: 313
brightness_pct: 50
target:
device_id:
- 0585e667614c337721ad24abad0f2d30
mode: restart
- id: '1617387827027'
alias: Büro Pia Light On Full Webhook
description: ''
trigger:
- platform: webhook
allowed_methods:
- PUT
webhook_id: buro_pia_light_on_full
condition: []
action:
- service: light.turn_on
data:
color_temp: 313
brightness_pct: 100
target:
device_id:
- 0585e667614c337721ad24abad0f2d30
mode: restart
- id: '1617387856078'
alias: Büro Stephan Light On Full Webhook
description: ''
trigger:
- platform: webhook
allowed_methods:
- PUT
webhook_id: buro_stephan_light_on_full
condition: []
action:
- service: light.turn_on
data:
color_temp: 313