forked from arsaboo/homeassistant-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui-lovelace.yaml
1787 lines (1777 loc) · 57.3 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
resources:
- url: /local/custom_ui/weather-card.js?v=0.24
type: module
- url: /local/custom_ui/pc-card.js?v=0.2
type: module
- url: /local/custom_ui/circle-sensor-card.js
type: module
- url: /local/custom_ui/monster-card.js?v=1
type: js
- url: /local/custom_ui/thermostat-card.js?v=1.3
type: module
- url: /local/custom_ui/calendar-card.js
type: module
- url: https://unpkg.com/[email protected]/moment.js
type: js
- url: /local/custom_ui/slider-entity-row.js?v=0.3
type: js
- url: /local/custom_ui/button-card.js?v=0.11
type: module
- url: /local/mini-media-player-bundle.js?v=0.0.1
type: module
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: 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: input_boolean.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: 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%
# 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.ring_front_door_motion
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%
- 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
# Living Room
- 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
# 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
- type: entities
title: Investments
show_header_toggle: false
entities:
- sensor.pc_networth
- sensor.pc_investment
- sensor.portfoliochange2
- type: divider
- sensor.dow_futures
- sensor.nasdaq_futures
- sensor.s_p_futures
- sensor.10_year_treasury
- type: entities
title: Information
show_header_toggle: false
entities:
- sensor.morning_commute
- sensor.alok_to_home
- sensor.plexspy
- sensor.usdinr
- type: entities
title: Lights
entities:
- entity: light.gateway_light_34ce00813670
type: custom:slider-entity-row
- entity: light.lifx3
type: custom:slider-entity-row
- entity: light.lifxnrguest
type: custom:slider-entity-row
- entity: light.lifxnrkitchen
type: custom:slider-entity-row
- type: divider
- entity: light.hue_color_lamp_1
type: custom:slider-entity-row
- entity: light.hue_color_lamp_2
type: custom:slider-entity-row
- entity: light.hue_color_lamp_3
type: custom:slider-entity-row
- type: entities
title: Switches
entities:
- entity: switch.wemoswitch
secondary_info: last-changed
- entity: switch.wemoinsight
secondary_info: last-changed
- entity: switch.aeon_switch
secondary_info: last-changed
- entity: switch.0220013568c63aa78156
secondary_info: last-changed
- type: horizontal-stack
cards:
- type: alarm-panel
entity: alarm_control_panel.abode_alarm
name: Abode
states:
- arm_home
- arm_away
- type: alarm-panel
entity: alarm_control_panel.arlohome
name: Arlo
states:
- arm_away
- type: entities
title: Ring Doorbell
show_header_toggle: false
entities:
- binary_sensor.ring_front_door_ding
- binary_sensor.ring_front_door_motion
- sensor.ring_front_door_last_ding
- sensor.ring_front_door_last_motion
- 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.pws_weather
# - sensor.pws_wind_string
- sensor.pollen_level
- sensor.cold_flu_risk
- sensor.dark_sky_hourly_summary
- sensor.dark_sky_daily_summary
- type: entities
title: Room Sensors
show_header_toggle: false
entities:
- sensor.illumination_158d00016612af
- sensor.humidity_158d0001ab7d20
- sensor.pressure_158d0001ab7d20
- sensor.temperature_158d0001ab7d20
- type: divider
- sensor.humidity_158d0001ab3c88
- sensor.pressure_158d0001ab3c88
- sensor.temperature_158d0001ab3c88
- type: divider
- sensor.humidity_158d0001ab3b2b
- sensor.pressure_158d0001ab3b2b
- sensor.temperature_158d0001ab3b2b
- type: divider
- sensor.illumination_34ce00813670
- sensor.illumination_158d0001a1f2ab
- binary_sensor.water_leak_sensor_158d0001d77800
- sensor.leeoalarmstatus
- 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?rain,32.487,-84.023,5
- icon: mdi:chart-line
id: grafana
title: Grafana
cards:
- type: vertical-stack
cards:
- type: thermostat
entity: climate.downstairs
- type: glance
entities:
- entity: sensor.downstairsthermoper
name: Operation
- entity: sensor.downstairs_humidity
name: Humidity
- entity: sensor.living_room_temperature
name: Temperature
- entity: sensor.downstairs_hvac_runtime
name: Runtime
- entity: switch.downstairs_away
tap_action:
action: toggle
name: Away
- 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: vertical-stack
cards:
- type: thermostat
entity: climate.upstairs
- type: glance
entities:
- entity: sensor.upstairsthermoper
name: Operation
- entity: sensor.upstairs_humidity
name: Humidity
- entity: sensor.upstairs_temperature
name: Temperature
- entity: sensor.upstairs_hvac_runtime
name: Runtime
- entity: switch.upstairs_away
tap_action:
action: toggle
name: Away
- 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: vertical-stack
cards:
- type: thermostat
entity: climate.bedroom
- type: glance
entities:
- entity: sensor.masterthermoper
name: Operation
- entity: sensor.bedroom_humidity
name: Humidity
- entity: sensor.master_temperature
name: Temperature
- entity: sensor.master_hvac_runtime
name: Runtime
- entity: switch.bedroom_away
tap_action:
action: toggle
name: Away
- type: picture-entity
entity: camera.grafana_temp_master
show_name: false
show_state: false
- type: picture-entity
entity: camera.grafana_mode_master
show_name: false
show_state: false
- type: picture-entity
entity: camera.grafana_portfolio
show_name: false
show_state: false
- type: picture-entity
entity: camera.grafana_networth
show_name: false
show_state: false
- icon: mdi:cctv
id: cameras
title: Cameras
cards:
- type: picture-entity
entity: camera.driveway
show_name: false
show_state: false
- type: picture-entity
entity: camera.patio
show_name: false
show_state: false
- type: picture-entity
entity: camera.porch
show_name: false
show_state: false
- type: picture-entity
entity: camera.backyard
show_name: false
show_state: false
- type: picture-entity
entity: camera.arlo3
- type: picture-entity
entity: camera.arlolivingroom
- type: picture-entity
entity: camera.livingroom2
- type: picture-entity
entity: camera.front_door
- type: picture-entity
entity: camera.worldtime
show_name: false
show_state: false
- type: picture-entity
entity: camera.ars_bloom
show_name: false
show_state: false
- type: picture-entity
entity: camera.driveway_tf
show_name: false
show_state: false
- type: picture-entity
entity: camera.porch_tf
show_name: false
show_state: false
- type: picture-entity
entity: camera.patio_tf
show_name: false
show_state: false
- type: picture-entity
entity: camera.backyard_tf
show_name: false
show_state: false
- icon: mdi:play-circle-outline
id: media
title: Media
cards:
- type: entities
title: Entertainment
show_header_toggle: false
entities:
- sensor.living_room
- input_select.livingroomharmony
- input_select.hdmiswitcher
- input_select.hdmiinput
- input_number.harmonyvolume
- sensor.total_tv_time
- sensor.sonos_audio_in
- script.tv_off
- type: entities
title: Players
show_header_toggle: false
entities:
- media_player.livingroomsonos
- media_player.family_room_2
- media_player.kodi_nstv
- media_player.echo_dot_gen2
- media_player.living_room_home
- media_player.living_room_speaker
- media_player.living_room_tv
- media_player.shield
# - media_player.shieldtv
# # - media_player.aftmm
# - media_player.fire_stick_master
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: custom:button-card
color_type: blank-card
- type: custom:button-card
entity: switch.sonos_speech_enhance
name: Speech
icon: mdi:comment-check-outline
default_color: rgb(255, 255, 255)
color: rgb(28, 128, 199)
action: toggle
color_type: icon
style:
- font-size: 12px
- font-weight: bold
- type: custom:button-card
entity: switch.sonos_night_sound
name: Night
icon: mdi:weather-night
color: rgb(28, 128, 199)
action: toggle
default_color: rgb(255, 255, 255)
color_type: icon
style:
- font-size: 12px
- font-weight: bold
- type: custom:button-card
color_type: blank-card
- type: horizontal-stack
cards:
- type: custom:button-card
color_type: blank-card
- type: custom:button-card
color_type: card
color: rgb(223, 255, 97)
icon: mdi:volume-minus
style:
- height: 50px
action: service
service:
domain: media_player
action: volume_down
data:
entity_id: media_player.family_room_2
- type: custom:button-card
entity: sensor.sonos_volume
color_type: icon
show_state: true
color: rgb(223, 255, 97)
style:
- height: 50px
action: more_info
- type: custom:button-card
color_type: card
color: rgb(223, 255, 97)
icon: mdi:volume-plus
style:
- height: 50px
action: service
service:
domain: media_player
action: volume_up
data:
entity_id: media_player.family_room_2
- type: custom:button-card
color_type: blank-card
- type: horizontal-stack
cards:
- type: custom:button-card
color_type: blank-card
- type: custom:button-card
color_type: card
color: rgb(223, 255, 97)
icon: mdi:plex
action: service
service:
domain: rest_command
action: plex
- type: custom:button-card
color_type: card
color: rgb(223, 255, 97)
icon: mdi:youtube
action: service
service:
domain: rest_command
action: youtube
- type: custom:button-card
color_type: card
color: rgb(223, 255, 97)
icon: mdi:netflix
action: service
service:
domain: rest_command
action: netflix
- type: custom:button-card
color_type: blank-card
- type: entities
title: Light Operations
show_header_toggle: false
entities:
- input_boolean.partymode
- script.sonoslinein
- script.colorloop_start
- script.disco_party
- script.lifx_stop_effects
- script.master_colorloop
- script.master_random
- type: media-control
entity: media_player.livingroomsonos
- type: media-control
entity: media_player.family_room_2
- type: media-control
entity: media_player.kodi_nstv
- type: media-control
entity: media_player.echo_dot_gen2
- type: media-control
entity: media_player.living_room_home
# - type: media-control
# entity: media_player.panasonic_viera_tv
- type: media-control
entity: media_player.living_room_tv
- type: media-control
entity: media_player.shield
- icon: mdi:settings
id: settings
title: Settings
cards:
- type: horizontal-stack
cards:
- type: picture-entity
entity: device_tracker.rashmiphone_rashmiphone
show_name: false
show_state: false
state_image:
'home': /local/icons/rashmi_owntracks_home.png
'not_home': /local/icons/rashmi_owntracks_not_home.png
- type: picture-entity
entity: device_tracker.rashmiappiphone
show_name: false
show_state: false
state_image:
'home': /local/icons/rashmi_ios_home.png
'not_home': /local/icons/rashmi_ios_not_home.png
- type: picture-entity
entity: device_tracker.rashmisiphone
show_name: false
show_state: false
state_image:
'home': /local/icons/rashmi_wifi_home.png
'not_home': /local/icons/rashmi_wifi_not_home.png
- type: picture-entity
entity: device_tracker.sonu_sonu
show_name: false
show_state: false
state_image:
'home': /local/icons/rashmi_life360_home.png
'not_home': /local/icons/rashmi_life360_not_home.png
- type: picture-entity
entity: device_tracker.e1594e53_21df_414c_82da_f655d5282fca
show_name: false
show_state: false
state_image:
'home': /local/icons/rashmi_geofency_home.png
'not_home': /local/icons/rashmi_geofency_not_home.png
- type: horizontal-stack
cards:
- type: picture-entity
entity: device_tracker.alokphone_alokphone
show_name: false
show_state: false
state_image:
'home': /local/icons/alok_owntracks_home.png
'not_home': /local/icons/alok_owntracks_not_home.png
'Buckhead': /local/icons/alok_owntracks_not_home.png
'Downtown': /local/icons/alok_owntracks_not_home.png
- type: picture-entity
entity: device_tracker.alokiosiphone
show_name: false
show_state: false
state_image:
'home': /local/icons/alok_ios_home.png
'not_home': /local/icons/alok_ios_not_home.png
'Buckhead': /local/icons/alok_ios_not_home.png
'Downtown': /local/icons/alok_ios_not_home.png
- type: picture-entity
entity: device_tracker.myiphone
show_name: false
show_state: false
state_image:
'home': /local/icons/alok_wifi_home.png
'not_home': /local/icons/alok_wifi_not_home.png
- type: picture-entity
entity: device_tracker.alok_alok
show_name: false
show_state: false
state_image:
'home': /local/icons/alok_life360_home.png
'not_home': /local/icons/alok_life360_not_home.png
'Buckhead': /local/icons/alok_life360_not_home.png
'Downtown': /local/icons/alok_life360_not_home.png
- type: picture-entity
entity: device_tracker.b4445761_f6c0_4b7f_835f_cfdc03b47111
show_name: false
show_state: false
state_image:
'home': /local/icons/alok_geofency_home.png
'not_home': /local/icons/alok_geofency_not_home.png
'buckhead': /local/icons/alok_geofency_not_home.png
'downtown': /local/icons/alok_geofency_not_home.png
- type: horizontal-stack
cards:
- type: picture-entity
entity: device_tracker.meta_alok
state_image:
'home': /local/icons/alok_home.png
'not_home': /local/icons/alok_not_home.png
'buckhead': /local/icons/alok_not_home.png
'Buckhead': /local/icons/alok_not_home.png
'downtown': /local/icons/alok_not_home.png
'Downtown': /local/icons/alok_not_home.png
show_name: false
show_state: false
hold_action:
action: toggle
- type: picture-entity
entity: device_tracker.meta_rashmi
state_image:
'home': /local/icons/rashmi_home.png
'not_home': /local/icons/rashmi_not_home.png
show_name: false
show_state: false
hold_action:
action: toggle
- type: entities
title: HASS Details
show_header_toggle: false
entities:
- sensor.ssl_certificate_expiry
- input_select.current_theme
- input_boolean.devmode
- type: entities
title: Camera Processing
show_header_toggle: false
entities:
- script.classify_images
- image_processing.opencv_porch
- image_processing.opencv_patio
- image_processing.opencv_driveway
- image_processing.opencv_backyard
- image_processing.tensorflow_porch
- image_processing.tensorflow_patio
- image_processing.tensorflow_driveway
- image_processing.tensorflow_backyard
- image_processing.deepstack_porch
- image_processing.deepstack_patio
- image_processing.deepstack_driveway
- image_processing.deepstack_backyard
- image_processing.facebox_backyard
- image_processing.facebox_patio
- image_processing.facebox_driveway
- image_processing.facebox_porch
- image_processing.tagbox_backyard
- image_processing.tagbox_patio
- image_processing.tagbox_driveway
- image_processing.tagbox_porch
- image_processing.rekognition_driveway
- type: entities
title: Network Details
show_header_toggle: false
entities:
- sensor.speedtest_download
- switch.pihole
- type: divider
- sensor.glances_cpu_load
- sensor.glances_disk_used
- sensor.glances_ram_used
- type: horizontal-stack
cards:
- type: custom:button-card
entity: switch.arnav_s_ipad
name: iPad
icon: mdi:tablet-ipad
color: rgb(250, 218, 79)
color_type: icon
style:
- font-size: 12px
- text-transform: capitalize
- type: custom:button-card
entity: switch.lenovo_home
name: Lenovo
icon: mdi:laptop-windows