-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlovelace.yaml
1011 lines (1011 loc) · 33.3 KB
/
lovelace.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
animated_background:
default_url: https://cdn.flixel.com/flixel/ypy8bw9fgw1zv2b4htp2.hd.mp4
included_users:
- xxxxx
entity: weather.home
state_url:
sunny:
- https://cdn.flixel.com/flixel/8cmeusxf3pkanai43djs.hd.mp4
- https://cdn.flixel.com/flixel/guwb10mfddctfvwioaex.hd.mp4
partlycloudy:
- https://cdn.flixel.com/flixel/5363uhabodwwrzgnq6vx.hd.mp4
cloudy:
- 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
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
fog:
- https://cdn.flixel.com/flixel/5363uhabodwwrzgnq6vx.hd.mp4
rainy: https://cdn.flixel.com/flixel/f0w23bd0enxur5ff0bxz.hd.mp4
title: Dungeon
views:
- path: default_view
title: Home
panel: false
icon: mdi:home
theme: Google Light Theme
visible:
- user: xxxxxxxxxxxxxxxxxxxxxxxxxxx
- user: xxxxxxxxxxxxxxxxxxxxxxxxxxx
badges:
- entity: person.xxxxx
cards:
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: button
tap_action:
action: toggle
entity: input_boolean.alarm
- type: button
tap_action:
action: toggle
entity: input_boolean.panic
- type: button
tap_action:
action: toggle
entity: input_boolean.alarm_stay
- type: button
tap_action:
action: more-info
entity: cover.garage_door
hold_action:
action: toggle
- type: horizontal-stack
cards:
- type: button
tap_action:
action: toggle
name: Dyson
show_state: false
show_icon: true
entity: switch.dyson_fan_switch
- type: button
tap_action:
action: toggle
entity: switch.diningroom_fan
name: Big Fan
show_state: false
- type: button
tap_action:
action: toggle
entity: switch.hvac_fan
name: HVAC
- type: button
tap_action:
action: toggle
entity: group.fans
name: All
show_state: false
- type: thermostat
entity: climate.thermostat
- type: entities
entities:
- entity: media_player.samsung_tv
- type: media-control
entity: media_player.google_tv
- type: media-control
entity: media_player.office_tv
- type: vertical-stack
cards:
- type: entities
entities:
- entity: input_boolean.welcome_home
- entity: input_boolean.extended_welcome
- entity: input_boolean.room_announce
name: Room Tracker
- entity: input_boolean.trigger_announce
name: Doors
title: Announcements
state_color: true
- type: entities
entities:
- entity: switch.livingroom_bluetooth_inquiries
name: Livingroom
secondary_info: last-changed
- entity: switch.office_bluetooth_inquiries
name: Office
secondary_info: last-changed
- entity: input_boolean.follow_mode
secondary_info: last-changed
- entity: sensor.xxxxx_room_presence
secondary_info: last-updated
- entity: sensor.xxxxx_room_proximity
secondary_info: last-updated
show_header_toggle: true
state_color: true
title: Presence Detection
- type: entities
entities:
- entity: switch.garage_lights
name: Garage
- type: custom:slider-entity-row
entity: light.porch_lights
toggle: true
- entity: switch.entryway_light
name: Entryway
- entity: switch.stairwell_light
name: Stairwell
- type: custom:slider-entity-row
entity: light.xxxxxxxx_s_lights
name: xxxxxxxx's Lights
toggle: true
- type: custom:slider-entity-row
entity: light.livingroom_lights
name: Livingroom
toggle: true
- type: custom:slider-entity-row
entity: light.diningroom
name: Dinningroom
toggle: true
- entity: group.kitchen_lights
name: Kitchen
- entity: group.office_lights
name: Office
- entity: switch.hallway_light
name: Hallway
- type: custom:slider-entity-row
entity: light.master_bedroom_lights
name: Master
toggle: true
title: Lights
state_color: true
- type: entities
entities:
- entity: switch.garage_cam
name: Garage Cam
secondary_info: last-changed
- entity: switch.kitchen_cam
secondary_info: last-changed
name: Kitchen Cam
- entity: switch.livingroom_cam
name: Livingroom Cam
secondary_info: last-changed
- entity: switch.office_cam
secondary_info: last-changed
name: Office Cam
title: Cameras
- type: vertical-stack
cards:
- type: entity-filter
card:
type: glance
title: Doors
show_empty: false
entities:
- entity: binary_sensor.front_door
name: Front Door
- entity: binary_sensor.patio_door
name: Patio Door
- entity: binary_sensor.garage_door_sensor
name: Garage Door Webhook
- entity: binary_sensor.garage_door
name: Garage Door WyzeApp
state_filter:
- 'on'
- type: entity-filter
card:
type: glance
title: Motion
show_empty: false
entities:
- entity: binary_sensor.guestroom_motion
name: xxxxxxxx Motion
- entity: binary_sensor.kitchen_motion
name: Kitchen
- entity: binary_sensor.kitchen_cam_motion
name: Kitchen Cam
- entity: binary_sensor.master_bedroom_motion
name: Master
- entity: binary_sensor.master_closet_motion
name: Closet
- entity: binary_sensor.office_motion
name: Office
- entity: binary_sensor.office_cam_motion
name: Office Cam
- entity: binary_sensor.livingroom_cam_motion
name: Livingroom Cam
- entity: binary_sensor.garage_cam_motion
name: Garage Cam
state_filter:
- 'on'
- type: entity-filter
card:
type: glance
title: Lights
show_empty: false
entities:
- entity: light.flood_lamp
name: Flood Lamp
- entity: light.iris
name: Iris
- entity: light.tv_right
name: TV Right
- entity: light.tv_left
name: TV Left
- entity: light.couch
name: Couch
- entity: light.livingroom_dimmer
name: Livingroom
- entity: switch.kitchen_light
name: Kitchen
- entity: switch.kitchen_cabinet_lights
name: Cabinets
- entity: light.master_bedroom_right
name: Master Right
- entity: light.master_bedroom_left
name: Master Left
- entity: light.master_closet
name: Closet
- entity: light.guestroom
name: Guestroom
- entity: light.xxxxxxxx_lamp
name: xxxxxxxx Light
- entity: light.nanoleaf
name: Nanoleaf
- entity: switch.hallway_light
name: Hallway
- entity: switch.stairwell_light
name: Stairwell
- entity: switch.office_lamp
name: Office Floor
- entity: light.office_high_light
name: Office High
- entity: switch.desk_lamp
name: Office Desk
- entity: light.dining_room
name: Diningroom
- entity: switch.entryway_light
name: Entryway
- entity: light.porch_lights
name: Porch
- entity: switch.garage_lights
name: Garage
state_filter:
- 'on'
- type: entity-filter
card:
type: glance
title: Media
show_empty: false
entities:
- entity: media_player.samsung_tv
name: Samsung TV
- entity: media_player.google_tv
name: Google TV
- entity: media_player.office_tv
name: Office TV
- entity: media_player.xxxxxxxx_tv
name: xxxxxxxx TV
- entity: media_player.kitchen_speaker
name: Kitchen Speaker
- entity: media_player.livingroom_display
name: Livingroom Speaker
- entity: media_player.office_speaker
name: Office Speaker
- entity: media_player.master_bedroom_speaker
name: Master Speaker
state_filter:
- 'on'
- playing
- idle
- type: entity-filter
card:
type: glance
title: Fans
show_empty: false
entities:
- entity: switch.diningroom_fan
name: Big Fan
- entity: switch.dyson_fan_switch
name: Dyson
- entity: switch.hvac_fan
name: HVAC
state_filter:
- 'on'
- type: entity-filter
card:
type: glance
title: Power
show_empty: false
entities:
- entity: switch.charger
name: Charger
- entity: binary_sensor.upsstatus
name: RPi UPS Power
icon: mdi:ev-station
state_filter:
- 'on'
- type: entity-filter
card:
type: glance
title: Cameras
show_empty: false
entities:
- entity: switch.kitchen_cam
name: Kitchen Cam
- entity: switch.office_cam
name: Office Cam
- entity: switch.livingroom_cam
name: Livingroom Cam
- entity: switch.garage_cam
name: Garage Cam
state_filter:
- 'on'
- type: entity-filter
card:
type: glance
show_empty: false
entities:
- entity: light.flood_lamp
name: Flood Lamp
- entity: light.iris
name: Iris
- entity: light.tv_right
name: TV Right
- entity: light.tv_left
name: TV Left
- entity: light.couch
name: Couch
- entity: light.livingroom_dimmer
name: Livingroom
- entity: light.diningroom
name: Diningroom
- entity: switch.kitchen_light
name: Kitchen
- entity: switch.kitchen_cabinet_lights
name: Cabinets
- entity: light.master_bedroom_right
name: Master Right
- entity: light.master_bedroom_left
name: Master Left
- entity: light.master_closet
name: Closet
- entity: light.guestroom
name: Guestroom
- entity: light.xxxxxxxx_lamp
name: xxxxxxxx Light
- entity: light.nanoleaf
name: Nanoleaf
- entity: switch.hallway_light
name: Hallway
- entity: switch.stairwell_light
name: Stairwell
- entity: switch.office_lamp
name: Office Floor
- entity: light.office_high_light
name: Office High
- entity: switch.desk_lamp
name: Office Desk
- entity: light.dining_room
name: Diningroom
- entity: switch.entryway_light
name: Entryway
- entity: light.porch_lights
name: Porch
- entity: switch.garage_lights
name: Garage
- entity: switch.diningroom_fan
name: Big Fan
- entity: switch.dyson_fan_switch
name: Dyson
- entity: switch.hvac_fan
name: HVAC
- entity: switch.charger
name: Charger
- entity: binary_sensor.front_door
name: Front Door
- entity: binary_sensor.patio_door
name: Patio Door
- entity: binary_sensor.garage_door_sensor
name: Garage Door 1
- entity: binary_sensor.garage_door
name: Garage Door
icon: mdi:garage-open
- entity: binary_sensor.guestroom_motion
name: xxxxxxxx Motion
- entity: binary_sensor.kitchen_motion
name: Kitchen
- entity: binary_sensor.kitchen_cam_motion
name: Kitchen Cam
- entity: binary_sensor.master_bedroom_motion
name: Master
- entity: binary_sensor.master_closet_motion
name: Closet
- entity: binary_sensor.office_motion
name: Office
- entity: switch.office_cam
name: Office Cam
- entity: switch.garage_cam
name: Garage Cam
- entity: switch.livingroom_cam
name: Livingroom Cam
- entity: switch.kitchen_cam
name: Kitchen Cam
- entity: media_player.samsung_tv
name: Samsung TV
- entity: media_player.livingroom_tv
name: Google TV
- entity: media_player.office_tv
name: Office TV
state_filter:
- unavailable
- title: Climate
path: climate
icon: mdi:thermostat
theme: Google Light Theme
visible:
- user: xxxxxxxxxxxxxxxxxxxxxxxxxxx
- user: xxxxxxxxxxxxxxxxxxxxxxxxxxx
badges: []
cards:
- type: vertical-stack
cards:
- type: thermostat
entity: climate.thermostat
- type: horizontal-stack
cards:
- type: button
tap_action:
action: toggle
entity: input_boolean.fan_control
name: Temp Control
show_state: true
- type: button
tap_action:
action: toggle
entity: input_boolean.hvac_assist
show_state: true
- type: horizontal-stack
cards:
- type: button
tap_action:
action: toggle
entity: switch.dyson_fan_switch
name: Dyson
- type: button
tap_action:
action: toggle
entity: switch.diningroom_fan
name: Big Fan
- type: button
tap_action:
action: toggle
entity: switch.hvac_fan
name: HVAC
- type: button
tap_action:
action: toggle
entity: group.fans
name: All
- type: entities
entities:
- entity: fan.hallway
- entity: switch.hallway_auto_mode
- entity: switch.dyson_fan_oscillate
- entity: switch.hallway_continuous_monitoring
- entity: switch.hallway_night_mode
- entity: sensor.hallway_fan_speed
- entity: air_quality.hallway_air_quality
- entity: sensor.hallway_filter_life
secondary_info: last-updated
state_color: true
show_header_toggle: false
- type: entities
entities:
- entity: sensor.hvac_fan_mode
icon: mdi:hvac
secondary_info: last-changed
- entity: sensor.hvac_fan_status
icon: mdi:hvac
secondary_info: last-changed
- entity: binary_sensor.thermostat_occupancy
secondary_info: last-changed
- entity: binary_sensor.master_occupancy
secondary_info: last-changed
state_color: true
show_header_toggle: false
- type: vertical-stack
cards:
- type: custom:sun-card
darkMode: false
- type: custom:weather-card
number_of_forecasts: '5'
entity: weather.dungeon
- type: custom:apexcharts-card
apex_config:
chart:
height: 200px
header:
show: true
title: Indoor Temps
show_states: true
colorize_states: true
series:
- entity: sensor.hallway_temperature
name: Hallway
stroke_width: 3
- entity: sensor.master_temperature
name: Master
stroke_width: 3
- entity: sensor.thermostat_temperature
name: Main Floor
stroke_width: 3
- type: custom:apexcharts-card
apex_config:
chart:
height: 200px
header:
show: true
title: Humidity
show_states: true
colorize_states: true
series:
- entity: sensor.hallway_humidity
name: Hallway
stroke_width: 3
- entity: sensor.outside_humidity
name: Outside
stroke_width: 3
- entity: sensor.thermostat_humidity
name: Main Floor
stroke_width: 3
- title: 'Master '
path: master-bedroom
icon: mdi:bed
theme: Google Light Theme
visible:
- user: xxxxxxxxxxxxxxxxxxxxxxxxxxx
badges: []
cards:
- type: picture-glance
title: Master Bedroom
image: https://demo.home-assistant.io/stub_config/bedroom.png
entities:
- entity: sensor.master_bedroom_light_level
- entity: binary_sensor.master_bedroom_motion
- entity: sensor.master_bedroom_temperature
- entity: media_player.master_bedroom_speaker
entity: group.master_bedroom_lights
tap_action:
action: toggle
- type: horizontal-stack
cards:
- type: button
tap_action:
action: toggle
entity: light.master_bedroom_left
name: Left
show_state: true
- type: button
tap_action:
action: toggle
entity: light.master_closet
name: Closet
show_state: true
- type: button
tap_action:
action: toggle
entity: light.master_bedroom_right
name: Right
show_state: true
- type: entities
entities:
- entity: sensor.master_bedroom_temperature
name: Master Temperature (Hue)
secondary_info: last-updated
- entity: sensor.master_temperature
name: Master Temperature (ecobee)
secondary_info: last-updated
- entity: sensor.master_closet_temperature
secondary_info: last-updated
- entity: sensor.master_bedroom_light_level
secondary_info: last-updated
- entity: sensor.master_closet_light_level
secondary_info: last-updated
- entity: binary_sensor.master_closet_motion
secondary_info: last-updated
- entity: binary_sensor.master_bedroom_motion
secondary_info: last-updated
- entity: sensor.master_motion_battery_level
secondary_info: last-updated
- entity: sensor.master_closet_motion_battery_level
secondary_info: last-updated
title: Master Bedroom
show_header_toggle: false
state_color: false
- title: Control Unit
path: control-unit
icon: mdi:power
theme: Google Light Theme
visible:
- user: xxxxxxxxxxxxxxxxxxxxxxxxxxx
badges: []
cards:
- type: vertical-stack
cards:
- type: entities
entities:
- entity: input_boolean.charger_control
name: Power Management
secondary_info: last-changed
- entity: switch.charger
secondary_info: last-changed
- entity: binary_sensor.n7_51a_is_charging
name: Charging
secondary_info: last-changed
- entity: sensor.n7_51a_battery_level
name: Battery Level
secondary_info: last-updated
- entity: sensor.n7_51a_battery_temperature
name: Battery Temp
icon: mdi:fire
secondary_info: last-updated
- entity: sensor.n7_51a_battery_health
name: Health
secondary_info: last-updated
title: Control Unit
show_header_toggle: false
state_color: true
- type: sensor
entity: sensor.n7_51a_battery_level
graph: line
detail: 2
hours_to_show: 12
name: Battery Level - (12hrs)
- type: sensor
entity: sensor.n7_51a_battery_temperature
graph: line
hours_to_show: 12
detail: 2
name: Battery Temperature - (12hrs)
icon: mdi:fire
- icon: mdi:network
title: Network
path: network
theme: Google Light Theme
visible:
- user: xxxxxxxxxxxxxxxxxxxxxxxxxxx
- user: xxxxxxxxxxxxxxxxxxxxxxxxxxx
badges: []
cards:
- type: vertical-stack
cards:
- type: entities
entities:
- entity: sensor.network_in_wlan0
- entity: sensor.network_out_wlan0
- entity: sensor.packets_in_wlan0
- entity: sensor.packets_out_wlan0
title: RPi Networking
show_header_toggle: false
state_color: false
- type: history-graph
entities:
- entity: sensor.ipv4_address_wlan0
hours_to_show: 24
refresh_interval: 0
- type: custom:apexcharts-card
graph_span: 1h
apex_config:
chart:
height: 200px
header:
show: true
title: Thoroughput
show_states: true
colorize_states: true
series:
- entity: sensor.network_throughput_in_wlan0
name: IN
stroke_width: 3
- entity: sensor.network_throughput_out_wlan0
name: OUT
stroke_width: 3
- type: vertical-stack
cards:
- type: entity
entity: sensor.google_wifi_status
name: Google Wifi Status
- type: entities
entities:
- entity: sensor.google_wifi_current_version
- entity: sensor.google_wifi_last_restart
- entity: sensor.google_wifi_new_version
- entity: sensor.google_wifi_uptime
- type: history-graph
entities:
- entity: sensor.google_wifi_local_ip
hours_to_show: 24
refresh_interval: 0
title: Public IP
- title: System Monitor
path: system-monitor
icon: mdi:raspberry-pi
panel: false
theme: Google Light Theme
visible:
- user: xxxxxxxxxxxxxxxxxxxxxxxxxxx
- user: xxxxxxxxxxxxxxxxxxxxxxxxxxx
badges: []
cards:
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: gauge
entity: sensor.processor_temperature
min: 0
severity:
green: 0
yellow: 45
red: 85
max: 88
name: RPi CPU Temp
unit: °C
- type: gauge
entity: sensor.processor_use_percent
min: 0
max: 100
name: RPi CPU Use
severity:
green: 0
yellow: 25
red: 75
- type: history-graph
entities:
- entity: sensor.processor_temperature
- entity: sensor.processor_use_percent
- entity: sensor.rpi_cpu_freq
refresh_interval: 0
hours_to_show: 3
title: RPi CPU Stats
- type: custom:apexcharts-card
graph_span: 3h
apex_config:
chart:
height: 200px
header:
show: true
title: CPU Loads
show_states: true
colorize_states: true
series:
- entity: sensor.load_1m
name: Load (1m)
stroke_width: 3
- entity: sensor.load_5m
name: Load (5m)
stroke_width: 3
- entity: sensor.load_15m
name: Load (15m)
stroke_width: 3
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: gauge
entity: sensor.disk_use_percent
min: 0
max: 100
name: Disk Use
theme: aqua-fiesta
severity:
green: 0
yellow: 50
red: 100
- type: gauge
entity: sensor.memory_use_percent
min: 0
max: 100
name: Ram Use
theme: aqua-fiesta
severity:
green: 0
yellow: 50
red: 100
- type: gauge
entity: sensor.swap_use_percent
min: 0
max: 100
name: Swap Use
theme: aqua-fiesta
severity:
green: 0
yellow: 50
red: 100
- type: custom:apexcharts-card
graph_span: 3h
apex_config:
chart:
height: 200px
header:
show: true
title: RPi Ram and Disk
show_states: true
colorize_states: true
series:
- entity: sensor.disk_use_percent
name: Disk
stroke_width: 3
- entity: sensor.memory_use_percent
name: Memory
stroke_width: 3
- entity: sensor.swap_use_percent
name: Swap
stroke_width: 3
- type: entities
entities:
- entity: sensor.disk_use_percent
secondary_info: last-updated
- entity: sensor.memory_use_percent
secondary_info: last-updated
- entity: sensor.swap_use_percent
secondary_info: last-updated
state_color: true
show_header_toggle: false
- type: entities
entities:
- entity: sensor.disk_use
secondary_info: last-updated
- entity: sensor.memory_use
secondary_info: last-updated
- entity: sensor.swap_use
secondary_info: last-updated
show_header_toggle: false
state_color: true
- type: entities
entities:
- entity: sensor.disk_free
secondary_info: last-updated
- entity: sensor.memory_free
secondary_info: last-updated
- entity: sensor.swap_free
secondary_info: last-updated
show_header_toggle: false
state_color: true
- type: entities
entities:
- entity: sensor.home_assistant_v2_db
name: SQLite DB Size
icon: mdi:database
secondary_info: last-updated
- entity: sensor.db_size
name: MariaDB Size
secondary_info: last-updated
icon: mdi:database
show_header_toggle: false
state_color: true
- type: entities
entities:
- entity: sensor.last_boot
show_header_toggle: false
state_color: true
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: gauge
entity: sensor.rpi_battery_capacity
min: 0
max: 100
severity:
green: 90
yellow: 50
red: 0
- type: gauge
entity: sensor.rpi_battery_voltage
max: 4.2
min: 3
severity:
green: 4.2
yellow: 3.7
red: 3.2
- type: entities
entities:
- entity: input_boolean.power_alert
state_color: true
- type: custom:mini-graph-card
entities:
- sensor.rpi_battery_capacity
name: RPi UPS Voltage
hours_to_show: 3
points_per_hour: 10
- type: custom:mini-graph-card
entities:
- sensor.rpi_battery_voltage
name: RPi UPS Voltage
hours_to_show: 3
points_per_hour: 10
- type: entities
entities:
- entity: binary_sensor.rpi_power_status
secondary_info: last-changed
icon: mdi:power-plug
- entity: binary_sensor.upsstatus
icon: mdi:ev-station
secondary_info: last-changed
name: RPi UPS Power
- entity: sensor.upsbatterycapacity
name: RPi UPS Capacity
secondary_info: last-changed
icon: mdi:battery
- entity: sensor.upsbatteryvoltage
name: RPi UPS Voltage
icon: mdi:flash
secondary_info: last-changed
state_color: true
show_header_toggle: false
- title: Battery
path: batteries
panel: false
icon: mdi:battery
visible:
- user: xxxxxxxxxxxxxxxxxxxxxxxxxxx
- user: xxxxxxxxxxxxxxxxxxxxxxxxxxx
theme: Google Light Theme
badges: []
cards:
- type: gauge
entity: sensor.front_door_battery_level
min: 0
max: 100
severity:
green: 75
yellow: 25
red: 0
- type: gauge
entity: sensor.master_bedroom_switch_battery_level
min: 0
max: 100
severity:
green: 75
yellow: 25
red: 0
- type: gauge
min: 0
max: 100
severity:
green: 75
yellow: 25
red: 0
entity: sensor.patio_door_battery_level
- type: gauge
entity: sensor.master_closet_motion_battery_level
min: 0
max: 100
severity:
green: 75
yellow: 25
red: 0
- type: gauge
entity: sensor.kitchen_motion_battery_level
min: 0
max: 100
severity:
green: 75
yellow: 25
red: 0
- type: gauge
entity: sensor.master_motion_battery_level
min: 0
max: 100
severity:
green: 75