-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautomations.yaml
1296 lines (1296 loc) · 30.7 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: '1610996669564'
alias: Theater - lights on when paused
description: Turn on Ambient light on Pause
triggers:
- device_id: f104aca2ebb47d0afcc0396bb91c96dc
domain: media_player
entity_id: media_player.theater_shield
type: paused
for:
hours: 0
minutes: 0
seconds: 5
trigger: device
conditions: []
actions:
- type: turn_on
device_id: bfd4dcbabb0838d80a8f17f7110a7cc8
entity_id: be6fb1cc4048fd5d48908e76fb4f7e18
domain: switch
mode: single
- id: '1610996991686'
alias: Theater - lights off on play
description: Turn off lights when Media begins to play
triggers:
- entity_id:
- media_player.theater_shield
to: playing
for:
hours: 0
minutes: 0
seconds: 5
trigger: state
conditions: []
actions:
- action: light.turn_off
metadata: {}
data:
transition: 4
target:
entity_id:
- light.ambient_light_ha
- light.theater_light_ha
mode: single
- id: '1611024383994'
alias: Plex - lights up on stop or idle
description: Bring lights up to 100% when media is stopped
triggers:
- device_id: 5beead3aa8c678121ae6b9815ecd92d5
domain: media_player
entity_id: media_player.plex_theater_2
type: idle
for:
hours: 0
minutes: 0
seconds: 15
trigger: device
- device_id: 5beead3aa8c678121ae6b9815ecd92d5
domain: media_player
entity_id: media_player.plex_theater_2
type: turned_off
trigger: device
conditions:
- condition: time
before: 01:30:00
after: '18:00:00'
weekday:
- mon
- tue
- wed
- thu
- fri
- sat
- sun
actions:
- action: light.turn_on
metadata: {}
data:
transition: 5
brightness_pct: 100
target:
entity_id: light.theater_light_ha
mode: single
- id: '1612398301259'
alias: Theater - lights on when idle
description: Turn house light on when done
triggers:
- device_id: f104aca2ebb47d0afcc0396bb91c96dc
domain: media_player
entity_id: media_player.theater_shield
type: idle
for:
hours: 0
minutes: 2
seconds: 0
trigger: device
conditions:
- condition: not
conditions:
- condition: device
device_id: f104aca2ebb47d0afcc0396bb91c96dc
domain: media_player
entity_id: 35ea0c9b1c2d0f61c6e23d5b5c6775ba
type: is_paused
actions:
- action: light.turn_on
metadata: {}
data:
brightness_pct: 100
transition: 4
target:
entity_id: light.theater_light_ha
mode: single
- id: '1613889538573'
alias: 'House - Lights: Night'
description: ''
triggers:
- at: '23:00:00'
trigger: time
conditions: []
actions:
- data:
group_name: master
scene_name: nightlight
dynamic: true
action: hue.hue_activate_scene
- data: {}
target:
entity_id:
- switch.pool_house
- switch.grill_lights_zwave
- switch.flood_lights
action: switch.turn_off
- action: switch.turn_off
metadata: {}
data: {}
target:
entity_id:
- switch.house_soffits
- switch.garage_soffits
- switch.front_door_soffit
- switch.side_porch_soffit
mode: single
- id: '1618778013049'
alias: Plex - lights off on play
description: ''
triggers:
- device_id: 5beead3aa8c678121ae6b9815ecd92d5
domain: media_player
entity_id: media_player.plex_theater_2
type: playing
trigger: device
conditions: []
actions:
- action: light.turn_off
metadata: {}
data:
transition: 8
target:
entity_id:
- light.ambient_light_ha
- light.theater_light_ha
mode: single
- id: '1618778083115'
alias: Plex - ambient light on pause
description: ''
triggers:
- device_id: 5beead3aa8c678121ae6b9815ecd92d5
domain: media_player
entity_id: media_player.plex_theater_2
type: paused
for:
hours: 0
minutes: 0
seconds: 5
trigger: device
conditions:
- condition: device
type: is_off
device_id: e2f2c4cb8b2949446b328e959ee2bd46
entity_id: 57f822b987bae834e47077d592309bd7
domain: light
actions:
- type: turn_on
device_id: bfd4dcbabb0838d80a8f17f7110a7cc8
entity_id: be6fb1cc4048fd5d48908e76fb4f7e18
domain: switch
mode: single
- id: '1638197847338'
alias: House - turn on armstrong and getty
description: ''
trigger:
- platform: time
at: 07:45:00
- platform: state
entity_id:
- input_boolean.armstrong_and_getty
from: 'off'
to: 'on'
condition:
- condition: time
weekday:
- mon
- tue
- wed
- thu
- fri
after: 07:30:00
before: '11:30:00'
action:
- service: media_player.turn_on
data: {}
target:
entity_id: media_player.family_musiccast_2
- service: media_player.select_source
data:
source: net_radio
target:
entity_id: media_player.family_musiccast_2
- service: media_player.volume_set
target:
entity_id: media_player.family_musiccast_2
data:
volume_level: 0.4
- delay:
hours: 3
minutes: 20
seconds: 0
milliseconds: 0
- service: media_player.turn_off
target:
entity_id:
- media_player.family_musiccast_2
- media_player.office_musiccast_2
- media_player.master_musiccast
data: {}
mode: single
- id: '1638932536437'
alias: Security - someones in the family room
description: ''
triggers:
- type: occupied
device_id: 3ce104022ae83294d3c1b605541a706f
entity_id: binary_sensor.family_room_occupancy
domain: binary_sensor
for:
hours: 0
minutes: 0
seconds: 10
milliseconds: 0
trigger: device
conditions:
- condition: time
after: 02:00:00
before: 05:00:00
actions:
- data:
message: someone is in the family room
title: motion alert
action: notify.mobile_app_todd_s_phone
- data:
entity_id: media_player.master_bedroom
message: 'Alert: someone is in the family room.'
action: tts.google_translate_say
mode: single
- id: '1641957528180'
alias: Theater - set movie time
description: change comfort settings in theater
trigger:
- platform: state
entity_id: binary_sensor.theater_occupancy
to: 'true'
for:
hours: 0
minutes: 10
seconds: 0
- platform: device
device_id: f104aca2ebb47d0afcc0396bb91c96dc
domain: media_player
entity_id: media_player.theater_shield
type: turned_on
for:
hours: 0
minutes: 10
seconds: 0
condition: []
action:
- device_id: 3c651db377fa9c0ff6b396b54307110f
domain: climate
entity_id: climate.game_room
type: set_preset_mode
preset_mode: Movie Time
mode: single
- id: '1646595088666'
alias: 'House - Lights: Dusk'
description: ''
triggers:
- event: sunset
offset: -00:20:00
trigger: sun
- type: value
device_id: 3d2ac56754c2c52b767f2fde4b9bdf66
entity_id: 987b2b725fded5071ab5cf90f432408d
domain: sensor
trigger: device
below: 65
for:
hours: 0
minutes: 0
seconds: 10
conditions:
- condition: time
after: '11:00:00'
before: '21:00:00'
weekday:
- sat
- fri
- thu
- wed
- tue
- mon
- sun
actions:
- action: switch.turn_on
metadata: {}
data: {}
target:
entity_id:
- switch.porch_light
- switch.side_porch_light
- switch.grill_lights_zwave
- action: switch.turn_on
metadata: {}
data: {}
target:
entity_id:
- switch.house_soffits
- switch.garage_soffits
- switch.front_door_soffit
- switch.side_porch_soffit
- action: script.turn_on
metadata: {}
data: {}
target:
entity_id: script.turn_on_landscape_lights
- action: switch.turn_on
metadata: {}
data: {}
target:
entity_id: switch.office_cabinet_power_strip_1
- action: script.turn_on_xmas_lights
metadata: {}
data: {}
enabled: false
mode: single
- id: '1646610415005'
alias: 'House - Lights: Sunrise'
description: ''
triggers:
- event: sunrise
trigger: sun
conditions: []
actions:
- action: switch.turn_off
metadata: {}
data: {}
target:
entity_id:
- switch.porch_light
- switch.side_porch_light
- action: script.turn_off_landscape_lights
metadata: {}
data: {}
- action: script.turn_off_xmas_lights
metadata: {}
data: {}
enabled: false
mode: single
- id: '1649505983484'
alias: Plex - ambient light on pause (nightly)
description: ''
triggers:
- device_id: 3b64360c6fb53b2afbba7e4bbfc8f424
domain: media_player
entity_id: 798869b49e5c3a8b9ac8027f528f6696
type: paused
trigger: device
conditions:
- condition: device
type: is_off
device_id: e2f2c4cb8b2949446b328e959ee2bd46
entity_id: 57f822b987bae834e47077d592309bd7
domain: light
actions:
- type: turn_on
device_id: bfd4dcbabb0838d80a8f17f7110a7cc8
entity_id: be6fb1cc4048fd5d48908e76fb4f7e18
domain: switch
mode: single
- id: '1649506139676'
alias: Plex - lights up on stop or idle (nightly)
description: Bring lights up to 100% when media is stopped
triggers:
- device_id: 5beead3aa8c678121ae6b9815ecd92d5
domain: media_player
entity_id: 18ffbafa077058786cf3769d4cc44fd1
type: idle
trigger: device
for:
hours: 0
minutes: 10
seconds: 0
- device_id: 3b64360c6fb53b2afbba7e4bbfc8f424
domain: media_player
entity_id: 798869b49e5c3a8b9ac8027f528f6696
type: idle
trigger: device
for:
hours: 0
minutes: 10
seconds: 0
conditions:
- condition: not
conditions:
- condition: device
device_id: 5beead3aa8c678121ae6b9815ecd92d5
domain: media_player
entity_id: media_player.plex_theater_2
type: is_playing
actions:
- action: light.turn_on
metadata: {}
data:
brightness_pct: 100
transition: 4
target:
entity_id: light.theater_light_ha
mode: single
- id: '1649506319302'
alias: Plex - lights off on play (nightly)
description: ''
triggers:
- device_id: 3b64360c6fb53b2afbba7e4bbfc8f424
domain: media_player
entity_id: 798869b49e5c3a8b9ac8027f528f6696
type: playing
trigger: device
conditions: []
actions:
- action: light.turn_off
metadata: {}
data:
transition: 4
target:
entity_id:
- light.theater_light_ha
- light.ambient_light_ha
mode: single
- id: '1652137586418'
alias: Plexamp - Patio Playing
description: automatically turns stereo on when roon starts playing on patio
trigger:
- platform: device
device_id: 18b2b53b86763918bdd1e843a7fcb83f
domain: media_player
entity_id: media_player.plex_plexamp_patio
type: playing
condition: []
action:
- service: media_player.turn_on
target:
entity_id:
- media_player.patio_musiccast_2
data: {}
- service: media_player.unjoin
data: {}
target:
entity_id: media_player.patio_musiccast_2
- service: media_player.select_source
data:
source: AUX
target:
entity_id: media_player.patio_musiccast_2
mode: single
- id: '1652137773930'
alias: Plexamp - Patio Stopped
description: automatically turns stereo off when plexamp stops playing on patio
trigger:
- platform: device
device_id: 18b2b53b86763918bdd1e843a7fcb83f
domain: media_player
entity_id: media_player.plex_plexamp_patio
type: idle
for:
hours: 0
minutes: 15
seconds: 0
- platform: device
device_id: 18b2b53b86763918bdd1e843a7fcb83f
domain: media_player
entity_id: media_player.plex_plexamp_patio
type: turned_off
condition: []
action:
- service: media_player.turn_off
data: {}
target:
entity_id: media_player.patio_musiccast_2
mode: single
- id: '1652137898604'
alias: Plexamp - Master Bedroom Playing
description: automatically turns stereo on when plexamp starts playing in Master
Bedroom
trigger:
- platform: device
device_id: 17e4aab2e9c5614c3be559b7f695fe13
domain: media_player
entity_id: media_player.plex_plexamp_master_bedroom
type: playing
condition: []
action:
- service: media_player.turn_on
data: {}
target:
entity_id: media_player.master_musiccast
- service: media_player.unjoin
data: {}
target:
entity_id: media_player.master_musiccast
- service: media_player.select_source
data:
source: digital
target:
entity_id: media_player.master_musiccast
mode: single
- id: '1652137966091'
alias: Plexamp - Master Bedroom Stopped
description: automatically turns stereo off when plexamp stops playing on patio
trigger:
- platform: device
device_id: 17e4aab2e9c5614c3be559b7f695fe13
domain: media_player
entity_id: media_player.plexamp_master_bedroom
type: idle
for:
hours: 0
minutes: 15
seconds: 0
condition: []
action:
- service: media_player.turn_off
data: {}
target:
entity_id: media_player.master_musiccast
mode: single
- id: '1652145501338'
alias: Plexamp - Family Stopped
description: automatically turns stereo off when plexamp stops playing on patio
trigger:
- platform: device
device_id: 61a3740d6dfb0f58b8bb29162ebdd6b6
domain: media_player
entity_id: 34ded6e0bb3cc432463fa1f07d28e294
type: paused
for:
hours: 0
minutes: 10
seconds: 0
- platform: device
device_id: 3c0d248ed4c6e384bca97d06b9c40f00
domain: media_player
entity_id: media_player.family_musiccast_2
type: turned_off
condition: []
action:
- service: media_player.turn_off
data: {}
target:
entity_id: media_player.family_musiccast_2
- service: media_player.media_stop
data: {}
target:
device_id: 61a3740d6dfb0f58b8bb29162ebdd6b6
mode: single
- id: '1652145801294'
alias: 'Plexamp - Family Playing '
description: automatically turns stereo on when plexamp starts playing in office
trigger:
- platform: device
device_id: 61a3740d6dfb0f58b8bb29162ebdd6b6
domain: media_player
entity_id: 34ded6e0bb3cc432463fa1f07d28e294
type: playing
condition: []
action:
- service: media_player.turn_on
data: {}
target:
entity_id: media_player.family_musiccast_2
- delay:
hours: 0
minutes: 0
seconds: 0
milliseconds: 500
- service: media_player.select_source
data:
source: audio3
target:
entity_id:
- media_player.family_musiccast_2
- service: media_player.volume_set
data:
volume_level: 0.6
target:
entity_id: media_player.family_musiccast_2
- if:
- condition: state
entity_id: media_player.family_musiccast_2
attribute: source
state: audio4
then: []
else:
- service: media_player.turn_off
data: {}
target:
entity_id: media_player.family_tv
- service: media_player.select_source
data:
source: audio3
target:
entity_id: media_player.family_musiccast_2
enabled: false
mode: single
- id: '1652361064621'
alias: House - turn off armstrong and getty
description: ''
trigger:
- platform: state
entity_id:
- input_button.turn_off_stereo
from: 'On'
to: 'Off'
- platform: state
entity_id:
- input_boolean.armstrong_and_getty
from: 'On'
to: 'Off'
condition: []
action:
- service: media_player.unjoin
data: {}
target:
entity_id:
- media_player.office_musiccast_2
- media_player.family_musiccast_2
- media_player.master_musiccast
- service: media_player.turn_off
target:
entity_id:
- media_player.family_musiccast_2
- media_player.office_musiccast_2
- media_player.master_musiccast
data: {}
mode: single
- id: '1652479425280'
alias: Music - Unlink Speakers
description: ''
triggers:
- entity_id:
- input_button.unlink_speakers
trigger: state
conditions: []
actions:
- data: {}
action: script.unjoin_all_speakers
mode: single
- id: '1664327860211'
alias: Plexamp - Play plexamp in theater
description: ''
triggers:
- device_id: ae2476577ae4fed00052cd484860d34a
domain: media_player
entity_id: media_player.plex_plexamp_theater
type: playing
trigger: device
conditions: []
actions:
- action: media_player.turn_on
metadata: {}
data: {}
target:
device_id: cae90889ee7d2994f55f099926bae89f
- action: media_player.select_source
metadata: {}
data:
source: Audio4
target:
device_id: cae90889ee7d2994f55f099926bae89f
mode: single
- id: '1664328625425'
alias: Plexamp - music stops in theater
description: ''
triggers:
- device_id: ae2476577ae4fed00052cd484860d34a
domain: media_player
entity_id: media_player.plex_plexamp_theater
type: idle
for:
hours: 0
minutes: 15
seconds: 0
trigger: device
- device_id: ae2476577ae4fed00052cd484860d34a
domain: media_player
entity_id: media_player.plex_plexamp_theater
type: turned_off
trigger: device
conditions: []
actions:
- action: media_player.turn_off
metadata: {}
data: {}
target:
device_id: cae90889ee7d2994f55f099926bae89f
mode: single
- id: '1685491703206'
alias: Remote - Patio Skip
description: Triangle button on patio remote
trigger:
- platform: event
event_type: smartthings.button
event_data:
component_id: button4
value: pushed
name: Fibaro KeyFob
data: {}
condition: []
action:
- service: media_player.media_next_track
data: {}
target:
device_id: 18b2b53b86763918bdd1e843a7fcb83f
mode: single
- id: '1685492135212'
alias: Remote - Volume Up
description: + button on patio remote
trigger:
- platform: event
event_type: smartthings.button
event_data:
component_id: button6
value: pushed
name: Fibaro KeyFob
data: {}
condition: []
action:
- repeat:
count: '8'
sequence:
- service: media_player.volume_up
data: {}
target:
entity_id:
- media_player.patio_musiccast_2
- media_player.pool_musicccast_2
mode: single
- id: '1685492229645'
alias: Remote - Volume Down
description: '- button on patio remote'
trigger:
- platform: event
event_type: smartthings.button
event_data:
component_id: button5
value: pushed
name: Fibaro KeyFob
data: {}
condition: []
action:
- repeat:
count: '8'
sequence:
- service: media_player.volume_down
data: {}
target:
entity_id:
- media_player.patio_musiccast_2
- media_player.pool_musicccast_2
mode: single
- id: '1685492324617'
alias: Remote - Previous Track
description: X button on patio remote
trigger:
- platform: event
event_type: smartthings.button
event_data:
component_id: button3
value: pushed
name: Fibaro KeyFob
data: {}
condition: []
action:
- service: media_player.media_previous_track
data: {}
target:
entity_id: media_player.plex_plexamp_patio
mode: single
- id: '1685492412352'
alias: Remote - Play/Pause
description: O button on patio remote
trigger:
- platform: event
event_type: smartthings.button
event_data:
component_id: button2
value: pushed
name: Fibaro KeyFob
data: {}
condition: []
action:
- service: media_player.media_play_pause
data: {}
target:
entity_id: media_player.plex_plexamp_patio
mode: single
- id: '1685492535640'
alias: Remote - Start Plexamp on Patio
description: Square button on patio remote
trigger:
- platform: event
event_type: smartthings.button
event_data:
component_id: button1
value: pushed
name: Fibaro KeyFob
data: {}
condition: []
action:
- service: script.play_patio
data: {}
mode: single
- id: '1690315536276'
alias: Theater - temperature alert
description: ''
triggers:
- type: temperature
device_id: 274909318bfa356e5edcc56f8c3674dd
entity_id: 2e50f59de476f9287113de012535c715
domain: sensor
above: 110
trigger: device
conditions: []
actions:
- device_id: 698d5532ba3c339d2d82d9a5560e3d65
domain: mobile_app
type: notify
message: Theater Alert
title: Temperature too high
- data:
message: Theater temperature too high
title: Theater Alert
action: notify.mobile_app_galaxy_watch5_pro_kbvt
- action: notify.mobile_app_toddss23
metadata: {}
data:
message: Theater tempature too high
title: Theater alert
mode: single
- id: '1690315672294'
alias: Shop - Humidity Alert
description: ''
triggers:
- type: humidity
device_id: f251e82b5cf374a86d5ef691275c85ad
entity_id: dc05c1110c60d908504f249d7f82af38
domain: sensor
above: 80
trigger: device
for:
hours: 0
minutes: 5
seconds: 0
conditions: []
actions:
- data:
message: Too Humid in Shop
title: Shop Alert
action: notify.mobile_app_galaxy_watch5_pro_kbvt
- device_id: 698d5532ba3c339d2d82d9a5560e3d65
domain: mobile_app
type: notify
message: Shop Humidity too high
title: Shop Alert
mode: single
- id: '1702946437586'
alias: 'House - Lights: Late night'
description: ''
triggers:
- at: 01:00:00
trigger: time
conditions: []
actions:
- action: switch.turn_off
metadata: {}
data: {}
target:
entity_id:
- switch.bar_hall_light
- switch.office_cabinet_power_strip_1
- action: light.turn_off
metadata: {}
data: {}
target:
entity_id:
- light.master_hall_light
- light.living_room_hall
- action: script.turn_off_xmas_lights
metadata: {}
data: {}
enabled: false
mode: single
- id: '1708106254118'
alias: Plexamp - NFC Rock Family
description: ''
trigger:
- platform: tag
tag_id: Plexamp-nfc-rockfamily
condition: []
action:
- service: media_player.play_media
target:
entity_id: media_player.plex_plexamp_patio
data:
media_content_id: plex://8c2db3031ed98d3e8a70fd567e49a21b679eb5a8/44035
media_content_type: playlist
metadata:
title: rock music - long
thumbnail: /api/plex_image_proxy/8c2db3031ed98d3e8a70fd567e49a21b679eb5a8/44035
media_class: playlist
children_media_class:
navigateIds:
- {}
- media_content_type: playlists
media_content_id: plex://8c2db3031ed98d3e8a70fd567e49a21b679eb5a8/all
mode: single
- id: '1708125624827'
alias: Plexamp - NFC party music
description: Play all over the house
trigger:
- platform: tag
tag_id: plexamp-nfc-partymusic
condition: []
action:
- service: media_player.play_media
target:
entity_id: media_player.plex_plexamp_patio
data:
media_content_type: PLAYLIST
media_content_id: '{ "playlist_name": "rock music - long", "shuffle": "1" }'
metadata:
title: rock music - long
thumbnail: /api/plex_image_proxy/8c2db3031ed98d3e8a70fd567e49a21b679eb5a8/44035
media_class: playlist
children_media_class:
navigateIds:
- {}
- media_content_type: playlists
media_content_id: plex://8c2db3031ed98d3e8a70fd567e49a21b679eb5a8/all
- service: media_player.join
metadata: {}
data:
group_members:
- media_player.family_musiccast_2
- media_player.pool_musicccast_2
- media_player.dining_musiccast_2
- media_player.living_musiccast_2
target:
device_id: e1a63c77b5afd926a01fbe619dc94ad0
mode: single
- id: '1722909626808'
alias: Shop - Tempature Warning
description: ''
triggers:
- type: temperature
device_id: f251e82b5cf374a86d5ef691275c85ad
entity_id: ebc714cfd3b358427e72a128f393cb34
domain: sensor
above: 88
below: 45
for:
hours: 0
minutes: 10
seconds: 0
trigger: device
conditions: []
actions:
- metadata: {}
data:
message: Shop Temperature out of range
action: notify.mobile_app_galaxy_watch5_pro_kbvt
- action: notify.mobile_app_toddss23