forked from arsaboo/homeassistant-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui-lovelace.yaml
executable file
·2787 lines (2774 loc) · 93.1 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
title: ARS Home
views:
- icon: mdi:home-assistant
id: home
# Name of the view. Will be used as the tooltip for tab icon
title: Home
# theme: darkorange
cards:
- type: picture-elements
# title: Main Level
image: /local/floorplans/main.jpg
elements:
- type: image
entity: input_boolean.abodeupdate
tap_action:
action: toggle
state_image:
'on': /local/icons/abode_enabled.png
'off': /local/icons/abode_disabled.png
style:
top: 4%
left: 30%
width: 7%
- type: image
entity: input_boolean.tvtime
tap_action:
action: toggle
state_image:
'on': /local/icons/tv_enabled.png
'off': /local/icons/tv_disabled.png
style:
top: 4%
left: 40%
width: 7%
- type: image
entity: switch.security_armed
tap_action:
action: toggle
state_image:
'on': /local/icons/security_armed_red.png
'off': /local/icons/security_disarmed.png
style:
top: 4%
left: 50%
width: 7%
- type: image
entity: input_boolean.homeautomation
tap_action:
action: toggle
state_image:
'on': /local/icons/automation_enabled.png
'off': /local/icons/automation_disabled.png
style:
top: 4%
left: 60%
width: 7%
# Kitchen
- type: image
entity: light.kitchen_lights
tap_action:
action: toggle
image: /local/icons/light_bulb_off.png
state_image:
'on': /local/icons/light_bulb_on.png
state_filter:
'on': brightness(130%) saturate(1.5) drop-shadow(0px 0px 10px gold)
'off': brightness(80%) saturate(0.8)
style:
top: 48%
left: 11%
width: 7%
padding: 50px 50px 100px 50px
- type: state-icon
entity: binary_sensor.water_leak_sensor_158d00027b0db6
style:
top: 42%
left: 21%
- type: state-icon
entity: binary_sensor.water_leak_sensor_158d00024bfa97
style:
top: 62%
left: 22%
- type: image
entity: camera.porch
image: /local/icons/camera_porch_streaming.png
state_image:
'recording': /local/icons/camera_porch_recording.png
style:
top: 90%
left: 3%
width: 7%
transform: none
- type: image
entity: camera.patio
image: /local/icons/camera_patio_streaming.png
state_image:
'recording': /local/icons/camera_patio_recording.png
style:
top: 12%
left: 3%
width: 7%
transform: none
- type: image
entity: camera.backyard
image: /local/icons/camera_backyard_streaming.png
state_image:
'recording': /local/icons/camera_backyard_recording.png
style:
top: 12%
left: 90%
width: 7%
transform: none
# - type: icon
# icon: mdi:cctv
# entity: camera.backyard
# style:
# top: 11%
# left: 90%
# transform: rotate(60deg)
# --iron-icon-height: 40px
# --iron-icon-width: 40px
# --iron-icon-stroke-color: black
# --iron-icon-fill-color: rgba(50, 50, 50, .75)
- type: image
entity: camera.driveway
image: /local/icons/camera_driveway_streaming.png
state_image:
'recording': /local/icons/camera_driveway_recording.png
style:
top: 81.5%
left: 90%
width: 7%
transform: none
# Living Room
- type: image
entity: light.living_room_lights
tap_action:
action: toggle
hold_action:
action: more-info
image: /local/icons/light_bulb_off.png
state_image:
'on': /local/icons/light_bulb_on.png
state_filter:
'on': brightness(130%) saturate(1.5) drop-shadow(0px 0px 10px gold)
'off': brightness(80%) saturate(0.8)
style:
top: 38%
left: 50%
width: 7%
padding: 50px 50px 100px 50px
# - type: custom:circle-sensor-card
# entity: sensor.livingroom_temp_rounded
# max: 100
# min: 60
# stroke_width: 10
# font_size: 11px
# gradient: true
# color_stops:
# 70: '#55FF55'
# 80: '#5555FF'
# 90: '#FF5555'
# style:
# top: 43%
# left: 50%
# width: 27px
# height: 27px
# 'font-weight': bold
# 'font-family': Helvetica
- type: state-label
entity: sensor.livingroom_temp_rounded
style:
top: 43%
left: 50%
background: center / contain no-repeat url("/local/icons/ecobee_blank.png")
text-align: center
font-size: 12px
color: white
font-family: Helvetica
# 'display': block
# 'overflow': hidden
# 'background-color': gray
# 'background-color': red
# 'border-radius': 100%
# 'width': 27px
# 'height': 27px
# 'border-radius': 50%
# 'width': 20px
# 'height': 20px
# 'opacity': 0.8
- type: state-icon
entity: binary_sensor.motion_sensor_158d00016daecc
style:
top: 27%
left: 50%
- type: state-icon
entity: binary_sensor.back_door
style:
top: 17%
left: 15%
- type: image
entity: media_player.sammytv
tap_action:
action: toggle
image: /local/icons/tv_off2.png
state_image:
'on': /local/icons/tv_on2.png
state_filter:
'on': drop-shadow(-5px 0 10px gold)
'off': brightness(80%) saturate(0.8)
style:
top: 29%
left: 68.3%
width: 2.5%
padding: 10px 0 10px 30px
# Guest Room
- type: state-icon
entity: binary_sensor.motion_sensor_158d0001a1f2ab
style:
top: 27%
left: 85%
- type: state-icon
entity: binary_sensor.water_leak_sensor_158d0001bb788c
style:
top: 42%
left: 85%
# Porch
# - type: state-icon
# tap_action: toggle
# entity: switch.wemoporch
# style:
# top: 95%
# left: 22%
- type: image
entity: switch.wemoporch
tap_action:
action: toggle
image: /local/icons/light_bulb_off.png
state_image:
'on': /local/icons/light_bulb_on.png
state_filter:
'on': brightness(130%) saturate(1.5) drop-shadow(0px 0px 10px gold)
'off': brightness(80%) saturate(0.8)
style:
top: 93.5%
left: 20%
width: 7%
padding: 10px
- type: state-icon
entity: binary_sensor.front_door_motion_2
style:
top: 95%
left: 32%
# Garage
- type: state-icon
entity: binary_sensor.door_window_sensor_158d0001bf26df
style:
top: 64%
left: 56%
- type: image
entity: light.lifx5
tap_action:
action: toggle
image: /local/icons/light_bulb_off.png
state_image:
'on': /local/icons/light_bulb_on.png
state_filter:
'on': brightness(130%) saturate(1.5) drop-shadow(0px 0px 10px gold)
'off': brightness(80%) saturate(0.8)
style:
top: 62%
left: 78%
width: 7%
padding: 10px
- type: image
entity: switch.driveway
tap_action:
action: toggle
image: /local/icons/light_off.png
state_image:
'on': /local/icons/light_on.png
state_filter:
'on': drop-shadow(-5px -5px 10px gold)
'off': brightness(80%) saturate(0.8)
style:
top: 79.5%
left: 72%
width: 7%
padding: 10px
transform: none
- type: image
entity: cover.garagedoor
tap_action:
action: toggle
image: /local/icons/garage_door_closed.png
state_image:
'open': /local/icons/garage_door_open.png
'closed': /local/icons/garage_door_closed.png
style:
top: 71%
left: 74%
width: 7%
transform: none
# Study
- type: state-label
entity: sensor.study_temp_rounded
style:
top: 80%
left: 49%
background-color: gray
background: center / contain no-repeat url("/local/icons/ecobee_blank.png")
# 'background-color': red
# 'border-radius': 100%
text-align: center
font-size: 12px
color: white
font-family: Helvetica
display: block
overflow: hidden
# Dining
# - type: custom:thermostat-card
# entity: climate.downstairs
# no_card: true
# hvac:
# attribute: operation
# style:
# top: 78%
# left: 15%
# width: 50px
# height: 50px
- type: state-icon
entity: binary_sensor.front_door
style:
top: 89%
left: 32%
# Room Detection Alok
- type: conditional
conditions:
- entity: sensor.alok_s_iphone_room_presence
state: 'livingroom'
elements:
- type: state-icon
entity: sensor.alok_s_iphone_room_presence
style:
top: 23%
left: 35%
- type: conditional
conditions:
- entity: sensor.alok_s_iphone_room_presence
state: 'study'
elements:
- type: state-icon
entity: sensor.alok_s_iphone_room_presence
style:
top: 73%
left: 49%
# Room Detection Rashmi
- type: conditional
conditions:
- entity: sensor.iphone_room_presence
state: 'livingroom'
elements:
- type: state-icon
entity: sensor.iphone_room_presence
style:
top: 23%
left: 44%
- type: conditional
conditions:
- entity: sensor.iphone_room_presence
state: 'study'
elements:
- type: state-icon
entity: sensor.iphone_room_presence
style:
top: 87%
left: 49%
- type: picture-elements
# title: Second Level
image: /local/floorplans/second.jpg
elements:
- type: state-icon
entity: binary_sensor.motion_sensor_158d00016612af
style:
top: 40%
left: 35%
# Master
# - type: custom:thermostat-card
# entity: climate.bedroom
# no_card: true
# hvac:
# attribute: operation
# style:
# top: 79%
# left: 92%
# width: 50px
# height: 50px
- type: state-icon
entity: binary_sensor.motion_sensor_158d00016c53bf
style:
top: 55%
left: 80%
- type: state-label
entity: sensor.illumination_158d00016c53bf
style:
top: 78%
left: 80%
text-align: center
font-size: 12px
color: black
- type: image
entity: light.master_lights
tap_action:
action: toggle
hold_action:
action: more-info
image: /local/icons/light_bulb_off.png
state_image:
'on': /local/icons/light_bulb_on.png
state_filter:
'on': brightness(130%) saturate(1.5) drop-shadow(0px 0px 10px gold)
'off': brightness(80%) saturate(0.8)
style:
top: 66%
left: 80%
width: 7%
padding: 10px
- type: image
entity: media_player.panasonic_viera_tv
tap_action:
action: toggle
image: /local/icons/tv_off2.png
state_image:
'on': /local/icons/tv_on2.png
state_filter:
'on': drop-shadow(-5px 0 10px gold)
'off': brightness(80%) saturate(0.8)
style:
top: 54%
left: 64.25%
width: 2%
transform: rotate(180deg)
padding: 10px 0 10px 30px
# Laundry
- type: state-icon
entity: binary_sensor.water_leak_sensor_158d0001d77800
style:
top: 25%
left: 66%
# Kids room
# - type: custom:thermostat-card
# entity: climate.upstairs
# no_card: true
# hvac:
# attribute: operation
# style:
# top: 18%
# left: 15%
# width: 50px
# height: 50px
# Room Detection Alok
- type: conditional
conditions:
- entity: sensor.alok_s_iphone_room_presence
state: 'master'
elements:
- type: state-icon
entity: sensor.alok_s_iphone_room_presence
style:
top: 66%
left: 73%
# Room Detection Rashmi
- type: conditional
conditions:
- entity: sensor.iphone_room_presence
state: 'master'
elements:
- type: state-icon
entity: sensor.iphone_room_presence
style:
top: 66%
left: 86%
- type: 'custom:config-template-card'
entities:
- sensor.nasdaq_futures_change
- sensor.dow_futures_change
- sensor.s_p_futures_change
- sensor.portfoliochange2
variables:
- parseFloat(states['sensor.portfoliochange2'].state)
- parseFloat(states['sensor.dow_futures_change_pct'].state)
- parseFloat(states['sensor.s_p_futures_change_pct'].state)
- parseFloat(states['sensor.nasdaq_futures_change_pct'].state)
card:
type: 'custom:hui-entities-card'
title: Investments
show_header_toggle: false
entities:
- sensor.pc_networth
- type: custom:card-modder
entity: sensor.pc_investment
style:
--paper-item-icon-color: "${vars[0] < 0 ? 'rgb(194, 39, 45)' : 'rgb(37, 145, 60)'}"
card:
type: "custom:secondaryinfo-entity-row"
entity: sensor.pc_investment
secondary_info: "${'Change: ' + vars[0]}"
icon: "${vars[0] > 0 ? 'mdi:arrow-up-bold-circle' : 'mdi:arrow-down-bold-circle' }"
- type: custom:card-modder
entity: sensor.dow_futures
style:
--paper-item-icon-color: "${
vars[1] < -2.5 ? 'rgb(151, 26, 30)' :
vars[1] < -2.0 ? 'rgb(194, 39, 45)' :
vars[1] < -1.5 ? 'rgb(236, 27, 33)' :
vars[1] < -1.0 ? 'rgb(244, 101, 35)' :
vars[1] < -0.5 ? 'rgb(248, 147, 29)' :
vars[1] < 0 ? 'rgb(255, 194, 15)' :
vars[1] = 0 ? 'rgb(20, 142, 153)' :
vars[1] < 0.5 ? 'rgb(202, 219, 43)' :
vars[1] < 1.0 ? 'rgb(142, 198, 65)' :
vars[1] < 1.5 ? 'rgb(106, 158, 47)' :
vars[1] < 2 ? 'rgb(37, 145, 60)' : 'rgb(0, 111, 58)'}"
card:
type: "custom:secondaryinfo-entity-row"
entity: sensor.dow_futures
secondary_info: "${'Change: ' + states['sensor.dow_futures_change'].state + ' (' + vars[1] + '%)'}"
icon: "${vars[1] > 0 ? 'mdi:arrow-up-bold-circle' : 'mdi:arrow-down-bold-circle' }"
- type: custom:card-modder
entity: sensor.s_p_futures
style:
--paper-item-icon-color: "${
vars[2] < -2.5 ? 'rgb(151, 26, 30)' :
vars[2] < -2.0 ? 'rgb(194, 39, 45)' :
vars[2] < -1.5 ? 'rgb(236, 27, 33)' :
vars[2] < -1.0 ? 'rgb(244, 101, 35)' :
vars[2] < -0.5 ? 'rgb(248, 147, 29)' :
vars[2] < 0 ? 'rgb(255, 194, 15)' :
vars[2] = 0 ? 'rgb(20, 142, 153)' :
vars[2] < 0.5 ? 'rgb(202, 219, 43)' :
vars[2] < 1.0 ? 'rgb(142, 198, 65)' :
vars[2] < 1.5 ? 'rgb(106, 158, 47)' :
vars[2] < 2 ? 'rgb(37, 145, 60)' : 'rgb(0, 111, 58)'}"
card:
type: "custom:secondaryinfo-entity-row"
entity: sensor.s_p_futures
secondary_info: "${'Change: ' + states['sensor.s_p_futures_change'].state + ' (' + vars[2] + '%)'}"
icon: "${vars[2] > 0 ? 'mdi:arrow-up-bold-circle' : 'mdi:arrow-down-bold-circle' }"
- type: custom:card-modder
entity: sensor.nasdaq_futures
style:
--paper-item-icon-color: "${
vars[3] < -2.5 ? 'rgb(151, 26, 30)' :
vars[3] < -2.0 ? 'rgb(194, 39, 45)' :
vars[3] < -1.5 ? 'rgb(236, 27, 33)' :
vars[3] < -1.0 ? 'rgb(244, 101, 35)' :
vars[3] < -0.5 ? 'rgb(248, 147, 29)' :
vars[3] < 0 ? 'rgb(255, 194, 15)' :
vars[3] = 0 ? 'rgb(20, 142, 153)' :
vars[3] < 0.5 ? 'rgb(202, 219, 43)' :
vars[3] < 1.0 ? 'rgb(142, 198, 65)' :
vars[3] < 1.5 ? 'rgb(106, 158, 47)' :
vars[3] < 2 ? 'rgb(37, 145, 60)' : 'rgb(0, 111, 58)'}"
card:
type: "custom:secondaryinfo-entity-row"
entity: sensor.nasdaq_futures
secondary_info: "${'Change: ' + states['sensor.nasdaq_futures_change'].state + ' (' + vars[3] + '%)'}"
icon: "${vars[3] > 0 ? 'mdi:arrow-up-bold-circle' : 'mdi:arrow-down-bold-circle' }"
- sensor.10_year_treasury
- type: entities
title: Information
show_header_toggle: false
entities:
- entity: sensor.morning_commute
tap_action:
action: url
url_path: !secret google_maps_morning_commute
- entity: sensor.alok_to_home
tap_action:
action: url
url_path: !secret google_maps_evening_commute
- sensor.plex
- sensor.usdinr
- type: cast
name: Home
view: home
hide_if_unavailable: true
- type: entities
title: Lights
entities:
- entity: light.gateway_light_34ce00813670
type: custom:slider-entity-row
toggle: true
- entity: light.kitchen_lights
type: custom:slider-entity-row
toggle: true
- entity: light.lifx3
type: custom:slider-entity-row
toggle: true
- entity: light.lifxnrguest
type: custom:slider-entity-row
toggle: true
- entity: light.lifxnrkitchen
type: custom:slider-entity-row
toggle: true
- type: divider
- entity: light.master_1
type: custom:slider-entity-row
toggle: true
- entity: light.master_2
type: custom:slider-entity-row
toggle: true
- entity: light.master_3
type: custom:slider-entity-row
toggle: true
- type: entities
title: Switches
entities:
- entity: switch.wemoswitch
secondary_info: last-changed
state_color: true
- entity: switch.wemoinsight
type: custom:multiple-entity-row
name: Wemo Insight
toggle: True
state_color: true
secondary_info: last-changed
entities:
- attribute: current_power_w
unit: w
name: Power
- entity: switch.aeon_switch
secondary_info: last-changed
state_color: true
- entity: switch.0220013568c63aa78156
secondary_info: last-changed
state_color: true
- entity: switch.03783133807d3a7d0403
type: "custom:secondaryinfo-entity-row"
secondary_info: '[[ sensor.rpi_cpu_thermal_1_temp ]] °F'
state_color: true
- entity: switch.41034600cc50e359a4f8
state_color: true
- type: vertical-stack
cards:
- type: alarm-panel
entity: alarm_control_panel.abode_homekit
name: Abode
states:
- arm_home
- arm_away
# - type: alarm-panel
# entity: alarm_control_panel.arlohome
# name: Arlo
# states:
# - arm_away
- type: alarm-panel
entity: alarm_control_panel.aarlo_arlohome
name: Aarlo
states:
- arm_home
- arm_away
- type: alarm-panel
entity: alarm_control_panel.alexa_guard_227b3
name: Alexa
states:
- arm_away
- type: entities
title: Ring Doorbell
show_header_toggle: false
entities:
- entity: binary_sensor.front_door_ding
secondary_info: last-changed
- entity: binary_sensor.front_door_motion_2
secondary_info: last-changed
- type: horizontal-stack
cards:
- type: entity-button
name: Patio
tap_action:
action: call-service
service: script.turn_on
service_data:
entity_id: script.cast_patio
entity: script.cast_patio
icon: mdi:cast-connected
- type: entity-button
name: Porch
tap_action:
action: call-service
service: script.turn_on
service_data:
entity_id: script.cast_porch
entity: script.cast_porch
icon: mdi:cast-connected
- type: entity-button
name: Driveway
tap_action:
action: call-service
service: script.turn_on
service_data:
entity_id: script.cast_driveway
entity: script.cast_driveway
icon: mdi:cast-connected
- type: entity-button
name: Backyard
tap_action:
action: call-service
service: script.turn_on
service_data:
entity_id: script.cast_backyard
entity: script.cast_backyard
icon: mdi:cast-connected
- type: entity-button
name: All
tap_action:
action: call-service
service: script.turn_on
service_data:
entity_id: script.cast_cycle_cameras
entity: script.cast_cycle_cameras
icon: mdi:cast-connected
- icon: mdi:weather-cloudy
id: weather
title: Weather
cards:
- type: "custom:weather-card"
entity: weather.dark_sky
icons: '/local/icons/weather_icons/animated/'
- type: entities
title: Weather
show_header_toggle: false
entities:
- sensor.dark_sky_summary
- sensor.pollen_level
- sensor.cold_flu_risk
- sensor.dark_sky_hourly_summary
- sensor.dark_sky_daily_summary
- type: custom:vertical-stack-in-card
cards:
- type: entities
title: Room Sensors
show_header_toggle: false
entities:
- entity: sensor.illumination_158d00016612af
type: custom:multiple-entity-row
name: Brightness
show_state: false
entities:
- entity: sensor.illumination_158d00016612af
name: Upstairs
- entity: sensor.illumination_34ce00813670
name: Living Room
- entity: sensor.illumination_158d0001a1f2ab
name: Guest Room
- type: divider
- entity: sensor.temperature_158d0001ab7d20
type: custom:multiple-entity-row
name: Attic
secondary_info: last-changed
show_state: false
entities:
- entity: sensor.humidity_158d0001ab7d20
name: Humidity
- entity: sensor.pressure_158d0001ab7d20
name: Pressure
- entity: sensor.temperature_158d0001ab7d20
name: Temp
- entity: sensor.temperature_158d0001ab3c88
type: custom:multiple-entity-row
name: Living Room
secondary_info: last-changed
show_state: false
entities:
- entity: sensor.humidity_158d0001ab3c88
name: Humidity
- entity: sensor.pressure_158d0001ab3c88
name: Pressure
- entity: sensor.temperature_158d0001ab3c88
name: Temp
- entity: sensor.temperature_158d0001ab3b2b
type: custom:multiple-entity-row
name: Study
secondary_info: last-changed
show_state: false
entities:
- entity: sensor.humidity_158d0001ab3b2b
name: Humidity
- entity: sensor.pressure_158d0001ab3b2b
name: Pressure
- entity: sensor.temperature_158d0001ab3b2b
name: Temp
- type: horizontal-stack
cards:
- type: custom:button-card
name: Laundry
entity: binary_sensor.water_leak_sensor_158d0001d77800
styles:
card:
- font-size: 12px
state:
- value: 'on'
icon: mdi:water
color: 'red'
- value: 'off'
icon: mdi:water-off
- type: custom:button-card
name: Kitchen Sink
entity: binary_sensor.water_leak_sensor_158d00027b0db6
styles:
card:
- font-size: 12px
state:
- value: 'on'
icon: mdi:water
color: 'red'
- value: 'off'
icon: mdi:water-off
- type: custom:button-card
name: Powder Room
entity: binary_sensor.water_leak_sensor_158d00024bfa97
styles:
card:
- font-size: 12px
state:
- value: 'on'
icon: mdi:water
color: 'red'
- value: 'off'
icon: mdi:water-off
- type: custom:button-card
name: Guest Bath
entity: binary_sensor.water_leak_sensor_158d0001bb788c
styles:
card:
- font-size: 12px
state:
- value: 'on'
icon: mdi:water
color: 'red'
- value: 'off'
icon: mdi:water-off
- type: custom:vertical-stack-in-card
cards:
- type: entities
title: Coronavirus
show_header_toggle: false
entities:
- entity: sensor.us_coronavirus_confirmed
type: custom:multiple-entity-row
name: USA
secondary_info: last-changed
show_state: false
entities:
- entity: sensor.us_coronavirus_confirmed
name: Confirmed
unit: " "
- entity: sensor.us_coronavirus_deaths
name: Deaths
unit: " "
- entity: sensor.new_cases_us
name: Change
unit: " "
- entity: sensor.corona_virus_georgia
type: custom:multiple-entity-row
name: Georgia
secondary_info: last-changed
show_state: false
entities:
- attribute: Confirmed
name: Confirmed
unit: " "
- attribute: Deaths
name: Deaths
unit: " "
- entity: sensor.new_cases_georgia
name: Change
unit: " "
- entity: sensor.india_coronavirus_confirmed
type: custom:multiple-entity-row
name: India
secondary_info: last-changed
show_state: false
entities:
- entity: sensor.india_coronavirus_confirmed
name: Confirmed
unit: " "
- entity: sensor.india_coronavirus_deaths
name: Deaths
unit: " "
- entity: sensor.new_cases_india
name: Change
unit: " "
- type: picture-entity
entity: camera.meteogram
# - id: 8d8b4c4a0e494b278ba93ea016ae35cd
# type: picture-entity
# entity: camera.wundergroundradar
- type: iframe
aspect_ratio: 90%
url: https://embed.windy.com/embed2.html?lat=34.072&lon=-84.051&zoom=5&level=surface&overlay=rain&menu=&message=true&marker=&calendar=now&pressure=&type=map&location=coordinates&detail=true&detailLat=34.072&detailLon=-84.051&metricWind=mph&metricTemp=%C2%B0F&radarRange=-1
- icon: mdi:chart-line
id: grafana
title: Grafana
cards:
- type: vertical-stack
cards:
- type: custom:simple-thermostat
entity: climate.downstairs
control:
hvac: true
_names: false
hide:
state: true
sensors:
- entity: sensor.downstairs_humidity
name: Humidity
- entity: sensor.downstairs_hvac_runtime
name: Runtime
- entity: sensor.downstairsthermoper
name: Operation
- entity: switch.downstairs_away
name: Away Mode
- entity: sensor.downstairs_temp_change
name: Efficiency
- entity: input_number.downstairs_prev_eff
name: Prev Eff
- entity: sensor.downstairs_hvac_efficiency
name: Avg Eff
- type: thermostat
entity: climate.downstairs
- type: picture-entity
entity: camera.grafana_temp_down
show_name: false
show_state: false
- type: picture-entity
entity: camera.grafana_mode_down
show_name: false
show_state: false
- type: picture-entity
entity: camera.grafana_downstairs_efficiency
show_name: false
show_state: false
- type: vertical-stack
cards:
- type: custom:simple-thermostat
entity: climate.upstairs
control:
hvac: true
_names: false
hide:
state: true
sensors:
- entity: sensor.upstairs_humidity
name: Humidity
- entity: sensor.upstairs_hvac_runtime
name: Runtime
- entity: sensor.upstairsthermoper
name: Operation
- entity: switch.upstairs_away
name: Away Mode
- entity: sensor.upstairs_temp_change
name: Efficiency
- entity: input_number.upstairs_prev_eff
name: Prev Eff
- entity: sensor.upstairs_hvac_efficiency
name: Avg Eff
- type: thermostat
entity: climate.upstairs
- type: picture-entity
entity: camera.grafana_temp_up
show_name: false
show_state: false
- type: picture-entity
entity: camera.grafana_mode_up
show_name: false
show_state: false
- type: picture-entity
entity: camera.grafana_upstairs_efficiency
show_name: false
show_state: false
- type: vertical-stack
cards:
- type: custom:simple-thermostat
entity: climate.master_homekit
control:
hvac: true
_names: false
hide:
state: true
sensors:
- entity: sensor.bedroom_humidity
name: Humidity
- entity: sensor.master_hvac_runtime