-
Notifications
You must be signed in to change notification settings - Fork 1
/
lovelace-ui.yaml
2294 lines (2291 loc) · 61 KB
/
lovelace-ui.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
animated_background:
included_users:
- Dyson Parkes
views:
- config:
default_url: https://cdn.flixel.com/flixel/ypy8bw9fgw1zv2b4htp2.hd.mp4
entity: weather.openweathermap
state_url:
clear-night:
- https://cdn.flixel.com/flixel/x9dr8caygivq5secll7i.hd.mp4
- https://cdn.flixel.com/flixel/v26zyfd6yf0r33s46vpe.hd.mp4
- https://cdn.flixel.com/flixel/ypy8bw9fgw1zv2b4htp2.hd.mp4
- https://cdn.flixel.com/flixel/rosz2gi676xhkiw1ut6i.hd.mp4
cloudy:
- https://cdn.flixel.com/flixel/13e0s6coh6ayapvdyqnv.hd.mp4
- https://cdn.flixel.com/flixel/aorl3skmssy7udwopk22.hd.mp4
- https://cdn.flixel.com/flixel/qed6wvf2igukiioykg3r.hd.mp4
- https://cdn.flixel.com/flixel/3rd72eezaj6d23ahlo7y.hd.mp4
- https://cdn.flixel.com/flixel/9m11gd43m6qn3y93ntzp.hd.mp4
- https://cdn.flixel.com/flixel/hrkw2m8eofib9sk7t1v2.hd.mp4
fog:
- https://cdn.flixel.com/flixel/vwqzlk4turo2449be9uf.hd.mp4
- https://cdn.flixel.com/flixel/5363uhabodwwrzgnq6vx.hd.mp4
mostlycloudy:
- https://cdn.flixel.com/flixel/e95h5cqyvhnrk4ytqt4q.hd.mp4
- https://cdn.flixel.com/flixel/l2bjw34wnusyf5q2qq3p.hd.mp4
- https://cdn.flixel.com/flixel/rrgta099ulami3zb9fd2.hd.mp4
partlycloudy:
- https://cdn.flixel.com/flixel/13e0s6coh6ayapvdyqnv.hd.mp4
- https://cdn.flixel.com/flixel/aorl3skmssy7udwopk22.hd.mp4
- https://cdn.flixel.com/flixel/qed6wvf2igukiioykg3r.hd.mp4
- https://cdn.flixel.com/flixel/3rd72eezaj6d23ahlo7y.hd.mp4
- https://cdn.flixel.com/flixel/9m11gd43m6qn3y93ntzp.hd.mp4
- https://cdn.flixel.com/flixel/hrkw2m8eofib9sk7t1v2.hd.mp4
rainy: https://cdn.flixel.com/flixel/f0w23bd0enxur5ff0bxz.hd.mp4
sunny:
- https://cdn.flixel.com/flixel/hlhff0h8md4ev0kju5be.hd.mp4
- https://cdn.flixel.com/flixel/zjqsoc6ecqhntpl5vacs.hd.mp4
- https://cdn.flixel.com/flixel/jvw1avupguhfbo11betq.hd.mp4
- https://cdn.flixel.com/flixel/8cmeusxf3pkanai43djs.hd.mp4
- https://cdn.flixel.com/flixel/guwb10mfddctfvwioaex.hd.mp4
path: weather
button_card_templates:
inkwell:
extra_styles: "[[[ return `\n @keyframes pulse {\n 5% {\n background-color:\
\ ${variables.color};\n }\n }\n`]]]\n"
show_name: false
show_state: true
styles:
card:
- border: solid 3px gray
- border-top: none
- background: "[[[\n var level = entity.state;\n var color = variables.color;\n\
\ return `linear-gradient(to top, ${color}, ${color} ${level}%, rgba(255,255,255,0.12)\
\ ${level}%)`\n]]]\n"
- animation: "[[[\n return (0 + entity.state) < 10\n ? 'pulse ease-in-out\
\ 1s infinite'\n : 'none'\n]]]\n"
icon:
- opacity: 0.7
- color: '[[[ return variables.color ]]]'
- filter: drop-shadow( 0 0 2px rgba(0, 0, 0, .7))
state:
- font-size: 1.5em
- font-weight: bold
- text-shadow: 0 0 6px black
- overflow: visible
title: BNet
views:
- cards:
- cards:
- cards:
- color_type: card
entity: light.all_lights
name: Lights
size: 30px
type: custom:button-card
- color_type: card
entity: light.all_lamps
name: Lamps
size: 30px
type: custom:button-card
- color_type: card
entity: light.lifx_switch_6c31d6_porch
name: Porch
size: 30px
type: custom:button-card
type: horizontal-stack
- cards:
- color_type: card
entity: light.bedroom_light
hold_action:
action: more-info
name: Bedroom
size: 30px
tap_action:
action: toggle
type: custom:button-card
- color_type: card
entity: light.kitchen_switch_kitchen_light
hold_action:
action: more-info
name: Kitchen
size: 30px
tap_action:
action: toggle
type: custom:button-card
- color_type: card
double_tap_action:
action:
- data:
brightness_pct: 50
entity_id: light.lounge_light
service: light.toggle
entity: light.lounge_light
hold_action:
action: more-info
name: Lounge
size: 30px
tap_action:
action: toggle
type: custom:button-card
- color_type: card
double_tap_action:
action:
- data:
brightness_pct: 50
entity_id: light.office_light
service: light.toggle
entity: light.office_light
hold_action:
action: more-info
name: Office
size: 30px
tap_action:
action: toggle
type: custom:button-card
- color_type: card
double_tap_action:
action:
- data:
brightness_pct: 50
entity_id: light.laundry_lights
service: light.toggle
entity: light.laundry_lights
hold_action:
action: more-info
name: Laundry
size: 30px
tap_action:
action: toggle
type: custom:button-card
type: horizontal-stack
type: vertical-stack
view_layout:
position: main
- card:
show_header_toggle: false
title: Updates available
type: entities
filter:
exclude: []
include:
- entity_id: update.*
state: 'on'
- entity_id: sensor.hacs
state: '! 0'
show_empty: false
sort:
ignore_case: true
method: none
type: custom:auto-entities
- cards:
- badges:
- color: state
entity: light.lifx_switch_6c31d6_porch
show_icon: true
show_state: true
tap_action:
action: toggle
type: entity
- color: state
entity: input_boolean.front_door_motion_light
show_icon: true
show_state: true
tap_action:
action: toggle
type: entity
- color: state
entity: input_boolean.motion_notifications
show_icon: true
show_state: true
tap_action:
action: toggle
type: entity
heading: Porch
heading_style: title
icon: mdi:outdoor-lamp
tap_action:
action: perform-action
perform_action: light.toggle
target:
entity_id: light.lifx_switch_6c31d6_porch
type: heading
- cards:
- entity: light.lifx_switch_6c31d6_porch
icon_height: 30px
show_icon: true
show_name: true
show_state: false
tap_action:
action: toggle
type: button
- entity: select.front_door_recording_mode
name: Recording Mode
state_color: false
type: entity
- entity: input_boolean.motion_notifications
icon_height: 30px
name: Door notifications
show_icon: true
show_name: true
tap_action:
action: toggle
type: button
- entity: input_boolean.front_door_motion_light
icon_height: 30px
name: Motion Light
show_icon: true
show_name: true
tap_action:
action: toggle
type: button
type: horizontal-stack
type: custom:vertical-stack-in-card
- cards:
- badges:
- color: state
entity: climate.lounge_air_conditioner
icon: mdi:home-thermometer
show_icon: true
show_state: true
state_content: current_temperature
tap_action:
action: more-info
type: entity
- entity: light.lounge_light
show_icon: true
show_state: true
tap_action:
action: toggle
type: entity
- entity: media_player.2020_2021_uhd_android_tv
type: entity
heading: Living Room
heading_style: title
icon: mdi:sofa
tap_action:
action: perform-action
perform_action: media_player.turn_on
target:
entity_id: media_player.2020_2021_uhd_android_tv
type: heading
- columns: 3
entities:
- entity: switch.wol_lounge
icon: mdi:desktop-classic
name: PC
tap_action:
action: toggle
- entity: light.lounge_light
name: Light
tap_action:
action: toggle
- entity: light.lounge_lamp
name: Lamp
tap_action:
action: toggle
- entity: media_player.lounge_dot
- double_tap_action:
action: call-service
data:
volume_level: 0.73
service: media_player.volume_set
target:
entity_id: media_player.lounge_amp_3
entity: media_player.lounge_amp_3
hold_action:
action: call-service
service: script.toggle_mute
service_data:
media_player: media_player.lounge_amp_3
name: Amp
tap_action:
action: more-info
- entity: switch.subwoofer
tap_action:
action: toggle
- entity: switch.smart_power_strip_socket_1
tap_action:
action: toggle
- entity: switch.smart_power_strip_socket_2
tap_action:
action: toggle
- entity: switch.smart_power_strip_socket_3
tap_action:
action: toggle
show_icon: true
show_name: true
show_state: true
state_color: true
type: glance
- card:
entity: media_player.lounge_tv
type: media-control
conditions:
- entity: media_player.lounge_tv
state: 'on'
type: conditional
- card:
artwork: cover-fit
entity: media_player.lounge_amp_2
group: false
source: full
toggle_power: true
type: custom:mini-media-player
volume_stateless: true
conditions:
- entity: media_player.lounge_amp_3
state_not: 'off'
- entity: media_player.lounge_amp_3
state_not: unknown
- entity: media_player.lounge_amp_3
state_not: unavailable
type: conditional
- card:
entities:
- entity: media_player.lounge_ps4
name: PS4
- entity: switch.lounge_ps5_power
- entity: media_player.living_room_xbox
show_icon: true
show_name: true
show_state: true
state_color: true
type: glance
conditions:
- condition: state
entity: media_player.2020_2021_uhd_android_tv
state: 'on'
type: conditional
- card:
entity: sensor.lounge_ps5_activity
state_color: true
type: entity
conditions:
- entity: switch.lounge_ps5_power
state: 'on'
type: conditional
- card:
entity: media_player.living_room_xbox
type: media-control
conditions:
- entity: media_player.living_room_xbox
state_not: 'off'
- entity: media_player.living_room_xbox
state_not: unavailable
type: conditional
type: custom:vertical-stack-in-card
- cards:
- badges:
- entity: sensor.bedroom_heater_temperature
show_icon: true
show_state: true
tap_action:
action: perform-action
perform_action: switch.toggle
target:
entity_id: switch.bedroom_heater_manual_switch
type: entity
- entity: light.bedroom_light
show_icon: true
show_state: true
tap_action:
action: toggle
type: entity
- entity: light.bedroom_lamp
show_icon: true
show_state: true
tap_action:
action: toggle
type: entity
heading: Bedroom
heading_style: title
icon: mdi:bed-queen
type: heading
- columns: 3
entities:
- entity: light.bedroom_light
name: Light
tap_action:
action: toggle
- entity: light.bedroom_lamp
name: Lamp
tap_action:
action: toggle
- entity: media_player.doppler
- entity: switch.bedroom_heater
name: Heater
secondary_info: sensor.bedroom_heater_temperature
tap_action:
action: toggle
- entity: sensor.bedroom_heater_temperature
show_icon: true
show_name: true
show_state: true
state_color: true
type: glance
type: custom:vertical-stack-in-card
- cards:
- badges:
- color: state
entity: light.kitchen_switch_kitchen_light
show_icon: true
show_state: true
tap_action:
action: toggle
type: entity
- color: state
entity: light.kitchen_switch_dining_light
show_icon: true
show_state: true
tap_action:
action: toggle
type: entity
heading: Kitchen
heading_style: title
icon: mdi:table-chair
tap_action:
action: perform-action
perform_action: light.toggle
target:
entity_id: light.kitchen_lights
type: heading
- entities:
- entity: light.kitchen_switch_kitchen_light
tap_action:
action: toggle
- entity: light.kitchen_switch_dining_light
tap_action:
action: toggle
show_icon: true
show_name: true
show_state: false
type: glance
type: custom:vertical-stack-in-card
- cards:
- badges:
- entity: sensor.kettle_temperature
icon: mdi:kettle
show_icon: true
show_state: true
tap_action:
action: call-service
service: scene.turn_on
service_data:
entity_id: scene.boil_jug
type: entity
- color: state
entity: light.kitchen_switch_pantry_light
show_icon: true
show_state: true
tap_action:
action: toggle
type: entity
heading: Pantry
heading_style: title
icon: mdi:fridge
tap_action:
action: perform-action
perform_action: ''
type: heading
- cards:
- entity: light.kitchen_switch_pantry_light
hold_action:
action: more-info
icon_height: 30px
show_icon: true
show_name: true
show_state: false
tap_action:
action: toggle
type: button
- entity: climate.kettle
hold_action:
action: call-service
service: climate.set_hvac_mode
service_data:
entity_id: climate.kettle
hvac_mode: 'off'
icon_height: 30px
show_icon: true
show_name: true
show_state: false
tap_action:
action: call-service
service: scene.turn_on
service_data:
entity_id: scene.boil_jug
type: button
- detail: 1
entity: sensor.kettle_temperature
graph: none
icon: mdi:water-thermometer
name: Kettle
type: sensor
type: horizontal-stack
type: custom:vertical-stack-in-card
- cards:
- badges:
- entity: sensor.office_fan_temperature
show_icon: true
show_state: true
type: entity
- color: state
entity: switch.wol_undefea_2
show_icon: true
show_state: true
type: entity
heading: Office
heading_style: title
icon: mdi:office-building
type: heading
- columns: 3
entities:
- entity: switch.wol_undefea_2
icon: mdi:desktop-classic
name: Gaming Rig
tap_action:
action: toggle
- entity: switch.office_fan_manual_switch
icon: mdi:fan
name: Office Fan
tap_action:
action: toggle
- entity: sensor.brother_mfc_9340cdw
name: MFC-9340CDW
- entity: light.office_light
tap_action:
action: toggle
- entity: light.office_lamp
tap_action:
action: toggle
- entity: media_player.office_dot
show_icon: true
show_name: true
show_state: true
state_color: true
type: glance
- badges:
- entity: sensor.adap_system_temp
type: entity
- entity: sensor.hass_system_temp
type: entity
heading: Server Rack
heading_style: title
icon: mdi:server
type: heading
- columns: 4
entities:
- entity: switch.pi_hole
- entity: switch.adguard_filtering
name: AdGuard
show_icon: true
show_name: true
show_state: true
state_color: true
type: glance
- entities:
- entity: switch.wol_inevi
name: TrueNAS
tap_action:
action: toggle
- entity: sensor.repea_network_link_eth0
icon: mdi:nas
name: QNap NAS
- entity: switch.wol_detes
name: SteamRemote Host
tap_action:
action: toggle
- entity: sensor.server_rack_temperature
type: glance
- card:
entities:
- entity: sensor.hdhomerun_connect_duo_1241c3c2_tuner0
- entity: sensor.hdhomerun_connect_duo_1241c3c2_tuner1
- entity: button.hdhomerun_connect_duo_1241c3c2_restart
- entity: sensor.hdhomerun_connect_duo_1241c3c2_channel_count
type: glance
conditions:
- condition: state
entity: light.office_lights
state: 'on'
type: conditional
- card:
card:
type: entities
filter:
include:
- entity_id: switch.preven_*
- entity_id: binary_sensor.preven*
- entity_id: sensor.preven_*
sort:
method: entity_id
numeric: true
type: custom:auto-entities
conditions:
- condition: state
entity: light.office_lights
state: 'on'
type: conditional
type: custom:vertical-stack-in-card
- cards:
- badges:
- color: state
entity: light.lifx_switch_6c31d6_hall_front
show_icon: true
show_state: true
type: entity
heading: Hallway
heading_style: title
icon: ''
tap_action:
action: perform-action
perform_action: light.toggle
target:
entity_id: light.hall_lights
type: heading
- cards:
- entity: light.hall_light_strip
icon_height: 30px
show_icon: true
show_name: true
show_state: false
tap_action:
action: toggle
type: button
- entity: light.lifx_switch_6c31d6_hall_front
icon_height: 30px
show_icon: true
show_name: true
show_state: false
tap_action:
action: toggle
type: button
type: horizontal-stack
type: custom:vertical-stack-in-card
- cards:
- badges:
- color: state
entity: light.laundry_switch_laundry_light
show_icon: true
show_state: true
type: entity
- color: state
entity: light.laundry_switch_toilet_light
show_icon: true
show_state: true
type: entity
heading: Laundry
heading_style: title
tap_action:
action: perform-action
perform_action: light.toggle
target:
entity_id: light.laundry_lights
type: heading
- cards:
- entity: light.laundry_switch_laundry_light
icon_height: 30px
show_icon: true
show_name: true
show_state: false
tap_action:
action: toggle
type: button
- entity: light.laundry_switch_toilet_light
icon_height: 30px
show_icon: true
show_name: true
show_state: false
tap_action:
action: toggle
type: button
type: horizontal-stack
type: custom:vertical-stack-in-card
- cards:
- badges:
- entity: light.spare_room_light
show_icon: true
show_state: true
tap_action:
action: toggle
type: entity
- entity: switch.biltong_rack
show_icon: true
show_state: true
tap_action:
action: toggle
type: entity
- entity: sensor.biltong_approximate_cost
type: entity
heading: Spare Room
heading_style: title
icon: mdi:bed-outline
type: heading
- cards:
- entity: light.spare_room_light
icon_height: 30px
show_icon: true
show_name: true
show_state: false
tap_action:
action: toggle
type: button
- entity: switch.biltong_rack
icon_height: 30px
show_icon: true
show_name: true
show_state: false
tap_action:
action: toggle
type: button
type: horizontal-stack
- card:
camera_image: camera.biltong
camera_view: auto
entity: switch.biltong_rack
hold_action:
action: none
show_name: true
show_state: true
tap_action:
action: none
type: picture-entity
conditions:
- entity: switch.biltong_rack
state: 'on'
type: conditional
- card:
entities:
- entity: sensor.biltong_rack_current
name: Current
- entity: sensor.biltong_rack_current_consumption
name: Current Consumption
- entity: sensor.biltong_rack_today_s_consumption
name: Today's Consumption
- entity: sensor.biltong_rack_total_consumption
name: Total Consumption
- entity: sensor.biltong_approximate_cost
- entity: sensor.biltong_rack_voltage
name: Voltage
show_header_toggle: false
type: entities
conditions:
- entity: switch.biltong_rack
state: 'on'
type: conditional
type: custom:vertical-stack-in-card
- cards:
- badges:
- color: state
entity: light.garage_switch_overhead
show_icon: true
show_state: true
tap_action:
action: toggle
type: entity
- color: state
entity: light.garage_switch_bench
icon: ''
show_icon: true
show_state: true
tap_action:
action: toggle
type: entity
- color: state
entity: light.garage_switch_driveway
icon: mdi:light-flood-down
show_icon: true
show_state: true
tap_action:
action: toggle
type: entity
heading: Garage
heading_style: title
icon: mdi:garage
tap_action:
action: perform-action
perform_action: light.toggle
target:
entity_id: light.garage_lights
type: heading
- columns: 4
entities:
- entity: light.garage_switch_bench
name: Workbench
tap_action:
action: toggle
- entity: light.garage_switch_overhead
name: Overhead
tap_action:
action: toggle
- entity: light.garage_switch_driveway
name: Driveway
tap_action:
action: toggle
- entity: camera.garage_high
show_icon: true
show_name: true
show_state: true
state_color: true
type: glance
- card:
entities:
- entity: sensor.state_garageap
icon: mdi:access-point
name: Garage AP
- entity: media_player.garage_speaker
name: Garage Soundbar
- entity: media_player.garage_dot
show_icon: true
show_name: true
show_state: true
state_color: true
type: glance
conditions:
- condition: state
entity: light.garage_lights
state: 'on'
type: conditional
type: custom:vertical-stack-in-card
icon: mdi:home
path: home
title: Home
- badges: []
cards: []
icon: mdi:calendar
max_columns: 4
path: events
sections:
- cards:
- entities:
- entity: sensor.anniversary_swmbo
name: Our Anniversary
- entity: sensor.birthday_me
name: My Birthday
- entity: sensor.birthday_swmbo
name: Her Birthday
header:
hold_action:
action: none
image: https://www.home-assistant.io/images/lovelace/header-footer/balloons-header.png
tap_action:
action: none
type: picture
show_header_toggle: false
type: entities
type: grid
title: Events
type: sections
visible:
- user: 08d29e434e9a4bed98b3a62218eac7a7
- badges: []
cards: []
icon: mdi:crosshairs-gps
max_columns: 4
path: location
sections:
- cards:
- entities:
- entity: device_tracker.bnet_reno12
- entity: zone.work
- entity: zone.home
- entity: device_tracker.cph2197
theme_mode: auto
type: map
type: grid
- cards:
- cards:
- card:
show_header_toggle: false
title: Who's Home?
type: entities
filter:
exclude:
- state: not_home
include:
- entity_id: person.*
show_empty: false
sort: none
type: custom:auto-entities
unique: false
- columns: 1
entities:
- entity: sensor.bnet_reno12_geocoded_location
show_icon: true
show_state: true
title: Phone Location
type: glance
type: custom:vertical-stack-in-card
type: grid
title: Location
type: sections
visible:
- user: 08d29e434e9a4bed98b3a62218eac7a7
- badges:
- entity: sensor.mikrotik_router_kib_s_sent
name: WAN TX
- entity: sensor.mikrotik_router_kib_s_received
name: WAN RX
- entity: sensor.adguard_dns_queries
name: AdGuard DNS Queries
- entity: sensor.adguard_dns_queries_blocked_ratio
name: AdGuard Block %
- entity: sensor.pi_hole_dns_queries_today
name: PiHole DNS Queries
- entity: sensor.pi_hole_ads_percentage_blocked_today
name: PiHole Block %
cards: []
icon: mdi:network
max_columns: 4
path: network
sections:
- cards:
- cards:
- cards:
- entity: sensor.mikrotik_router_kib_s_sent
max: 90000
min: 0
name: WAN TX
needle: true
severity:
green: 0
red: 75000
yellow: 45000
type: gauge
- entity: sensor.mikrotik_router_kib_s_received
max: 100000
min: 0
name: WAN RX
needle: true
severity:
green: 0
red: 75000
yellow: 45000
type: gauge
type: horizontal-stack
- cards:
- detail: 1
entity: sensor.mikrotik_router_kib_s_sent
graph: line
hours_to_show: 24
type: sensor
- detail: 1
entity: sensor.mikrotik_router_kib_s_received
graph: line
hours_to_show: 24
type: sensor
type: horizontal-stack
- card:
show_header_toggle: false
type: entities
filter:
include:
- entity_id: sensor.rou_rb3011*
- entity_id: sensor.mikrotik_*
show_empty: true
sort:
ignore_case: true
method: name
type: custom:auto-entities
unique: false
title: Routerboard Stats
type: custom:vertical-stack-in-card
type: grid
- cards:
- cards:
- entity: sensor.adguard_dns_queries_blocked_ratio
max: 100
min: 0
name: Blocked Ad Percentage
needle: true
severity:
green: 0
red: 75
yellow: 50
theme: default
type: gauge
- card:
show_header_toggle: false