forked from geekofweek/homeassistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlovelace.yaml
1558 lines (1558 loc) · 50.5 KB
/
lovelace.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
title: Home
views:
- badges: []
cards:
- card:
cards:
- entity: alarm_control_panel.alarm
states:
- arm_home
- arm_away
type: alarm-panel
type: vertical-stack
conditions:
- entity: alarm_control_panel.alarm
state_not: disarmed
type: conditional
- entities:
- entity: person.USER1
- entity: person.USER2
title: Household
type: glance
- card:
show_state: false
title: Friends and Family
type: glance
entities:
- person.REDACTED
- person.REDACTED
- person.REDACTED
- person.REDACTED
- person.REDACTED
- person.REDACTED
- person.REDACTED
- person.REDACTED
- person.REDACTED
- person.REDACTED
- person.REDACTED
- person.REDACTED
- person.REDACTED
- person.REDACTED
- person.REDACTED
show_empty: false
state_filter:
- home
type: entity-filter
- entities:
- entity: light.living_room_lights
- entity: light.dining_room_lights
- entity: light.bedroom_lights
- entity: light.kitchen_lights
- entity: light.hallway_light
- entity: light.bathroom_lights
- entity: light.stairs_light
- entity: light.basement_lighting
- entity: light.USER1_office_lights
name: USER1's Office
- entity: light.USER2_office_lights
name: USER2's Office
- entity: light.guest_bedroom_lights
- entity: light.upstairs_bathroom_lights
title: Interior Lights
type: entities
- entities:
- entity: light.front_porch
- entity: light.back_door
- entity: light.backyard_deck
- entity: light.backyard_patio
- entity: light.garage_light
- entity: light.garage_interior
- entity: switch.front_yard_lighting
- entity: switch.backyard_lighting
title: Exterior Lights
type: entities
- entities:
- entity: input_select.remote
name: Living Room Media Center Remote
- entity: input_select.bedroom_remote
name: Bedroom TV Remote
- entity: input_select.office_remote
name: USER1's Office TV Remote
- entity: input_select.sonos
show_header_toggle: false
title: Remote
type: entities
- entities:
- entity: vacuum.downstairs_roomba
name: Downstairs
- entity: vacuum.upstairs_roomba
name: Upstairs
title: Vacuums
type: glance
- entities:
- entity: climate.main_floor
- entity: switch.fireplace
hold_action:
action: more-info
tap_action:
action: toggle
- entity: climate.office_fan
name: Office
- entity: switch.basement_heater
hold_action:
action: more-info
name: Basement
tap_action:
action: toggle
- entity: sensor.REDACTED_temperature
name: Outdoor
title: Climate Control
type: glance
- entities:
- entity: lock.front_door
hold_action:
action: more-info
name: Front Door
tap_action:
action: toggle
- entity: lock.back_door
hold_action:
action: more-info
name: Back Door
tap_action:
action: toggle
- entity: lock.basement_door
hold_action:
action: more-info
name: Basement
tap_action:
action: toggle
show_header_toggle: false
title: Locks
type: glance
- entity: cover.garage_door
hold_action:
action: more-info
tap_action:
action: toggle
type: entity-button
- cards:
- entity: camera.front_porch
show_state: false
type: picture-entity
- entity: camera.backyard_gate
show_state: false
type: picture-entity
type: vertical-stack
- cards:
- entity: camera.driveway
show_state: false
type: picture-entity
- entity: camera.garage
show_state: false
type: picture-entity
type: vertical-stack
- cards:
- entity: camera.backyard
show_state: false
type: picture-entity
- entity: camera.side_yard
show_state: false
type: picture-entity
type: vertical-stack
- card:
cards:
- entity: camera.living_room
show_state: false
type: picture-entity
- entity: camera.basement
show_state: false
type: picture-entity
type: vertical-stack
conditions:
- entity: device_tracker.living_room_camera
state: home
- entity: device_tracker.basement_camera
state: home
type: conditional
icon: 'mdi:home'
path: default_view
title: default_view
- badges: []
cards:
- cards:
- entities:
- entity: light.living_room_lamps
name: Lamps
- entity: light.media_center_lighting
name: Media Center Lighting
- entity: light.globe
name: Globe
- entity: switch.living_room_ceiling_fan
name: Ceiling Fan
show_header_toggle: false
title: Living Room
type: entities
- cards:
- entity: lock.front_door
hold_action:
action: more-info
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
- entity: switch.fireplace
hold_action:
action: more-info
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
type: horizontal-stack
- cards:
- entity: vacuum.downstairs_roomba
hold_action:
action: more-info
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
- entity: switch.livingroom_rainbow
hold_action:
action: more-info
name: Random Light Color
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
type: horizontal-stack
- cards:
- entity: sensor.living_room_temperature
graph: line
name: Temperature
type: sensor
type: horizontal-stack
- entities:
- entity: binary_sensor.front_door_opened
- entity: binary_sensor.living_room_occupancy
name: Occupancy
- entity: binary_sensor.living_room_motion
name: Motion
show_state: false
theme: default
type: glance
- entities:
- entity: sensor.living_room_nest_protect_color_status
name: Smoke Detector
- entity: sensor.living_room_light_level
name: Light Level
show_state: true
theme: default
type: glance
type: vertical-stack
- cards:
- entities:
- entity: input_select.remote
- entity: input_select.sonos
- input_boolean.group_all_sonos
show_header_toggle: false
title: Remote
type: entities
type: vertical-stack
- card:
entity: camera.living_room
show_state: false
type: picture-entity
conditions:
- entity: device_tracker.living_room_camera
state: home
type: conditional
- cards:
- entity: media_player.sonos_living_room
type: media-control
- entity: media_player.sonos_media_center
type: media-control
type: vertical-stack
icon: 'mdi:sofa'
path: living
title: Living
- badges: []
cards:
- cards:
- entities:
- entity: light.kitchen_ceiling
name: Ceiling
- entity: light.kitchen_cabinets
name: Cabinets
- entity: light.kitchen_sink
name: Sink
show_header_toggle: false
title: Kitchen
type: entities
- cards:
- entity: lock.back_door
hold_action:
action: more-info
icon_height: 90px
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
type: horizontal-stack
- cards:
- entity: sensor.kitchen_temperature
graph: line
name: Temperature
type: sensor
type: horizontal-stack
- entities:
- entity: binary_sensor.back_door_opened
- entity: binary_sensor.kitchen_occupancy
name: Occupancy
- entity: binary_sensor.kitchen_motion
name: Motion
- entity: binary_sensor.kitchen_sink_water_sensor
name: Water Sensor
show_state: false
theme: default
type: glance
- entities:
- entity: sensor.kitchen_nest_protect_color_status
name: Smoke Detector
- entity: sensor.kitchen_light_level
name: Light Level
show_state: true
theme: default
type: glance
- entity: media_player.sonos_kitchen
type: media-control
type: vertical-stack
- cards:
- entities:
- entity: light.dining_room_table
name: Table
- entity: light.dining_room_ceiling
name: Ceiling
show_header_toggle: false
title: Dining Room
type: entities
- cards:
- entity: sensor.main_floor_temperature
graph: line
name: Temperature
type: sensor
- entity: sensor.main_floor_humidity
graph: line
name: Humidity
type: sensor
type: horizontal-stack
- entities:
- entity: binary_sensor.main_floor_occupancy
name: Occupancy
- entity: binary_sensor.dining_room_motion
name: Motion
show_state: false
theme: default
type: glance
- entities:
- entity: sensor.hallway_nest_protect_color_status
name: Smoke Detector
- entity: sensor.dining_room_light_level
name: Light Level
show_state: true
theme: default
type: glance
- entity: media_player.sonos_dining_room
type: media-control
type: vertical-stack
icon: 'mdi:silverware-variant'
path: dining
title: Dining
- badges: []
cards:
- cards:
- entities:
- entity: light.USER1s_nightstand
- entity: light.USER2s_nightstand
- entity: light.bedroom_ceiling
name: Ceiling
- entity: light.bedroom_lamp
name: Lamp
- entity: light.closet_lamp
- entity: light.bedroom_closet_ceiling
name: Closet Ceiling
- entity: light.USER2s_bedroom_closet
name: USER2's Closet
show_header_toggle: false
title: Bedroom
type: entities
- cards:
- entity: switch.bedtime
hold_action:
action: more-info
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
- entity: switch.bedroom_rainbow
hold_action:
action: more-info
name: Random Light Color
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
type: horizontal-stack
- entity: sensor.bedroom_temperature
graph: line
name: Temperature
type: sensor
- entities:
- entity: binary_sensor.bedroom_occupancy
name: Occupancy
- entity: binary_sensor.USER2_bedroom_closet_motion
name: Closet Motion
show_state: false
theme: default
type: glance
- entities:
- entity: sensor.bedroom_nest_protect_color_status
name: Smoke Detector
show_state: true
theme: default
type: glance
type: vertical-stack
- cards:
- entities:
- entity: light.guest_bedroom_ceiling
name: Ceiling
- entity: light.guest_bedroom_nightstand
name: Nightstand
show_header_toggle: false
title: Guest Bedroom
type: entities
- entity: sensor.guest_bedroom_temperature
graph: line
name: Temperature
type: sensor
- entities:
- entity: binary_sensor.guest_bedroom_occupancy
name: Occupancy
show_state: false
theme: default
type: glance
type: vertical-stack
- cards:
- entities:
- entity: input_select.bedroom_remote
name: Bedroom TV Remote
show_header_toggle: false
title: Remote
type: entities
- entity: media_player.sonos_bedroom
type: media-control
type: vertical-stack
icon: 'mdi:hotel'
path: bedrooms
title: Bedrooms
- badges: []
cards:
- cards:
- entities:
- entity: light.bathroom_vanity
icon: 'mdi:water-pump'
name: Vanity Light
- entity: light.bathroom_shower
name: Shower Light
show_header_toggle: false
title: Bathroom
type: entities
- entity: sensor.bathroom_temperature
graph: line
name: Temperature
type: sensor
- entities:
- entity: binary_sensor.bathroom_occupancy
name: Occupancy
- entity: binary_sensor.bathroom_sink_water_sensor
name: Water Sensor
show_state: false
theme: default
type: glance
- entity: media_player.sonos_bathroom
type: media-control
type: vertical-stack
- cards:
- entities:
- entity: light.upstairs_bathroom_vanity
icon: 'mdi:water-pump'
name: Vanity Light
show_header_toggle: false
title: Upstairs Bathroom
type: entities
- entities:
- entity: binary_sensor.upstairs_bathroom_motion
name: Motion
- entity: binary_sensor.upstairs_bathrooom_water_sensor
name: Water Sensor
show_state: false
theme: default
type: glance
- entities:
- entity: sensor.upstairs_bathroom_light_level
name: Light Level
show_state: true
theme: default
type: glance
type: vertical-stack
icon: 'mdi:shower'
path: bathrooms
title: Bathrooms
- badges: []
cards:
- cards:
- entities:
- entity: light.USER1_s_office_ceiling
name: Ceiling
- entity: light.office_lamp
name: Lamp
show_header_toggle: false
title: USER1's Office
type: entities
- cards:
- entity: vacuum.upstairs_roomba
hold_action:
action: more-info
icon_height: 91px
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
type: horizontal-stack
- cards:
- entity: fan.office_fan
hold_action:
action: more-info
show_icon: true
show_name: true
tap_action:
action: more-info
type: entity-button
- entity: switch.air_purifier
hold_action:
action: more-info
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
type: horizontal-stack
- cards:
- entity: climate.office_fan
hold_action:
action: more-info
show_icon: true
show_name: true
tap_action:
action: more-info
type: entity-button
- entity: switch.office_rainbow
hold_action:
action: more-info
name: Random Light Color
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
type: horizontal-stack
- cards:
- entity: sensor.office_temperature
graph: line
name: Temperature
type: sensor
- entity: sensor.office_fan_humidity
graph: line
name: Humidity
type: sensor
type: horizontal-stack
- entities:
- entity: binary_sensor.office_occupancy
name: Occupancy
- entity: binary_sensor.USER1s_office_motion
name: Motion
show_state: false
theme: default
type: glance
- entities:
- entity: sensor.USER1s_office_light_sensor
name: Light Level
show_state: true
theme: default
type: glance
type: vertical-stack
- cards:
- entities:
- entity: light.USER2_s_office_ceiling
name: Ceiling
show_header_toggle: false
title: USER2's Office
type: entities
- entity: sensor.USER2_office_temperature
graph: line
name: Temperature
type: sensor
- entities:
- entity: binary_sensor.USER2_office_occupancy
name: Occupancy
- entity: binary_sensor.USER2s_office_motion
name: Motion
show_state: false
theme: default
type: glance
- entities:
- entity: sensor.USER2s_office_light_level
name: Light Level
show_state: true
theme: default
type: glance
type: vertical-stack
- cards:
- entities:
- entity: input_select.office_remote
name: USER1's Office TV Remote
show_header_toggle: false
title: Remote
type: entities
- entity: media_player.sonos_USER1s_office
type: media-control
- entity: media_player.sonos_USER2s_office
type: media-control
type: vertical-stack
icon: 'mdi:desktop-mac'
path: offices
title: Offices
- badges: []
cards:
- cards:
- entities:
- entity: light.basement_stairs
- entity: light.basement_lights
- entity: light.work_bench_light
- entity: light.craft_room_ceiling
- entity: light.basement_storage_area_ceiling
show_header_toggle: false
title: Basement
type: entities
- cards:
- entity: lock.basement_door
hold_action:
action: more-info
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
- entity: switch.basement_heater
hold_action:
action: more-info
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
type: horizontal-stack
- cards:
- entity: sensor.basement_temperature
graph: line
name: Temperature
type: sensor
type: horizontal-stack
- entities:
- entity: binary_sensor.basement_door_opened
- entity: binary_sensor.basement_occupancy
name: Occupancy
- entity: binary_sensor.basement_motion
name: Motion
show_state: false
theme: default
type: glance
- entities:
- entity: sensor.basement_nest_protect_color_status
name: Smoke Detector
show_state: true
theme: default
type: glance
type: vertical-stack
- cards:
- entities:
- entity: light.laundry_room_light
show_header_toggle: false
title: Laundry Room
type: entities
- entities:
- entity: binary_sensor.washing_machine_status
name: Status
- entity: switch.washing_machine
name: Power
- entity: sensor.washing_machine_current_power
name: Wattage
title: Washing Machine
type: glance
- entities:
- entity: binary_sensor.dryer_status
name: Status
- entity: switch.dryer
name: Power
- entity: sensor.dryer_current_power
name: Wattage
title: Dryer
type: glance
- cards:
- entity: sensor.laundry_room_temperature
graph: line
name: Temperature
type: sensor
type: horizontal-stack
- entities:
- entity: binary_sensor.laundry_room_occupancy
name: Occupancy
show_state: false
theme: default
type: glance
type: vertical-stack
- entities:
- entity: switch.water_main
show_icon: true
show_name: true
show_state: true
title: Water Works
type: glance
- columns: 3
entities:
- entity: binary_sensor.basement_drain_water_sensor_liquid_detected
name: Basement Drain
- entity: binary_sensor.utility_sink_water_sensor
name: Utility Sink
- entity: binary_sensor.washing_machine_water_sensor
name: Washing Machine
- entity: binary_sensor.water_heater_water_sensor
name: Water Heater
- entity: binary_sensor.basement_door_water_sensor
name: Basement Door
- entity: binary_sensor.sump_pump_water_sensor_liquid_detected
name: Sump Pump
show_state: false
title: Water Sensors
type: glance
- card:
entity: camera.basement
show_state: false
type: picture-entity
conditions:
- entity: device_tracker.basement_camera
state: home
type: conditional
- entity: media_player.sonos_move
type: media-control
icon: 'mdi:stairs'
path: basements
title: Basement
- badges: []
cards:
- cards:
- entities:
- entity: light.front_porch
- entity: light.back_door
- entity: light.backyard_deck
- entity: light.backyard_patio
- entity: light.garage_light
- entity: switch.front_yard_lighting
- entity: switch.backyard_lighting
title: Exterior Lights
type: entities
- entities:
- sensor.holidays_calendar
- input_select.holiday
- input_boolean.interior_holiday
show_header_toggle: false
title: Holiday Modes
type: entities
- cards:
- entity: switch.bug_zapper
hold_action:
action: more-info
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
- entity: switch.front_porch_rainbow
hold_action:
action: more-info
name: Porch Random Color
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
type: horizontal-stack
type: vertical-stack
- entity: cover.garage_door
hold_action:
action: more-info
tap_action:
action: more-info
type: entity-button
- entities:
- entity: binary_sensor.ring_front_door_ding
name: Ring
- entity: binary_sensor.ring_front_door_motion
name: Motion
show_state: false
title: Door Bell
type: glance
- entity: media_player.sonos_backyard_patio
type: media-control
icon: 'mdi:tree'
path: outdoors
title: Outdoors
- badges: []
cards:
- cards:
- entity: climate.main_floor
type: thermostat
- cards: null
entities:
- entity: input_select.thermostat_mode
type: entities
- cards: null
entities:
- entity: switch.summer_mode
tap_action:
action: toggle
- entity: switch.winter_mode
tap_action:
action: toggle
- entity: switch.spring_fall_mode
tap_action:
action: toggle
show_state: false
type: glance
- cards:
- entity: climate.office_fan
hold_action:
action: more-info
show_icon: true
show_name: true
tap_action:
action: more-info
type: entity-button
- entity: switch.basement_heater
hold_action:
action: more-info
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
type: horizontal-stack
type: vertical-stack
- cards:
- entities:
- entity: sensor.living_room_temperature
name: Living Room
- entity: sensor.main_floor_temperature
name: Dining Room
- entity: sensor.kitchen_temperature
name: Kitchen
- entity: sensor.bedroom_temperature
name: Bedroom
- entity: sensor.bathroom_temperature
name: Bathroom
- entity: sensor.office_temperature
name: USER1's Office
- entity: sensor.USER2_office_temperature
name: USER2's Office
- entity: sensor.guest_bedroom_temperature
name: Guest Bedroom
- entity: sensor.basement_temperature
name: Basement
- entity: sensor.laundry_room_temperature
name: Laundry Room
show_header_toggle: false
title: Indoor Temperature
type: entities
- entities:
- entity: sensor.main_floor_humidity
name: Dining Room
- entity: sensor.office_fan_humidity
name: Office
- entity: sensor.REDACTED_humidity
name: Outdoor
title: Humidity
type: glance
type: vertical-stack
- cards:
- entity: weather.REDACTED
type: weather-forecast
- image: 'https://s.w-x.co/staticmaps/wu/wu/wxtype1200_cur/usjef/animate.png'
type: picture
type: vertical-stack
icon: 'mdi:weather-partly-lightning'
path: weatherdashboard
title: Weather
- badges: []
cards:
- entities:
- entity: input_select.remote
name: Living Room Media Center Remote
- entity: input_select.bedroom_remote
name: Bedroom TV Remote
- entity: input_select.office_remote
name: USER1's Office TV
- input_select.sonos
- input_boolean.group_all_sonos
show_header_toggle: false
title: Remote
type: entities
- entities:
- entity: sensor.REDACTED
- entity: binary_sensor.plex_status
show_header_toggle: false
title: Media Player
type: entities
- cards:
- entity: media_player.living_room_apple_tv
show_info: false
type: media-control
- entity: media_player.bedroom_apple_tv
show_info: false
type: media-control
- entity: media_player.USER1_s_office_apple_tv
show_info: false
type: media-control
- entity: media_player.guest_bedroom_apple_tv
show_info: false
type: media-control
type: vertical-stack
- cards:
- cards:
- entity: media_player.sonos_media_center
type: media-control
- entity: media_player.sonos_living_room
type: media-control
type: horizontal-stack
- cards:
- entity: media_player.sonos_dining_room
type: media-control
- entity: media_player.sonos_kitchen
type: media-control
type: horizontal-stack
- cards:
- entity: media_player.sonos_bathroom
type: media-control
- entity: media_player.sonos_bedroom
type: media-control
type: horizontal-stack
type: vertical-stack
- cards:
- cards:
- entity: media_player.sonos_USER1s_office
type: media-control
- entity: media_player.sonos_USER2s_office
type: media-control
type: horizontal-stack
- cards:
- entity: media_player.sonos_move
type: media-control
- entity: media_player.sonos_backyard_patio
type: media-control
type: horizontal-stack
type: vertical-stack
- entity: media_player.media_center_receiver
type: media-control
icon: 'mdi:play-circle-outline'
path: media
title: Media
- badges: []
cards:
- cards:
- camera_view: live
entity: camera.front_porch
show_state: false
type: picture-entity
- camera_view: live
entity: camera.backyard_gate
show_state: false
type: picture-entity
type: vertical-stack
- cards:
- camera_view: live
entity: camera.driveway