-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscripts.yaml
More file actions
2123 lines (2123 loc) · 53.4 KB
/
scripts.yaml
File metadata and controls
2123 lines (2123 loc) · 53.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
garage_play_grateful_dead:
alias: Play Greatful Dead in the Garage
sequence:
- service: media_player.select_source
entity_id:
- media_player.garage
data:
source: 23 - Grateful Dead
garage_play_classic_rewind:
alias: Play Classic Rewind in the Garage
sequence:
- service: media_player.select_source
entity_id:
- media_player.garage
data:
source: 25 - Classic Rewind
garage_play_classic_vinyl:
alias: Play Classic Vinyl in the Garage
sequence:
- service: media_player.select_source
entity_id:
- media_player.garage
data:
source: 26 - Classic Vinyl
garage_play_80s:
alias: Play 80s on Eight in the Garage
sequence:
- service: media_player.select_source
entity_id:
- media_player.garage
data:
source: 8 - 80s on 8
garage_play_tom_petty:
alias: Play Tom Petty Radio in the Garage
sequence:
- service: media_player.select_source
entity_id:
- media_player.garage
data:
source: 31 - Tom Petty Radio
garage_media_stop:
alias: Pause Garage
sequence:
- service: media_player.media_stop
entity_id:
- media_player.garage
garage_media_play_pause:
alias: Garage Play/Pause
sequence:
- service: media_player.media_play_pause
entity_id:
- media_player.garage
garage_volume_down_5:
alias: Garage Volume Down 5
sequence:
- service: media_player.volume_set
entity_id:
- media_player.garage
data_template:
volume_level: '{{ states.media_player.garage.attributes.volume_level - 0.05}}'
garage_volume_up_10:
alias: Garage Volume Up 10
sequence:
- service: media_player.volume_set
entity_id:
- media_player.garage
data_template:
volume_level: '{{ states.media_player.garage.attributes.volume_level + 0.10}}'
garage_volume_up_5:
alias: Garage Volume Up 5
sequence:
- entity_id:
- media_player.garage
data_template:
volume_level: '{{ states.media_player.garage.attributes.volume_level + 0.05}}'
action: media_player.volume_set
garage_volume_up:
alias: Garage Volume Up
sequence:
- service: media_player.volume_up
entity_id:
- media_player.garage
garage_volume_down:
alias: Garage Volume Down
sequence:
- service: media_player.volume_down
entity_id:
- media_player.garage
garage_stop:
alias: Garage Stop
sequence:
- service: media_player.stop
entity_id:
- media_player.garage
guest_room_play_grateful_dead:
alias: Play Greatful Dead in the Guest_Room
sequence:
- service: media_player.select_source
entity_id:
- media_player.guest_room
data:
source: 23 - Grateful Dead
guest_room_play_classic_rewind:
alias: Play Classic Rewind in the Guest_Room
sequence:
- service: media_player.select_source
entity_id:
- media_player.guest_room
data:
source: 25 - Classic Rewind
guest_room_play_classic_vinyl:
alias: Play Classic Vinyl in the Guest_Room
sequence:
- service: media_player.select_source
entity_id:
- media_player.guest_room
data:
source: 26 - Classic Vinyl
guest_room_play_80s:
alias: Play 80s on Eight in the Guest_Room
sequence:
- service: media_player.select_source
entity_id:
- media_player.guest_room
data:
source: 8 - 80s on 8
guest_room_play_tom_petty:
alias: Play Tom Petty Radio in the Guest_Room
sequence:
- service: media_player.select_source
entity_id:
- media_player.guest_room
data:
source: 31 - Tom Petty Radio
guest_room_media_stop:
alias: Stop Guest_Room
sequence:
- service: media_player.media_stop
entity_id:
- media_player.guest_room
guest_room_volume_up:
alias: Guest_Room Volume Up
sequence:
- service: media_player.volume_up
entity_id:
- media_player.guest_room
guest_room_volume_down:
alias: Guest_Room Volume Down
sequence:
- service: media_player.volume_down
entity_id:
- media_player.guest_room
move_play_grateful_dead:
alias: Play Greatful Dead in the Move
sequence:
- service: media_player.select_source
entity_id:
- media_player.move
data:
source: 23 - Grateful Dead
move_play_classic_rewind:
alias: Play Classic Rewind in the Move
sequence:
- service: media_player.select_source
entity_id:
- media_player.move
data:
source: 25 - Classic Rewind
move_play_classic_vinyl:
alias: Play Classic Vinyl in the Move
sequence:
- service: media_player.select_source
entity_id:
- media_player.move
data:
source: 26 - Classic Vinyl
move_play_80s:
alias: Play 80s on Eight in the Move
sequence:
- service: media_player.select_source
entity_id:
- media_player.move
data:
source: 8 - 80s on 8
move_play_tom_petty:
alias: Play Tom Petty Radio in the Move
sequence:
- service: media_player.select_source
entity_id:
- media_player.move
data:
source: 31 - Tom Petty Radio
move_media_stop:
alias: Stop Move
sequence:
- service: media_player.media_stop
entity_id:
- media_player.move
move_volume_up:
alias: Move Volume Up
sequence:
- service: media_player.volume_up
entity_id:
- media_player.move
move_volume_down:
alias: Move Volume Down
sequence:
- service: media_player.volume_down
entity_id:
- media_player.move
mqtt_publish_bartender:
alias: MQTT Publish Bartender
sequence:
service: mqtt.publish
data:
topic: say/amy
payload: bartender
mqtt_publish_lies:
alias: MQTT Publish Lies
sequence:
service: mqtt.publish
data:
topic: say/amy
payload: lies
mqtt_publish_walking:
alias: MQTT Publish walking
sequence:
service: mqtt.publish
data:
topic: say/amy
payload: walking
office_play_grateful_dead:
alias: Play Greatful Dead in the Office
sequence:
- service: media_player.select_source
entity_id:
- media_player.office_sonos
data:
source: 23 - Grateful Dead
office_play_classic_rewind:
alias: Play Classic Rewind in the Office
sequence:
- service: media_player.select_source
entity_id:
- media_player.office_sonos
data:
source: 25 - Classic Rewind
office_play_classic_vinyl:
alias: Play Classic Vinyl in the Office
sequence:
- service: media_player.select_source
entity_id:
- media_player.office_sonos
data:
source: 26 - Classic Vinyl
office_play_80s:
alias: Play 80s on Eight in the Office
sequence:
- service: media_player.select_source
entity_id:
- media_player.office_sonos
data:
source: 8 - 80s on 8
office_play_tom_petty:
alias: Play Tom Petty Radio in the Office
sequence:
- service: media_player.select_source
entity_id:
- media_player.office_sonos
data:
source: 31 - Tom Petty Radio
office_media_stop:
alias: Stop Office
sequence:
- service: media_player.media_stop
entity_id:
- media_player.office_sonos
office_volume_up:
alias: Office Volume Up
sequence:
- service: media_player.volume_up
entity_id:
- media_player.office_sonos
office_volume_down:
alias: Office Volume Down
sequence:
- service: media_player.volume_down
entity_id:
- media_player.office_sonos
patio_play_grateful_dead:
alias: Play Greatful Dead in the Patio
sequence:
- service: media_player.select_source
entity_id:
- media_player.patio
data:
source: 23 - Grateful Dead
patio_play_classic_rewind:
alias: Play Classic Rewind in the Patio
sequence:
- service: media_player.select_source
entity_id:
- media_player.patio
data:
source: 25 - Classic Rewind
patio_play_classic_vinyl:
alias: Play Classic Vinyl in the Patio
sequence:
- service: media_player.select_source
entity_id:
- media_player.patio
data:
source: 26 - Classic Vinyl
patio_play_80s:
alias: Play 80s on Eight in the Patio
sequence:
- service: media_player.select_source
entity_id:
- media_player.patio
data:
source: 8 - 80s on 8
patio_play_tom_petty:
alias: Play Tom Petty Radio in the Patio
sequence:
- service: media_player.select_source
entity_id:
- media_player.patio
data:
source: 31 - Tom Petty Radio
patio_media_stop:
alias: Stop Patio
sequence:
- service: media_player.media_stop
entity_id:
- media_player.patio
patio_volume_up:
alias: Patio Volume Up
sequence:
- service: media_player.volume_up
entity_id:
- media_player.patio
patio_volume_down:
alias: Patio Volume Down
sequence:
- service: media_player.volume_down
entity_id:
- media_player.patio
patio_volume_down_10:
alias: Patio Volume Down 10
sequence:
- service: media_player.volume_set
entity_id:
- media_player.patio
data_template:
volume_level: '{{ states.media_player.patio.attributes.volume_level - 0.10}}'
patio_volume_down_5:
alias: Patio Volume Down 5
sequence:
- service: media_player.volume_set
entity_id:
- media_player.patio
data_template:
volume_level: '{{ states.media_player.patio.attributes.volume_level - 0.05}}'
patio_volume_up_10:
alias: Patio Volume Up 10
sequence:
- service: media_player.volume_set
entity_id:
- media_player.patio
data_template:
volume_level: '{{ states.media_player.patio.attributes.volume_level + 0.10}}'
patio_volume_up_5:
alias: Patio Volume Up 5
sequence:
- service: media_player.volume_set
entity_id:
- media_player.patio
data_template:
volume_level: '{{ states.media_player.patio.attributes.volume_level + 0.05}}'
move_volume_down_10:
alias: Move Volume Down 10
sequence:
- service: media_player.volume_set
entity_id:
- media_player.move
data_template:
volume_level: '{{ states.media_player.move.attributes.volume_level - 0.10}}'
move_volume_down_5:
alias: Move Volume Down 5
sequence:
- service: media_player.volume_set
entity_id:
- media_player.move
data_template:
volume_level: '{{ states.media_player.move.attributes.volume_level - 0.05}}'
move_volume_up_10:
alias: Move Volume Up 10
sequence:
- service: media_player.volume_set
entity_id:
- media_player.move
data_template:
volume_level: '{{ states.media_player.move.attributes.volume_level + 0.10}}'
move_volume_up_5:
alias: Move Volume Up 5
sequence:
- service: media_player.volume_set
entity_id:
- media_player.move
data_template:
volume_level: '{{ states.media_player.move.attributes.volume_level + 0.05}}'
patio_turn_off:
alias: Turn off Patio
sequence:
- service: media_player.unjoin
target:
entity_id: media_player.patio
- service: media_player.media_stop
target:
entity_id: media_player.patio
- service: fan.turn_off
target:
entity_id: fan.patio_ceiling_fan
- service: switch.turn_off
target:
entity_id: switch.patio_party_lights_js_switch
- service: switch.turn_off
target:
entity_id: switch.patio_temp_fan_js_switch
- service: switch.turn_off
target:
entity_id: switch.patio_temp_fan_js_switch
mode: single
guest_room_turn_off:
alias: Turn off Guest Room
sequence:
- service: media_player.media_stop
entity_id:
- media_player.guest_room
move_turn_off:
alias: Turn off Sonos Move
sequence:
- service: media_player.media_stop
entity_id:
- media_player.move
jamie_bedtime_music:
alias: Turn on Jamies bedtime music
sequence:
- data:
source: 23 - Grateful Dead
target:
entity_id: media_player.guest_room
action: media_player.select_source
mode: single
family_room_sonos_volume_up:
alias: Family Room Volume Up
sequence:
- service: media_player.volume_up
entity_id: media_player.family_room
family_room_sonos_volume_down:
alias: Family Room Volume Down
sequence:
- service: media_player.volume_down
data: {}
target:
entity_id: media_player.family_room
patio_fan_speed_off:
alias: Patio fan (off)
sequence:
- service: fan.set_percentage
entity_id:
- fan.patio_ceiling_fan
data:
percentage: 0
patio_fan_speed_low:
alias: Patio fan (low)
sequence:
- service: fan.set_percentage
entity_id: fan.patio_ceiling_fan
data:
percentage: 33
patio_fan_speed_medium:
alias: Patio fan (medium)
sequence:
- service: fan.set_percentage
entity_id: fan.patio_ceiling_fan
data:
percentage: 66
patio_fan_speed_high:
alias: Patio fan (high)
sequence:
- service: fan.set_percentage
entity_id: fan.patio_ceiling_fan
data:
percentage: 100
dust_collector_on:
alias: Turn on the dust collector
sequence:
- service: fan.turn_on
entity_id: fan.dc
dust_collector_off:
alias: Turn off the dust collector
sequence:
- service: fan.turn_off
entity_id: fan.dc
mode: single
big_screen_movie_time:
alias: Big-screen movie time
sequence:
- data: {}
target:
entity_id: switch.cabinet_lighting
action: homeassistant.turn_off
- target:
entity_id: light.morning_room_js_sconce
data: {}
action: homeassistant.turn_off
- target:
entity_id: light.kitchen_light_level_js
data: {}
action: homeassistant.turn_off
- action: switch.turn_off
metadata: {}
data: {}
target:
entity_id: switch.morning_room_back_wall
- action: switch.turn_off
metadata: {}
data: {}
target:
entity_id: switch.bar_table_js_switch
mode: single
theater_tv_power_on:
alias: Family room TV power on
sequence:
- service: remote.send_command
data:
device: family_room_television
command: power_on
target:
entity_id: remote.family_room_broadlink_remote
mode: single
theater_tv_power_off:
alias: Family room TV power off
sequence:
- service: remote.send_command
data:
device: family_room_television
command: power_off
target:
entity_id: remote.family_room_broadlink_remote
mode: single
theater_projector_power_off:
alias: Projector power off
sequence:
- service: remote.send_command
data:
device: family_room_projector
command: power_off
target:
entity_id: remote.family_room_broadlink_remote
mode: single
theater_projector_power_on:
alias: Projector power on
sequence:
- data:
device: family_room_projector
command: power_on
target:
entity_id: remote.family_room_broadlink_remote
action: remote.send_command
- action: script.home_theater_denon_hdmi_out_projector
metadata: {}
data: {}
mode: single
watch_apple_tv:
alias: Watch Apple TV
sequence:
- service: script.theater_tv_power_on
- service: yamaha.select_scene
data:
entity_id: media_player.yamaha_receiver_family_room
scene: AppleTV
- service: yamaha.enable_output
data:
entity_id: media_player.yamaha_receiver_family_room
port: hdmi2
enabled: false
- service: yamaha.enable_output
data:
entity_id: media_player.yamaha_receiver_family_room
port: hdmi1
enabled: true
mode: single
office_turn_on:
alias: Turn on Office
sequence:
- action: media_player.turn_on
data: {}
target:
device_id: dee8917ec9f544351cfef26c0361e775
office_turn_off:
alias: Turn off Office
sequence:
- action: media_player.turn_off
data: {}
target:
device_id: dee8917ec9f544351cfef26c0361e775
- entity_id: media_player.office_sonos
action: media_player.media_stop
office_receiver_toggle_mute:
alias: Office Receiver Toggle Mute
sequence:
- data:
entity_id: media_player.denon_office
data_template:
is_volume_muted: '{{ not states.media_player.denon_office.attributes.is_volume_muted
}}'
action: media_player.volume_mute
office_receiver_volume_up:
sequence:
- entity_id: media_player.denon_office
data_template:
volume_level: '{{ (state_attr(''media_player.denon_office'',''volume_level'')
| float(0)) + 0.01 }}'
action: media_player.volume_set
office_receiver_volume_down:
sequence:
- entity_id: media_player.denon_office
data_template:
volume_level: '{{ (state_attr(''media_player.denon_office'',''volume_level'')
| float(0)) - 0.01 }}'
action: media_player.volume_set
office_input_sonos:
alias: Turn On Office Sonos
sequence:
- service: script.office_turn_on
- service: yamaha.select_scene
data:
entity_id: media_player.yamaha_receiver_office
scene: SONOS
office_input_mac:
alias: Office Input Mac
sequence:
- action: script.office_turn_on
data: {}
- action: denonavr.get_command
metadata: {}
data:
command: /goform/formiPhoneAppDirect.xml?MSQUICK1
target:
entity_id: media_player.denon_office
office_input_orion:
alias: Office Input Orion
sequence:
- service: script.office_turn_on
- service: yamaha.select_scene
data:
entity_id: media_player.yamaha_receiver_office
scene: Work Computer
office_input_roon:
alias: Office Input Roon
sequence:
- service: script.office_turn_on
- service: yamaha.select_scene
data:
entity_id: media_player.yamaha_receiver_office
scene: Roon
office_input_sacd:
alias: Office Input SACD
sequence:
- service: script.office_turn_on
- service: yamaha.select_scene
data:
entity_id: media_player.yamaha_receiver_office
scene: SACD
office_input_phono:
alias: Office Input Phono
sequence:
- service: script.office_turn_on
- service: media_player.select_source
data:
entity_id: media_player.yamaha_receiver_office
source: PHONO
lightstrip_on_the_air:
sequence:
- service: hue.hue_activate_scene
data:
group_name: Office
scene_name: On Air
turn_on_accent_lighting:
sequence:
- service: homeassistant.turn_on
data: {}
target:
entity_id:
- light.accent_lighting
- switch.holiday_all
turn_off_accent_lighting:
sequence:
- data: {}
target:
entity_id:
- light.accent_lighting
- switch.holiday_all
action: homeassistant.turn_off
family_room_sonos_next_track:
alias: Family Room Next Track
sequence:
- service: media_player.media_next_track
entity_id: media_player.family_room
family_room_sonos_previous_track:
alias: Family Room Previous Track
sequence:
- service: media_player.media_previous_track
entity_id: media_player.family_room
family_room_turn_off:
alias: Turn off Family Room
sequence:
- action: media_player.turn_off
data: {}
target:
entity_id: media_player.home_theater
- entity_id: media_player.family_room
action: media_player.media_stop
family_room_receiver_toggle_mute:
alias: Family Room Receiver Toggle Mute
sequence:
- data:
entity_id: media_player.home_theater
data_template:
is_volume_muted: '{{ not states.media_player.home_theater.attributes.is_volume_muted
}}'
action: media_player.volume_mute
compare_track_back:
alias: Compare - track back
sequence:
- service: media_player.media_previous_track
target:
entity_id: media_player.family_room_schiit
- service: media_player.media_previous_track
target:
entity_id: media_player.family_room
mode: single
turn_on_all_holiday_lights:
alias: Turn on all holiday lights
sequence:
- service: homeassistant.turn_on
data: {}
target:
entity_id:
- switch.holiday_all
mode: single
shut_down_office:
alias: Shut Down Office
sequence:
- target:
entity_id: light.hue_lightstrip_plus_1
data: {}
action: light.turn_off
- target:
entity_id: light.hue_color_lamp_1
data: {}
action: light.turn_off
- target:
entity_id: switch.front_webcam_js_switch
data: {}
action: switch.turn_off
- target:
entity_id: media_player.denon_office
data: {}
action: media_player.turn_off
- type: turn_off
device_id: 558bf20c8cb19b9bd51413af95dad13e
entity_id: light.elgato_key_light_air
domain: light
- metadata: {}
data: {}
target:
device_id: 1fde1a448c9379091c3b0a5f8fdbfaae
action: switch.turn_off
- target:
entity_id: switch.office_ceiling_fan_light
data: {}
action: switch.turn_off
- metadata: {}
data:
num_repeats: 1
delay_secs: 0.4
hold_secs: 0
device: office_fan
command: fan_off
target:
entity_id: remote.office_hub_pro
action: remote.send_command
mode: single
patio_next_track:
alias: Patio Next Track
sequence:
- service: media_player.media_next_track
target:
entity_id: media_player.patio
mode: single
garage_off:
alias: Garage Turn Off
sequence:
- metadata: {}
data: {}
target:
entity_id: media_player.garage
action: media_player.media_stop
- target:
entity_id: fan.dc
data: {}
action: fan.turn_off
- metadata: {}
data: {}
action: script.drop_garage
- target:
entity_id:
- switch.garage_wall_fan_js_switch
- switch.garage_portable_fan_js_switch
data: {}
action: switch.turn_off
- action: script.cycle_jet_air_scrubber
metadata: {}
data: {}
mode: single
jamie_patio_mode:
alias: Jamie Patio Mode
sequence:
- data: {}
action: script.patio_fan_speed_high
- target:
entity_id: media_player.patio
data:
source: 25 - Classic Rewind
action: media_player.select_source
- target:
entity_id: switch.patio_party_lights_js_switch
data: {}
action: switch.turn_on
- target:
entity_id: switch.patio_temp_fan_js_switch
data: {}
enabled: false
action: switch.turn_on
mode: single
bambu_x1c_one_on:
alias: Bambu X1C - One - On
sequence:
- service: switch.turn_on
data: {}
target:
entity_id: switch.bambu_x1c
mode: single
drop_family_room:
alias: Drop family_room from group
sequence:
- service: media_player.unjoin
data: {}
target:
entity_id: media_player.family_room
family_room_add_garage:
alias: Add garage to family_room
sequence:
- service: media_player.join
data:
group_members:
- media_player.garage
target:
entity_id: media_player.family_room
family_room_add_move:
alias: Add move to family_room
sequence:
- service: media_player.join
data:
group_members:
- media_player.move
target:
entity_id: media_player.family_room
family_room_add_office:
alias: Add office to family_room
sequence:
- service: media_player.join
data:
group_members:
- media_player.office_sonos
target:
entity_id: media_player.family_room
family_room_add_patio:
alias: Add patio to family_room
sequence:
- service: media_player.join
data:
group_members:
- media_player.patio
target:
entity_id: media_player.family_room
drop_garage:
alias: Drop garage from group
sequence:
- service: media_player.unjoin
data: {}
target:
entity_id: media_player.garage
garage_add_family_room:
alias: Add family_room to garage
sequence:
- service: media_player.join
data:
group_members:
- media_player.family_room
target:
entity_id: media_player.garage
garage_add_move:
alias: Add move to garage
sequence:
- service: media_player.join
data:
group_members:
- media_player.move
target:
entity_id: media_player.garage
garage_add_office:
alias: Add office to garage
sequence:
- service: media_player.join
data:
group_members:
- media_player.office_sonos
target:
entity_id: media_player.garage
garage_add_patio:
alias: Add patio to garage
sequence:
- service: media_player.join
data:
group_members:
- media_player.patio
target:
entity_id: media_player.garage
drop_move:
alias: Drop move from group
sequence:
- service: media_player.unjoin
data: {}
target:
entity_id: media_player.move
move_add_family_room:
alias: Add family_room to move
sequence:
- service: media_player.join
data:
group_members:
- media_player.family_room
target:
entity_id: media_player.move
move_add_garage:
alias: Add garage to move
sequence:
- service: media_player.join
data:
group_members:
- media_player.garage
target:
entity_id: media_player.move
move_add_office:
alias: Add office to move
sequence:
- service: media_player.join
data:
group_members:
- media_player.office_sonos
target:
entity_id: media_player.move
move_add_patio:
alias: Add patio to move
sequence:
- service: media_player.join
data:
group_members:
- media_player.patio
target:
entity_id: media_player.move
drop_office:
alias: Drop office from group
sequence:
- service: media_player.unjoin
data: {}
target:
entity_id: media_player.office_sonos
office_add_family_room:
alias: Add family_room to office
sequence:
- service: media_player.join
data:
group_members:
- media_player.family_room
target: