-
Notifications
You must be signed in to change notification settings - Fork 3
/
ui-lovelace.yaml
1836 lines (1836 loc) · 60.9 KB
/
ui-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
background: center / cover no-repeat url("/local/bg/BG7.png") fixed
custom_header:
chevrons: false
compact_mode: true
exceptions:
- conditions:
user_agent: Mobile
config:
show_tabs: '14,15,16,17,18,19,20,21,22,23'
- conditions:
user_agent: Windows
config:
show_tabs: '0,1,2,3,4,5,6,7,8,9,10,11,12,13'
- conditions:
device_id: Tablet
config:
show_tabs: '0,1,2,3,4,5,6,7,8,9,10,11,12,13'
hide_help: true
menu_hide: true
resources:
- type: module
url: /local/mini-media-player/mini-media-player-bundle.js?v=1.5.2
- type: module
url: >-
https://cdn.jsdelivr.net/gh/bramkragten/custom-ui@master/weather-card/weather-card.min.js
- type: module
url: /local/custom-lovelace/custom-header/custom-header.js?v=1.3.2
- type: module
url: /local/config-template-card.js
- type: module
url: >-
https://cdn.jsdelivr.net/gh/custom-cards/[email protected]/dist/spotify-card.umd.js
- type: js
url: /local/lovelace-swipe-navigation/swipe-navigation.js?v=1.0.0
swipe_nav:
animate: swipe
prevent_default: true
skip_tabs: '0,1,2,3,4,5,6,7,8,9,10,11,12,13'
swipe_amount: 15
wrap: true
title: Dashboard
views:
- badges: []
cards:
- cards:
- cards:
- entity: climate.living_room
type: thermostat
- camera_view: live
entity: camera.front_door_camera
show_name: false
show_state: false
type: picture-entity
type: vertical-stack
- cards:
- columns: 2
entities:
- entity: switch.livingroom_lights
icon: 'mdi:lightbulb'
tap_action:
action: toggle
- entity: switch.bedroom_lights
icon: 'mdi:lightbulb'
tap_action:
action: toggle
- entity: switch.spare_bedroom_lights
icon: 'mdi:lightbulb'
tap_action:
action: toggle
- entity: switch.basement_lights
icon: 'mdi:lightbulb'
tap_action:
action: toggle
- entity: switch.garage_lights
icon: 'mdi:lightbulb'
tap_action:
action: toggle
- entity: switch.sonoff_1000a02089
icon: 'mdi:lightbulb'
tap_action:
action: toggle
type: glance
- entities:
- entity: sensor.front_door
- entity: sensor.garage_door
- entity: sensor.nursery_door
type: glance
- columns: 2
entities:
- entity: group.lights_all
icon: 'mdi:lightbulb'
name: Toggle All Lights
show_state: false
tap_action:
action: toggle
- entity: group.all_remotes
icon: 'mdi:television-classic'
name: Toggle All TV's
show_state: false
tap_action:
action: toggle
type: glance
type: vertical-stack
- cards:
- entity: weather.dark_sky
type: 'custom:weather-card'
- entities:
- entity: person.patrick
- entity: person.chelsea
type: glance
- entities:
- entity: switch.fdm
icon: 'mdi:motion-sensor'
tap_action:
action: toggle
type: glance
type: vertical-stack
type: horizontal-stack
icon: 'mdi:home'
panel: true
- badges: []
cards:
- cards:
- cards:
- cards:
- columns: 2
entities:
- entity: light.6001949696af_192_168_1_182
icon: 'mdi:sofa'
tap_action:
action: toggle
- entity: light.c44f338194d1_192_168_1_202
icon: 'mdi:led-strip-variant'
tap_action:
action: toggle
- entity: light.end_table_light_1
icon: 'mdi:lamp'
tap_action:
action: toggle
- entity: light.end_table_light_2
icon: 'mdi:lamp'
tap_action:
action: toggle
- entity: light.corner_lamp_1
icon: 'mdi:floor-lamp'
tap_action:
action: toggle
- entity: light.corner_lamp_2
icon: 'mdi:floor-lamp'
tap_action:
action: toggle
- entity: switch.sonoff_10001402d0
icon: 'mdi:ceiling-light'
tap_action:
action: toggle
show_name: true
show_state: false
type: glance
type: horizontal-stack
- cards:
- entities:
- entity: group.livingroom
hold_action:
action: none
icon: 'mdi:lightbulb'
name: Toggle All Lights
tap_action:
action: toggle
show_name: true
show_state: false
type: glance
type: horizontal-stack
type: vertical-stack
- cards:
- entities:
- entity: sensor.living_room_thermostat_temperature
- entity: sensor.living_room_thermostat_humidity
type: glance
- artwork: cover
background: /local/img/media_players/emby.jpg
entity: media_player.emby_theater_hellspawn
hide:
power: true
power_state: true
volume: true
icon: 'mdi:emby'
info: scroll
type: 'custom:mini-media-player'
- artwork: cover
background: /local/img/media_players/google-mini.jpg
entity: media_player.living_room_speaker
hide:
power_state: true
source: true
icon: 'mdi:google'
info: scroll
source: icon
type: 'custom:mini-media-player'
- artwork: cover
background: /local/img/media_players/echo-show5.jpg
entity: media_player.echo_show
hide:
power: true
power_state: true
source: true
icon: 'mdi:amazon-alexa'
info: scroll
source: icon
type: 'custom:mini-media-player'
type: vertical-stack
- cards:
- columns: 1
entities:
- entity: remote.livingroom_hub
icon: 'mdi:television-classic'
name: Watch TV
show_name: true
show_state: false
tap_action:
action: call-service
service: remote.turn_on
service_data:
activity: Watch TV
entity_id: remote.livingroom_hub
type: entity-button
- entity: remote.livingroom_hub
icon: 'mdi:desktop-classic'
name: Use The Computer
show_name: true
show_state: false
tap_action:
action: call-service
service: remote.turn_on
service_data:
activity: The Computer
entity_id: remote.livingroom_hub
type: entity-button
- entity: remote.livingroom_hub
icon: 'mdi:emby'
name: Start Emby Theater
show_name: true
show_state: false
tap_action:
action: call-service
service: remote.turn_on
service_data:
activity: Emby Theater
entity_id: remote.livingroom_hub
type: entity-button
type: glance
- entity: remote.livingroom_hub
icon: 'mdi:power'
name: Turn Off Livingroom TV
tap_action:
action: call-service
service: remote.turn_off
service_data:
entity_id: remote.livingroom_hub
type: entity-button
type: vertical-stack
type: horizontal-stack
icon: 'mdi:sofa'
panel: true
title: Livingroom
- cards:
- cards:
- cards:
- cards:
- columns: 3
entities:
- entity: switch.fish_tank
icon: 'mdi:fish'
tap_action:
action: toggle
- entity: light.bedroom_tv_light
icon: 'mdi:led-strip-variant'
tap_action:
action: toggle
- entity: light.dresser_light
icon: 'mdi:lamp'
tap_action:
action: toggle
- entity: light.corner_light
icon: 'mdi:floor-lamp'
tap_action:
action: toggle
- entity: light.lamp
icon: 'mdi:floor-lamp'
tap_action:
action: toggle
- entity: switch.sonoff_1000280b79
icon: 'mdi:lightbulb'
tap_action:
action: toggle
show_name: true
show_state: false
type: glance
type: horizontal-stack
- cards:
- entities:
- entity: group.bedroom
hold_action:
action: none
icon: 'mdi:lightbulb'
name: Toggle All Lights
tap_action:
action: toggle
show_name: true
show_state: false
type: glance
type: horizontal-stack
- entity: switch.fish_feeder
hold_action:
action: none
icon: 'mdi:fish'
name: Feed Fish
tap_action:
action: toggle
type: entity-button
type: vertical-stack
- cards:
- entities:
- entity: sensor.temperature_bedroom
- entity: sensor.humidity_bedroom
type: glance
- artwork: cover
background: /local/img/media_players/emby.jpg
entity: media_player.emby_theater_bedroom
hide:
power: true
power_state: true
volume: true
icon: 'mdi:emby'
info: scroll
type: 'custom:mini-media-player'
- artwork: cover
background: /local/img/media_players/echo-spot.jpg
entity: media_player.bedroom
hide:
power: true
power_state: true
source: true
icon: 'mdi:amazon-alexa'
info: scroll
source: icon
type: 'custom:mini-media-player'
type: vertical-stack
- cards:
- columns: 1
entities:
- entity: remote.bedroom_hub
icon: 'mdi:television-classic'
name: Watch TV
show_name: true
show_state: false
tap_action:
action: call-service
service: remote.turn_on
service_data:
activity: Watch TV
entity_id: remote.bedroom_hub
type: entity-button
- entity: remote.bedroom_hub
icon: 'mdi:desktop-classic'
name: Use The Computer
show_name: true
show_state: false
tap_action:
action: call-service
service: remote.turn_on
service_data:
activity: The Computer
entity_id: remote.bedroom_hub
type: entity-button
- entity: remote.bedroom_hub
icon: 'mdi:emby'
name: Start Emby Theater
show_name: true
show_state: false
tap_action:
action: call-service
service: remote.turn_on
service_data:
activity: Emby Theater
entity_id: remote.bedroom_hub
type: entity-button
type: glance
- entity: remote.bedroom_hub
icon: 'mdi:power'
name: Turn Off Bedroom TV
tap_action:
action: call-service
service: remote.turn_off
service_data:
entity_id: remote.bedroom_hub
type: entity-button
type: vertical-stack
type: horizontal-stack
icon: 'mdi:hotel'
panel: true
title: Bedroom
- badges: []
cards:
- entities:
- entity: sensor.temperature_nursery
- entity: sensor.humidity_nursery
- entity: sensor.nursery_door
type: glance
- cards:
- entities:
- entity: light.nursery
icon: 'mdi:floor-lamp'
name: Nursery Light
tap_action:
action: toggle
show_name: true
show_state: false
type: glance
type: horizontal-stack
- artwork: cover
background: /local/img/media_players/echo-dot1.jpg
entity: media_player.nursery
hide:
power: true
power_state: true
source: true
icon: 'mdi:amazon-alexa'
info: scroll
source: icon
type: 'custom:mini-media-player'
icon: 'mdi:bed-empty'
title: Nursery
- badges: []
cards:
- cards:
- cards:
- cards:
- columns: 2
entities:
- entity: light.basement_lamp
icon: 'mdi:floor-lamp'
tap_action:
action: toggle
- entity: switch.sonoff_1000280a7e
icon: 'mdi:ceiling-light'
tap_action:
action: toggle
- entity: switch.pool_table_light
icon: 'mdi:billiards-rack'
tap_action:
action: toggle
- entity: switch.sonoff_10006a712e
icon: 'mdi:bullseye-arrow'
tap_action:
action: toggle
- entity: light.hallway_light
icon: 'mdi:ceiling-light'
tap_action:
action: toggle
show_name: true
show_state: false
type: glance
type: horizontal-stack
- cards:
- entities:
- entity: group.basement
hold_action:
action: none
icon: 'mdi:lightbulb'
name: Toggle All Lights
tap_action:
action: toggle
show_name: true
show_state: false
type: glance
type: horizontal-stack
type: vertical-stack
- cards:
- entities:
- entity: sensor.temperature_basement
- entity: sensor.humidity_basement
type: glance
- artwork: cover
background: /local/img/media_players/emby.jpg
entity: media_player.emby_androidtv_basement
hide:
power: true
power_state: true
volume: true
icon: 'mdi:emby'
info: scroll
type: 'custom:mini-media-player'
- artwork: cover
background: /local/img/media_players/echo-dot1.jpg
entity: media_player.basement
hide:
power: true
power_state: true
source: true
icon: 'mdi:amazon-alexa'
info: scroll
source: icon
type: 'custom:mini-media-player'
type: vertical-stack
- cards:
- entity: remote.basement_hub
icon: 'mdi:theater'
name: Turn On Theater
tap_action:
action: call-service
service: remote.turn_on
service_data:
activity: Projector
entity_id: remote.basement_hub
type: entity-button
- entity: remote.basement_hub
icon: 'mdi:power'
name: Turn Off Theater
tap_action:
action: call-service
service: remote.turn_off
service_data:
entity_id: remote.basement_hub
type: entity-button
type: vertical-stack
type: horizontal-stack
icon: 'mdi:theater'
panel: true
title: Basement
- badges: []
cards:
- cards:
- cards:
- columns: 2
entities:
- entity: switch.hac1_channel_2
icon: 'mdi:radiator'
tap_action:
action: toggle
- entity: switch.hac1_channel_1
icon: 'mdi:fan'
tap_action:
action: toggle
- entity: switch.hac1_channel_3
icon: 'mdi:water'
tap_action:
action: toggle
- entity: switch.hac1_channel_4
icon: 'mdi:power'
tap_action:
action: toggle
- entity: switch.hac1_channel_5
icon: 'mdi:power-standby'
tap_action:
action: toggle
- entity: switch.hac1_channel_6
icon: 'mdi:power-standby'
tap_action:
action: toggle
- entity: switch.hac1_channel_7
icon: 'mdi:power-standby'
tap_action:
action: toggle
- entity: switch.hac1_channel_8
icon: 'mdi:power-standby'
tap_action:
action: toggle
- entity: light.dc4f22f77058_192_168_1_162
icon: 'mdi:lightbulb'
tap_action:
action: toggle
show_name: true
show_state: false
type: glance
- card:
entities:
- entity: sensor.hac1_wifi_signal
icon: >-
${vars[0] >= 80 ? 'mdi:wifi-strength-1' : vars[0] >= 70
? 'mdi:wifi-strength-2' : vars[0] >= 60 ?
'mdi:wifi-strength-3' : 'mdi:wifi' }
name: >-
${'Pool Controller WiFi Signal: ' + ( vars[0] >= 80 ?
'Weak' : vars[0] >= 70 ? 'Fair' : vars[0] >= 60 ? 'Good'
: vars[0] <= 59 ? 'Excellent' : ' ')}
show_header_toggle: false
type: 'custom:hui-entities-card'
entities:
- sensor.hac1_wifi_signal
type: 'custom:config-template-card'
variables:
- 'states[''sensor.hac1_wifi_signal''].state'
type: vertical-stack
- cards:
- entities:
- entity: sensor.dark_sky_temperature
- entity: sensor.dark_sky_humidity
type: glance
- artwork: cover
background: /local/img/media_players/google-mini.jpg
entity: media_player.backyard_speaker
hide:
power_state: true
source: true
icon: 'mdi:google'
info: scroll
source: icon
type: 'custom:mini-media-player'
- entities:
- entity: switch.hac1_software_switch_1
icon: 'mdi:coolant-temperature'
tap_action:
action: toggle
- entity: switch.pool_pump_timer
icon: 'mdi:timer'
tap_action:
action: toggle
show_name: true
show_state: true
type: glance
type: vertical-stack
- cards:
- entity: climate.pool_temperature
type: thermostat
unit: °F
- entities:
- entity: switch.hac1_software_switch_2
icon: 'mdi:wrench'
tap_action:
action: toggle
show_name: true
show_state: true
type: glance
type: vertical-stack
type: horizontal-stack
icon: 'mdi:pool'
panel: true
path: ''
title: Backyard
- badges: []
cards:
- entities:
- entity: sensor.temperature_garage
- entity: sensor.humidity_garage
- entity: sensor.garage_door
type: glance
- cards:
- entities:
- entity: switch.workbench_light
icon: 'mdi:ceiling-light'
name: Workbench Light
tap_action:
action: toggle
- entity: switch.garage_fan
icon: 'mdi:fan'
name: Garage Fan
tap_action:
action: toggle
show_name: true
show_state: false
type: glance
type: horizontal-stack
- entities:
- entity: switch.sonoff_1000a02089
icon: 'mdi:lightbulb'
name: Front Door Light
tap_action:
action: toggle
show_name: true
show_state: false
type: glance
- artwork: cover
background: /local/img/media_players/emby.jpg
entity: media_player.firetv_stick
hide:
power: true
power_state: true
volume: true
icon: 'mdi:emby'
info: scroll
type: 'custom:mini-media-player'
- artwork: cover
background: /local/img/media_players/echo-dot2.jpg
entity: media_player.garage
hide:
power: true
power_state: true
source: true
icon: 'mdi:amazon-alexa'
info: scroll
source: icon
type: 'custom:mini-media-player'
icon: 'mdi:garage'
panel: false
title: Garage
- badges: []
cards:
- entities:
- entity: camera.composite_weather_radar
- entity: camera.local_weather_radar
show_state: false
title: Weather Radar
type: glance
icon: 'mdi:weather-partly-cloudy'
title: Weather
- badges: []
cards:
- cards:
- cards:
- camera_view: live
entity: camera.front_door_camera
show_name: false
show_state: false
type: picture-entity
- camera_view: live
entity: camera.backyard_camera
show_name: false
show_state: false
type: picture-entity
type: horizontal-stack
- cards:
- camera_view: live
entity: camera.nursery_camera
show_name: false
show_state: false
type: picture-entity
- camera_view: live
entity: camera.livingroom_camera
show_name: false
show_state: false
type: picture-entity
type: horizontal-stack
type: vertical-stack
icon: 'mdi:cctv'
panel: true
title: Security Cameras
- badges: []
cards:
- cards:
- entity: alarm_control_panel.home_alarm
name: Alarm Control Panel
states:
- arm_away
theme: default
type: alarm-panel
- card:
entities:
- entity: sensor.alarm_panel_wifi_signal
icon: >-
${vars[0] >= 80 ? 'mdi:wifi-strength-3' : vars[0] >= 70 ?
'mdi:wifi-strength-2' : vars[0] >= 60 ?
'mdi:wifi-strength-1' : 'mdi:wifi' }
name: "${'Alarm Panel WiFi Signal: ' + '\_'.repeat(3) + ( vars[0] >= 80 ? 'Weak' : vars[0] >= 70 ? 'Fair' : vars[0] >= 60 ? 'Good' : 'Excellent' )}"
show_header_toggle: false
type: 'custom:hui-entities-card'
entities:
- sensor.alarm_panel_wifi_signal
type: 'custom:config-template-card'
variables:
- 'states[''sensor.alarm_panel_wifi_signal''].state'
type: vertical-stack
icon: 'mdi:shield-home'
panel: false
title: Alarm Panel
- badges: []
cards:
- artwork: cover
background: /local/img/media_players/spotify.jpg
entity: media_player.spotify
hide:
power: true
power_state: true
icon: 'mdi:spotify'
info: scroll
source: icon
type: 'custom:mini-media-player'
- client_id: !secret spotify_id
type: 'custom:spotify-card'
icon: 'mdi:spotify'
path: spotify
title: Spotify
- badges: []
cards:
- cards:
- cards:
- entity: sensor.speedtest_download
max: 7
min: 0
name: Network Download Speed
severity:
green: 0
red: 5.5
yellow: 4.5
theme: speedtest_gauge
type: gauge
- entity: sensor.speedtest_upload
max: 1.5
min: 0
name: Network Upload Speed
severity:
green: 0
red: 0.75
yellow: 0.5
theme: speedtest_gauge
type: gauge
- entities:
- entity: sensor.speedtest_ping
show_header_toggle: false
type: entities
- entity: sensor.speedtest_last_updated
type: sensor
type: vertical-stack
- cards:
- entity: switch.hass_restart
hold_action:
action: none
icon: 'mdi:restart'
name: Restart Home Assistant
show_icon: true
show_name: true
tap_action:
action: call-service
service: homeassistant.restart
type: entity-button
- entity: switch.update_speedtest
hold_action:
action: none
icon: 'mdi:speedometer'
tap_action:
action: call-service
service: speedtestdotnet.speedtest
theme: Backend-selected
type: entity-button
type: vertical-stack
- cards:
- entity: sensor.deluge_down_speed
max: 800
min: 0
name: Torrent Download Speed
severity:
green: 0
red: 400
yellow: 250
theme: speedtest_gauge
type: gauge
- entity: sensor.deluge_up_speed
max: 50
min: 0
name: Torrent Upload Speed
severity:
green: 0
red: 38
yellow: 20
theme: speedtest_gauge
type: gauge
- entity: switch.deluge_switch
type: entity-button
type: vertical-stack
type: horizontal-stack
icon: 'mdi:settings'
panel: true
title: Internet
- cards:
- cards:
- entities:
- entity: person.patrick
- entity: person.chelsea
type: glance
type: horizontal-stack
- cards:
- entity: sensor.patricks_phone_battery
max: 100
min: 0
severity:
green: 0
red: 40
yellow: 15
theme: speedtest_gauge
type: gauge
- entity: sensor.iphone_battery_level
max: 100
min: 0
name: Chelsea's Phone Battery
severity:
green: 0
red: 40
yellow: 15
theme: speedtest_gauge
type: gauge
type: horizontal-stack
icon: 'mdi:account-multiple'
- cards:
- cards:
- entities:
- entity: person.chelsea
- entity: person.patrick
- entity: zone.home
type: map
type: vertical-stack
icon: 'mdi:map'
panel: true
- badges: []
cards:
- cards:
- entities:
- sensor.front_door
- sensor.garage_door
show_header_toggle: false
title: HOME
type: entities
- entity: weather.dark_sky
type: 'custom:weather-card'
- entity: climate.living_room
name: Livingroom
type: thermostat
type: vertical-stack
- cards:
- cards:
- entity: switch.livingroom_lights
icon: 'mdi:lightbulb'
tap_action:
action: toggle
type: entity-button
- entity: switch.bedroom_lights
icon: 'mdi:lightbulb'
tap_action:
action: toggle
type: entity-button
type: horizontal-stack
- cards:
- entity: switch.spare_bedroom_lights
icon: 'mdi:lightbulb'
tap_action:
action: toggle
type: entity-button
- entity: switch.basement_lights
icon: 'mdi:lightbulb'
tap_action:
action: toggle
type: entity-button
type: horizontal-stack
- cards:
- entity: switch.garage_lights
icon: 'mdi:lightbulb'
tap_action:
action: toggle
type: entity-button
- entity: switch.sonoff_1000a02089
icon: 'mdi:lightbulb'
tap_action:
action: toggle
type: entity-button
type: horizontal-stack
- entities:
- entity: group.lights_all
icon: 'mdi:lightbulb'
name: Toggle All Lights
- entity: group.all_remotes
icon: 'mdi:television-classic'
name: Toggle All TV's
show_state: false
type: glance
- aspect_ratio: 50%
camera_view: live
entity: camera.front_door_camera
show_name: false
show_state: false
type: picture-entity
- entities:
- entity: person.patrick
- entity: person.chelsea
type: glance
- entities:
- entity: switch.fdm
icon: 'mdi:motion-sensor'
tap_action:
action: toggle
type: glance
type: vertical-stack
icon: 'mdi:home'
path: home-mobile
title: Home (Mobile)
type: vertical-stack
- badges: []
cards:
- content: ' '
title: LIVINGROOM
type: markdown
- cards:
- entities:
- entity: sensor.living_room_thermostat_temperature
name: Temperature
- entity: sensor.living_room_thermostat_humidity
name: Humidity
type: glance
type: horizontal-stack
- cards:
- entity: light.6001949696af_192_168_1_182
hold_action:
action: more-info