forked from geekofweek/homeassistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlovelace.yaml
executable file
·2164 lines (2164 loc) · 71.8 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
resources:
- type: module
url: /hacsfiles/lovelace-auto-entities/auto-entities.js
title: Home
views:
- badges: []
cards:
- 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
show_name: false
- 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
- 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
state_color: true
type: vertical-stack
- cards:
- 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
state_color: true
- entity: switch.backyard_lighting
state_color: true
title: Exterior Lights
type: entities
state_color: true
type: vertical-stack
- cards:
- entities:
- entity: vacuum.main_floor_roomba
- entity: vacuum.upstairs_roomba
- entity: vacuum.basement_roomba
title: Vacuums
type: glance
state_color: true
- card:
entity: binary_sensor.upstairs_roomba_bin_full
hold_action:
action: none
icon_height: 50px
show_icon: true
show_name: true
tap_action:
action: none
type: button
conditions:
- entity: binary_sensor.upstairs_roomba_bin_full
state: 'on'
type: conditional
- card:
entity: binary_sensor.basement_roomba_bin_full
hold_action:
action: none
icon_height: 50px
show_icon: true
show_name: true
tap_action:
action: none
type: button
conditions:
- entity: binary_sensor.basement_roomba_bin_full
state: 'on'
type: conditional
- entities:
- entity: input_select.living_room_tv_remote
name: Living Room
- entity: input_select.bedroom_tv_remote
name: Bedroom
- entity: input_select.USER1_s_office_tv_remote
name: USER1's Office
show_icon: true
show_state: true
title: TV Remote
type: glance
state_color: false
- entities:
- entity: climate.main_floor
- entity: switch.fireplace
hold_action:
action: more-info
tap_action:
action: toggle
- entity: climate.USER1s_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
state_color: true
- entities:
- entity: lock.front_door
name: Front Door
- entity: lock.back_door
name: Back Door
- entity: lock.basement_door
name: Basement Door
title: Locks
type: glance
state_color: true
- entity: cover.garage_door
hold_action:
action: more-info
show_icon: true
show_name: true
tap_action:
action: toggle
type: button
type: vertical-stack
- cards:
- aspect_ratio: 56%
camera_view: live
entity: camera.front_porch
show_name: true
show_state: false
type: picture-entity
- cards:
- aspect_ratio: 56%
camera_view: live
entity: camera.driveway
show_name: true
show_state: false
type: picture-entity
type: vertical-stack
type: vertical-stack
- cards:
- aspect_ratio: 56%
camera_view: live
entity: camera.garage
show_state: false
type: picture-entity
- aspect_ratio: 56%
camera_view: live
entity: camera.backyard_gate
show_state: false
type: picture-entity
type: vertical-stack
- cards:
- aspect_ratio: 56%
camera_view: live
entity: camera.backyard
show_state: false
type: picture-entity
- aspect_ratio: 56%
camera_view: live
entity: camera.side_yard
show_state: false
type: picture-entity
type: vertical-stack
- card:
aspect_ratio: 56%
camera_view: live
entity: camera.living_room
show_state: false
type: picture-entity
conditions:
- entity: camera.living_room
state: recording
type: conditional
- card:
aspect_ratio: 56%
camera_view: live
entity: camera.basement
show_state: false
type: picture-entity
conditions:
- entity: camera.basement
state: recording
type: conditional
- card:
aspect_ratio: 56%
camera_view: live
entity: camera.kitchen
show_state: false
type: picture-entity
conditions:
- entity: camera.kitchen
state: recording
type: conditional
icon: 'mdi:home'
path: home
title: Home
- 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: light.living_room_ceiling_east
name: Ceiling (East)
- entity: light.living_room_ceiling_west
name: Ceiling (West)
show_header_toggle: false
title: Living Room
type: entities
state_color: true
- type: grid
cards:
- type: button
tap_action:
action: toggle
entity: switch.fireplace
- type: button
tap_action:
action: more-info
entity: vacuum.main_floor_roomba
name: Roomba
- type: button
tap_action:
action: toggle
entity: lock.front_door
name: Door Lock
- type: button
tap_action:
action: toggle
entity: fan.living_room_east
name: East Fan
- type: button
tap_action:
action: toggle
entity: fan.living_room_west
name: West Fan
- type: button
tap_action:
action: toggle
entity: switch.livingroom_rainbow
name: Random Colors
square: true
- 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
icon: 'mdi:run-fast'
name: Motion
show_state: false
theme: default
type: glance
state_color: true
- 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
state_color: true
type: vertical-stack
- cards:
- type: grid
title: Media
cards:
- type: button
tap_action:
action: toggle
entity: switch.living_room_tv_watch_tv
show_state: false
- type: button
tap_action:
action: toggle
entity: switch.living_room_tv_play_xbox
- type: button
tap_action:
action: toggle
entity: switch.living_room_tv_play_nintendo_switch
- type: button
tap_action:
action: toggle
entity: switch.living_room_tv_play_sonos
columns: 4
square: false
- entities:
- entity: input_select.sonos
show_header_toggle: false
type: entities
footer:
type: buttons
entities:
- input_boolean.group_all_sonos
- cards:
- entity: media_player.living_room_appletv
type: media-control
- entity: media_player.sonos_living_room
type: media-control
- entity: media_player.sonos_surround_sound
type: media-control
type: vertical-stack
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
state_color: true
- cards:
- entity: lock.back_door
hold_action:
action: more-info
icon_height: 75px
show_icon: true
show_name: true
tap_action:
action: toggle
type: entity-button
name: Door Lock
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
icon: 'mdi:run-fast'
name: Motion
- entity: binary_sensor.kitchen_sink_water_sensor
name: Water Sensor
show_state: false
theme: default
type: glance
state_color: true
- 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
state_color: true
- 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
state_color: true
- 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
state_color: true
- 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
state_color: true
- 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
name: 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
state_color: true
- type: grid
cards:
- type: button
tap_action:
action: toggle
entity: cover.bedroom_closet_blinds
name: Blinds
icon: 'mdi:blinds'
- type: button
tap_action:
action: toggle
entity: switch.bedtime
- type: button
tap_action:
action: toggle
entity: switch.bedroom_rainbow
name: Random Colors
square: true
columns: 3
- 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
icon: 'mdi:run-fast'
name: Closet Motion
show_state: false
theme: default
type: glance
state_color: true
- type: glance
entities:
- entity: cover.bedroom_closet_blinds_left
name: Left
icon: 'mdi:blinds'
- entity: cover.bedroom_closet_blinds_center
name: Center
icon: 'mdi:blinds'
- entity: cover.bedroom_closet_blinds_right
name: Right
icon: 'mdi:blinds'
show_state: false
state_color: true
- entities:
- entity: sensor.bedroom_nest_protect_color_status
name: Smoke Detector
show_state: true
theme: default
type: glance
state_color: true
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
state_color: true
- 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
state_color: true
type: vertical-stack
- cards:
- type: grid
title: Media
cards:
- type: button
tap_action:
action: toggle
entity: switch.bedroom_tv_watch_tv
- type: button
tap_action:
action: toggle
entity: switch.bedroom_sonos_speech_enhance
name: Speech Enhance
- type: button
tap_action:
action: toggle
entity: switch.bedroom_sonos_night_sound
name: Night Sound
square: false
columns: 3
- entity: media_player.sonos_bedroom
type: media-control
- type: media-control
entity: media_player.sonos_bedroom_closet
- entity: media_player.bedroom_apple_tv
type: media-control
- entity: media_player.guest_bedroom_apple_tv
type: media-control
type: vertical-stack
icon: 'mdi:bed'
path: bedrooms
title: Bedrooms
- badges: []
cards:
- cards:
- entities:
- entity: light.bathroom_vanity
name: Vanity Light
- entity: light.bathroom_shower
name: Shower Light
show_header_toggle: false
title: Bathroom
type: entities
state_color: true
- type: horizontal-stack
cards:
- type: sensor
graph: line
entity: sensor.bathroom_temperature
name: Temperature
- type: sensor
graph: line
entity: sensor.bathroom_humidity
name: Humidity
- entities:
- entity: binary_sensor.bathroom_occupancy
name: Occupancy
- entity: binary_sensor.bathroom_motion
name: Motion
icon: 'mdi:run-fast'
- entity: binary_sensor.bathroom_sink_water_sensor
name: Water Sensor
show_state: false
theme: default
type: glance
state_color: true
- type: glance
entities:
- entity: sensor.bathroom_light_level
name: Light Level
- entity: media_player.sonos_bathroom
type: media-control
type: vertical-stack
- cards:
- entities:
- entity: light.upstairs_bathroom_vanity
name: Vanity Light
show_header_toggle: false
title: Upstairs Bathroom
type: entities
state_color: true
- entities:
- entity: binary_sensor.upstairs_bathroom_motion
icon: 'mdi:run-fast'
name: Motion
- entity: binary_sensor.upstairs_bathrooom_water_sensor
name: Water Sensor
show_state: false
theme: default
type: glance
state_color: true
- entities:
- entity: sensor.upstairs_bathroom_light_level
name: Light Level
show_state: true
theme: default
type: glance
state_color: true
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
state_color: true
- type: grid
cards:
- type: button
tap_action:
action: toggle
entity: cover.USER1_s_office_blinds
name: Blinds
icon: 'mdi:blinds'
- type: button
tap_action:
action: more-info
entity: vacuum.upstairs_roomba
name: Roomba
- type: button
tap_action:
action: toggle
entity: fan.USER1s_office_fan
name: Fan
- type: button
tap_action:
action: toggle
entity: switch.air_purifier
name: Air Purifier
- type: button
tap_action:
action: more-info
entity: climate.USER1s_office_fan
name: Heater
show_state: false
- type: button
tap_action:
action: toggle
entity: switch.office_rainbow
name: Random Colors
square: true
- cards:
- entity: sensor.office_temperature
graph: line
name: Temperature
type: sensor
- entity: sensor.USER1s_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
icon: 'mdi:run-fast'
name: Motion
show_state: false
theme: default
type: glance
state_color: true
- type: glance
entities:
- entity: cover.USER1s_office_blinds_left
name: Left
icon: 'mdi:blinds'
- entity: cover.USER1s_office_blinds_center
name: Center
icon: 'mdi:blinds'
- entity: cover.USER1s_office_blinds_right
name: Right
icon: 'mdi:blinds'
show_state: false
state_color: true
- entities:
- entity: sensor.USER1s_office_light_level
name: Light Level
show_state: true
theme: default
type: glance
state_color: true
type: vertical-stack
- cards:
- entities:
- entity: light.USER2_s_office_ceiling
name: Ceiling
show_header_toggle: false
title: USER2's Office
type: entities
state_color: true
- type: button
tap_action:
action: toggle
entity: cover.USER2_s_office_blinds
icon: 'mdi:blinds'
name: Blinds
icon_height: 75px
- 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
icon: 'mdi:run-fast'
name: Motion
show_state: false
theme: default
type: glance
state_color: true
- type: glance
entities:
- entity: cover.USER2s_office_blinds_left
name: Left
icon: 'mdi:blinds'
- entity: cover.USER2s_office_blinds_right
name: Right
icon: 'mdi:blinds'
show_state: false
show_name: true
state_color: true
- entities:
- entity: sensor.USER2s_office_light_level
name: Light Level
show_state: true
theme: default
type: glance
state_color: true
type: vertical-stack
- cards:
- type: grid
title: Media
cards:
- type: button
tap_action:
action: toggle
entity: switch.USER1_s_office_tv_watch_tv
- type: button
tap_action:
action: toggle
entity: switch.USER1_s_office_tv_play_xbox_one
columns: 2
square: false
- entity: media_player.USER1_s_office_apple_tv
type: media-control
- entity: media_player.sonos_USER1s_office
type: media-control
- entity: media_player.sonos_USER1s_office_move
type: media-control
- entity: media_player.sonos_USER2s_office
type: media-control
type: vertical-stack
icon: 'mdi:desk'
path: offices
title: Offices
- icon: 'mdi:stairs-down'
path: basements
title: Basement
badges: []
cards:
- cards:
- entities:
- entity: light.basement_stairs
- entity: light.basement_lights
- entity: light.work_bench_light
show_header_toggle: false
title: Basement
type: entities
state_color: true
- type: grid
cards:
- type: button
tap_action:
action: more-info
entity: vacuum.basement_roomba
name: Roomba
- type: button
tap_action:
action: toggle
entity: switch.basement_heater
name: Heater
- type: button
tap_action:
action: toggle
entity: lock.basement_door
name: Door Lock
square: true
- 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
icon: 'mdi:run-fast'
name: Motion
- entity: binary_sensor.basement_drain_water_sensor_liquid_detected
name: Drain
- entity: binary_sensor.washing_machine_water_sensor
name: Washer
- entity: binary_sensor.utility_sink_water_sensor
name: Utiility Sink
- entity: binary_sensor.basement_door_water_sensor
name: Door
- entity: binary_sensor.coal_room_water_sensor
name: Coal Room
- entity: binary_sensor.sump_pump_water_sensor_liquid_detected
name: Sump Pump
show_state: false
theme: default
type: glance
state_color: true
columns: 3
- entities:
- entity: switch.water_main
- entity: binary_sensor.sump_pump_status
- entity: sensor.basement_nest_protect_color_status
name: Smoke Alarm
type: glance
state_color: true
columns: 3
- type: media-control
entity: media_player.sonos_move
type: vertical-stack
- cards:
- entities:
- entity: light.laundry_room_light
show_header_toggle: false
title: Laundry Room
type: entities
state_color: true
- entities:
- entity: sensor.washer
- entity: sensor.dryer
title: Laundry
type: glance
state_color: true
- card:
entity: sensor.washing_machine_time_remaining
type: entity
conditions:
- entity: sensor.washer
state: 'on'
type: conditional
- card:
entity: sensor.washer_error
type: entity
conditions:
- entity: binary_sensor.washer_error_state
state: 'on'
type: conditional
- card:
entities:
- entity: binary_sensor.washer_tub_clean_on
show_name: false
show_state: false
title: Run Washer Tub Clean
type: glance
conditions:
- entity: binary_sensor.washer_tub_clean_on
state: 'on'
type: conditional
- card:
entity: sensor.dryer_time_remaining
type: entity
conditions:
- entity: sensor.dryer
state: 'on'
type: conditional
- card:
entity: sensor.dryer_error
type: entity
conditions:
- entity: binary_sensor.dryer_error_state
state: 'on'
type: conditional
- 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
state_color: true
type: vertical-stack
- type: vertical-stack
cards:
- type: entities
entities:
- entity: light.craft_room_ceiling
name: Ceiling
title: Craft Room
state_color: true
show_header_toggle: false
- type: horizontal-stack
cards:
- type: sensor
graph: line
entity: sensor.craft_room_temperature
name: Temperature
- type: sensor
graph: line
entity: sensor.craft_room_humidity
name: Humidity
- type: glance
entities:
- entity: binary_sensor.craft_room_motion
name: Motion
icon: 'mdi:run-fast'
show_state: false
- type: glance
entities:
- entity: sensor.craft_room_light_level
name: Light Level
- type: media-control
entity: media_player.craft_room_apple_tv
- type: media-control
entity: media_player.sonos_craft_room