-
Notifications
You must be signed in to change notification settings - Fork 22
/
ui-lovelace.yaml
1473 lines (1473 loc) · 45.8 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: Home
views:
- icon: mdi:home
title: Home
path: home
badges:
- entity: alarm_control_panel.home
name: House Alarm
- sun.sun
- sensor.moon
cards:
- type: entity-filter
id: leaks
card:
title: Detected Leaks
type: glance
entities:
- binary_sensor.bar_sink_leak_sensor
- binary_sensor.bathroom_sink_leak_sensor
- binary_sensor.kitchen_sink_leak_sensor
- binary_sensor.water_leak_sensor_158d0001bc24f5
state_filter:
- 'on'
show_empty: false
- type: entity-filter
id: smoke
card:
title: Detected Smoke or CO2
type: glance
entities:
- sensor.den_smoke_status
- sensor.bedroom_smoke_status
- sensor.ollies_smoke_status
state_filter:
- 'Fire'
- 'CO2'
show_empty: false
- type: entity-filter
id: open
card:
title: "Open Doors/Windows"
type: glance
show_state: false
columns: 5
entities:
- binary_sensor.bathroom_door
- binary_sensor.bathroom_window
- binary_sensor.bedroom_closet_door
- binary_sensor.bedroom_door
- binary_sensor.bedroom_window
- binary_sensor.catio_firepit_door
- binary_sensor.catio_pool_door
- binary_sensor.den_sliding_door
- binary_sensor.den_window
- binary_sensor.front_door
- binary_sensor.garage_backyard_door
- binary_sensor.garage_frontyard_door
- binary_sensor.kitchen_window
- binary_sensor.living_room_left_bay_window
- binary_sensor.living_room_right_bay_window
- binary_sensor.living_room_side_window
- binary_sensor.mailbox
- binary_sensor.ollies_closet_door
- binary_sensor.ollies_door
- binary_sensor.ollies_window
state_filter:
- 'on'
show_empty: false
- type: entity-filter
id: running
card:
title: "Things That Are Running"
type: glance
show_state: false
entities:
- entity: sensor.dishwasher_running
name: Dishwasher
- entity: sensor.dryer_running
name: Dryer
- entity: sensor.washer_running
name: Washer
state_filter:
- 'True'
show_empty: false
- type: "custom:auto-entities"
id: temp
card:
type: glance
title: High Temperature
columns: 5
sort:
method: name
filter:
include:
- entity_id: "*door"
state: '> 79'
- entity_id: "*temp*"
state: '> 79'
- entity_id: "*window"
state: '> 79'
exclude:
- entity_id: "*dark*"
- entity_id: sensor.bbq_temperature
- entity_id: sensor.pws_temp_f
- entity_id: sensor.shokabow_weather_temperature
- entity_id: "*octoprint*"
- entity_id: sensor.pool_temperature
- entity_id: sensor.ambient_pool_temperature
- entity_id: sensor.cat_litter_temperature
- entity_id: input_number.pool_temp
- entity_id: sensor.den_pi_cpu_thermal_1_temperature
- entity_id: sensor.pi_hole_cpu_thermal_1_temperature
- entity_id: "*battery_temperature*"
- entity_id: sensor.pi_hole_cpu_thermal_1_temperature_2
- entity_id: sensor.den_pi_cpu_thermal_1_temperature_3
- entity_id: sensor.h5181_84fe_temperature_alarm_probe_1
- entity_id: sensor.ollies_air_purifier_temp
- entity_id: sensor.ollies_closet_door
- entity_id: sensor.ollies_door
- entity_id: sensor.ollies_window
- entity_id: sensor.den_air_purifier_temp
- entity_id: sensor.den_window
- entity_id: sensor.den_sliding_door
- entity_id: "*bbq*"
- entity_id: "sensor.anova*"
- entity_id: sensor.reseda_los_angeles_temperature
- entity_id: "*ember*"
show_empty: false
- type: entity-filter
id: people
card:
title: People Who Are Home
type: glance
show_state: false
entities:
- binary_sensor.dannys_bayesian_presence
- binary_sensor.natachas_bayesian_presence
- person.ollie
state_filter:
- 'on'
- 'home'
show_empty: false
- type: entity-filter
id: cameras-offline
card:
title: "Cameras Offline"
type: glance
show_state: false
entities:
- entity: binary_sensor.den_backyard_offline
name: Den Backyard
- entity: binary_sensor.frontyard_cars_offline
name: Frontyard Cars
- entity: binary_sensor.frontyard_driveway_offline
name: Front Drwy
- entity: binary_sensor.frontyard_side_gate_offline
name: Front SG
- entity: binary_sensor.garage_side_gate_offline
name: Garage SG
- entity: binary_sensor.kitchen_side_gate_offline
name: Kitchen SG
- entity: binary_sensor.patio_offline
name: Patio
state_filter:
- 'on'
show_empty: false
- type: entity-filter
id: wol
card:
title: PC Offline
type: entities
entities:
- switch.blue_iris
- switch.plex
- switch.tosh_w10
#- switch.vostros
state_filter:
- 'off'
show_empty: false
# - type: "custom:button-card"
# color_type: card
# color: rgb(223, 255, 97)
# icon: mdi:volume-minus
# tap_action:
# action: call-service
# service: light.toggle
# service_data:
# entity_id: light.corner_lamp
# haptic: "success"
# - type: "custom:button-card"
# color_type: card
# color: rgb(223, 255, 97)
# icon: mdi:volume-minus
# tap_action:
# action: call-service
# service: light.toggle
# service_data:
# entity_id: light.corner_lamp
# haptic: "warning"
# - type: "custom:button-card"
# color_type: card
# color: rgb(223, 255, 97)
# icon: mdi:volume-minus
# tap_action:
# action: call-service
# service: light.toggle
# service_data:
# entity_id: light.corner_lamp
# haptic: "failure"
# - type: "custom:button-card"
# color_type: card
# color: rgb(223, 255, 97)
# icon: mdi:volume-minus
# tap_action:
# action: call-service
# service: light.toggle
# service_data:
# entity_id: light.corner_lamp
# haptic: "light"
# - type: "custom:button-card"
# color_type: card
# color: rgb(223, 255, 97)
# icon: mdi:volume-minus
# tap_action:
# action: call-service
# service: light.toggle
# service_data:
# entity_id: light.corner_lamp
# haptic: "medium"
# - type: "custom:button-card"
# color_type: card
# color: rgb(223, 255, 97)
# icon: mdi:volume-minus
# tap_action:
# action: call-service
# service: light.toggle
# service_data:
# entity_id: light.corner_lamp
# haptic: "heavy"
# - type: "custom:button-card"
# color_type: card
# color: rgb(223, 255, 97)
# icon: mdi:volume-minus
# tap_action:
# action: call-service
# service: light.toggle
# service_data:
# entity_id: light.corner_lamp
# haptic: "selection"
- type: entities
id: den
title: Den
state_color: true
show_header_toggle: false
entities:
- light.bookshelf_left
- entity: binary_sensor.den_camera_audio_detected
name: Den Audio
secondary_info: last-changed
state_color: true
- cover.den_curtains
- switch.den_fan
- entity: sensor.den_tablet_light_sensor
name: Den Illumination
- light.den_lights_level
- entity: binary_sensor.den_camera_motion_detected
name: Den Motion
secondary_info: last-changed
state_color: true
- switch.fireplace
- entity: remote.harmony_hub_den
secondary_info: last-changed
- light.tv_lights
# - type: weblink
# name: test
# url: "app://net.dinglisch.android.taskerm"
# - type: weblink
# name: test2
# url: "app://com.twitter.android"
# - type: weblink
# name: test3
# url: "intent://scan/#Intent;scheme=zxing;package=com.google.zxing.client.android;end"
- type: entities
title: Kitchen
id: kitchen
show_header_toggle: false
entities:
- light.bar_flex
- entity: light.island_lights
state_color: true
- entity: binary_sensor.kitchen_audio_detected
name: Kitchen Audio
secondary_info: last-changed
state_color: true
- light.kitchen_lights_level
- entity: binary_sensor.kitchen_motion_detected
name: Kitchen Motion
secondary_info: last-changed
state_color: true
- entity: switch.kitchen_tv
state_color: true
secondary_info: last-changed
- light.spot
- type: entities
title: Living Room
id: lr
show_header_toggle: false
entities:
- entity: cover.bay_window_curtains
state_color: true
- light.front_door_lamp
- entity: lock.front_door
secondary_info: last-changed
state_color: true
- entity: binary_sensor.living_room_camera_audio_detected
name: Living Room Audio
secondary_info: last-changed
state_color: true
- entity: switch.living_room_fan
state_color: true
- light.living_room_lights_level
- entity: binary_sensor.living_room_camera_motion_detected
name: Living Room Motion
secondary_info: last-changed
state_color: true
- entity: switch.living_room_tv
secondary_info: last-changed
state_color: true
- type: entities
title: Vacuums
id: vacuum
show_header_toggle: false
entities:
- entity: vacuum.robot_vacuum
secondary_info: last-changed
# - entity: vacuum.mr_neato
# name: Den Vacuum
# secondary_info: last-changed
# - entity: sensor.den_vacuum_status
# - entity: vacuum.mrs_neato
# name: House Vacuum
# secondary_info: last-changed
# - entity: sensor.house_vacuum_status
- type: conditional
id: bbqcond
conditions:
- entity: binary_sensor.bbq_probe
state: 'on'
card:
type: entities
id: bbq1
title: BBQ
show_header_toggle: false
entities:
- input_select.bbq_probe1
- input_number.bbq1_override
- sensor.bbq_temperature
- entity: binary_sensor.bbq_probe
secondary_info: last-changed
state_color: true
- type: thermostat
entity: climate.thermostat
features:
- type: "climate-hvac-modes"
hvac_modes:
- "off"
- cool
- heat
# - type: conditional
# id: sousvidecond
# conditions:
# - entity: climate.anova
# state_not: 'disconnected'
# - entity: climate.anova
# state_not: 'off'
# card:
# type: entities
# title: Sous Vide
# id: sousvide
# show_header_toggle: false
# entities:
# - entity: climate.anova
# secondary_info: last-changed
- title: Room
path: room
icon: mdi:home-modern
cards:
- type: entities
title: Bedroom
id: bedroom
show_header_toggle: false
entities:
- light.bedroom_closet
- entity: cover.bedroom_curtains
state_color: true
- entity: switch.bedroom_fan
state_color: true
- sensor.bedroom_illumination_sensor
- entity: sensor.bedroom_tablet_light_sensor
name: Bedroom Illumination
- light.bedroom_lights_level
- entity: binary_sensor.bedroom_motion_sensor
name: Bedroom Motion
secondary_info: last-changed
state_color: true
- light.biased_lights
- light.dannys
- entity: remote.harmony_hub_bedroom
state_color: true
- light.toshs
- type: entities
title: Bathroom & Hallway
id: bathoffice
show_header_toggle: false
entities:
- sensor.bathroom_illumination
- sensor.bathroom_illumination_sensor
- light.bathroom_lights
- entity: binary_sensor.bathroom_motion
secondary_info: last-changed
state_color: true
- light.bathroom_night_light
- light.hallway_light
- entity: binary_sensor.hallway_motion_sensor
name: Hallway Motion
secondary_info: last-changed
state_color: true
- entity: switch.house_fan
state_color: true
- type: horizontal-stack
id: power
cards:
- type: gauge
name: Dryer Power
entity: sensor.dryer_power_2
#scale: 30px
min: 0
max: 1500
- type: gauge
name: Pool Pump Power
entity: sensor.pool_pump_power
#scale: 30px
min: 0
max: 1000
- type: gauge
name: Washer Power
entity: sensor.washer_power_2
#scale: 30px
min: 0
max: 1500
- type: horizontal-stack
id: power
cards:
- type: gauge
name: Ollies Heater Power
entity: sensor.nursery_heater_power
#scale: 30px
min: 0
max: 1500
- type: gauge
name: Dishwasher Power
entity: sensor.dishwasher
#scale: 30px
min: 0
max: 1500
- type: entities
id: outside
title: Backyard & Garage
entities:
- entity: switch.backyard_lights_switch
state_color: true
- entity: switch.garage_switch
state_color: true
- entity: binary_sensor.garage_motion_sensor
name: Garage Motion
secondary_info: last-changed
state_color: true
- light.patio
# - type: entities
# id: outdoor-motion
# title: Outdoor Motion
# state_color: true
# show_header_toggle: false
# entities:
# - entity: binary_sensor.den_backyard_motion
# secondary_info: last-changed
# - entity: binary_sensor.frontyard_cars_motion
# secondary_info: last-changed
# - entity: binary_sensor.frontyard_driveway_motion
# secondary_info: last-changed
# - entity: binary_sensor.frontyard_side_gate_motion
# secondary_info: last-changed
# - entity: binary_sensor.garage_side_gate_motion
# secondary_info: last-changed
# - entity: binary_sensor.kitchen_side_gate_motion
# secondary_info: last-changed
# - entity: binary_sensor.patio_motion
# secondary_info: last-changed
- type: entities
id: booleans
title: House Settings
show_header_toggle: false
state_color: true
entities:
- input_boolean.cleaning_mode
- input_boolean.gardener
- input_boolean.guest_mode
- input_boolean.guest_sleeping
- input_boolean.movie_mode
- input_boolean.night_mode
- input_boolean.shower_mode
- input_boolean.vacation_mode
- type: entities
id: catlitter
title: Cat Litter
show_header_toggle: false
state_color: true
entities:
- entity: binary_sensor.cat_litter_home_security_motion_detected
secondary_info: last-changed
- counter.cat_litter_motion
- entity: input_boolean.cat_litter_cleaned
secondary_info: last-changed
- sensor.cat_litter_humidity1
- sensor.cat_litter_illuminance
- sensor.cat_litter_temperature
# - type: conditional
# conditions:
# - entity: light.outdoor_plug
# state: 'on'
# card:
# type: entities
# title: Pool
# id: pool
# entities:
# - entity: sensor.pool_temperature
# - entity: sensor.ambient_pool_temperature
# - entity: sensor.ambient_pool_humidity
# - entity: input_number.pool_temp
# name: Last saved pool temperature
# secondary_info: last-changed
# - entity: binary_sensor.pool_sensor
# secondary_info: last-changed
# state_color: true
- title: Ollies Room
path: ollies
icon: mdi:baby-face
badges:
- entity: sensor.ollies_air_purifier_temp
- entity: sensor.ollie_avg_temp
- entity: sensor.ollies_closet_door
- entity: sensor.ollies_door
- entity: sensor.ollies_air_purifier_humidity
- entity: sensor.ollies_window
cards:
- type: entities
title: Ollies Room
id: ollies
show_header_toggle: false
state_color: true
entities:
- entity: binary_sensor.baby_monitor_audio_detected
name: Baby Monitor Audio
secondary_info: last-changed
state_color: true
- entity: binary_sensor.baby_monitor_motion_detected
name: Baby Monitor Motion
secondary_info: last-changed
state_color: true
- entity: input_boolean.baby_sleeping
secondary_info: last-changed
state_color: true
- entity: light.office_closet
name: Ollies Closet
- cover.ollies_curtains
- entity: binary_sensor.ollies_door
secondary_info: last-changed
- entity: switch.ollies_fan
state_color: true
- entity: switch.ollies_heater
secondary_info: last-changed
state_color: true
- entity: light.ollies_lamp
- entity: light.ollies_lights_level
- entity: binary_sensor.ollies_motion
secondary_info: last-changed
state_color: true
- entity: switch.ollies_sound_machine_plug
- entity: switch.nursery_power_strip_port_6
secondary_info: last-changed
name: Ollies Speaker
state_color: true
- entity: switch.ollies_tv
state_color: true
- title: Cooking
path: cooking
icon: mdi:chef-hat
cards:
- type: entities
id: probes
title: BBQ Probes
show_header_toggle: false
entities:
- entity: sensor.bbq_signal_strength
- entity: sensor.bbq_temperature_probe_1
- entity: sensor.bbq_temperature_alarm_probe_1
- entity: sensor.bbq_temperature_probe_2
- entity: sensor.bbq_temperature_alarm_probe_2
- entity: sensor.bbq_temperature_probe_3
- entity: sensor.bbq_temperature_alarm_probe_3
- entity: sensor.bbq_temperature_probe_4
- entity: sensor.bbq_temperature_alarm_probe_4
- type: entities
title: Sous Vide
id: sousvide
show_header_toggle: false
entities:
- entity: sensor.anova_precision_cooker_mode
secondary_info: last-changed
- entity: sensor.anova_precision_cooker_state
secondary_info: last-changed
- entity: sensor.anova_precision_cooker_water_temperature
secondary_info: last-changed
- entity: sensor.anova_precision_cooker_triac_temperature
secondary_info: last-changed
- entity: sensor.anova_precision_cooker_heater_temperature
secondary_info: last-changed
- entity: sensor.anova_precision_cooker_target_temperature
secondary_info: last-changed
- title: Aquariums
path: aquariums
icon: mdi:fish
cards:
- type: entities
id: aquarium-all-lights
title: Aquarium Lights
show_header_toggle: false
state_color: true
entities:
- entity: group.aquarium_lights
- type: entities
id: aquarium-10g
title: Puffers (10G)
show_header_toggle: false
state_color: true
entities:
- entity: light.aquarium_light
name: Aquarium Light 10G
- entity: sensor.aquarium_temperature
secondary_info: last-changed
- type: entities
id: aquarium-20g
title: Shrimp Tank (30G)
show_header_toggle: false
state_color: true
entities:
- entity: switch.aquarium_30g_light
- entity: sensor.oranda_aquarium_temp
secondary_info: last-changed
- type: entities
id: aquarium-30g
title: Oranda Goldfish (65G)
show_header_toggle: false
state_color: true
entities:
- entity: switch.beta_light
name: Oranda Aquarium Light
- entity: switch.shrimp_2_aquarium_plug_1
name: Oranda Aquarium Fan
- entity: sensor.aquarium_20g_temp
secondary_info: last-changed
- type: entities
id: aquarium-50g
title: Angelfish (50G)
show_header_toggle: false
state_color: true
entities:
- entity: switch.aquarium_50g_light
- entity: sensor.angelfish_aquarium_temp
secondary_info: last-changed
- type: entities
id: aquarium-55g
title: Gourami (55G)
show_header_toggle: false
state_color: true
entities:
- entity: light.aquarium_light_55g
- entity: sensor.50g_aquarium_temp
secondary_info: last-changed
- entity: switch.aquarium_55g_bubble_light
# - type: entities
# id: aquarium-5g
# title: Shrimp (3.5G)
# show_header_toggle: false
# state_color: true
# entities:
# - entity: switch.beta_light
# - entity: sensor.shrimp_aquarium_temp
# secondary_info: last-changed
# - type: entities
# id: snail-aquarium
# title: Snail (3.5G)
# show_header_toggle: false
# state_color: true
# entities:
# - entity: switch.shrimp_2_aquarium_plug_2
# name: Snail Aquarium Light
# - entity: sensor.snail_aquarium_temp
# name: Snail Aquarium Temperature
# secondary_info: last-changed
- title: Services
path: services
icon: mdi:home-circle
badges:
- entity: sensor.uptime_days
name: System Uptime
- entity: sensor.home_assistant_v2_db_size
name: Database
- sensor.load_1m
- sensor.load_5m
- sensor.load_15m
- entity: sensor.tautulli_watching
name: Plex Stats
- entity: sensor.ombi_pending_requests
name: Plex Requests
- entity: sensor.hacs
name: HACS Updates
# - entity: sensor.shakuyi_status
# name: Xbox Status
#- sensor.blue_iris_status
- sensor.connected_clients
cards:
- type: horizontal-stack
id: stats
cards:
- type: gauge
name: Plex
entity: sensor.plex
min: 0
max: 10
# - type: gauge
# name: Ads Blocked
# entity: sensor.pi_hole_ads_percentage_blocked_today
- type: gauge
name: SSL Expiration
entity: sensor.ssl_certificate_expiry
min: 1
max: 90
- type: horizontal-stack
id: ha-pc
cards:
- type: gauge
name: HA RAM Used
entity: sensor.memory_use_percent
- type: gauge
name: HA Disk Used
entity: sensor.disk_use_percent_home
- type: gauge
name: HA CPU Used
entity: sensor.processor_use
- type: horizontal-stack
id: bi-pc
cards:
- type: gauge
name: BI RAM Used
entity: sensor.blue_iris_ram_used_percent
- type: gauge
name: BI Disk Used
entity: sensor.blue_iris_c_used_percent_2
- type: gauge
name: BI CPU Used
entity: sensor.blue_iris_cpu_used
- type: horizontal-stack
id: den-pi
cards:
- type: gauge
name: Den Pi RAM Used
entity: sensor.den_pi_ram_used_percent_2
- type: gauge
name: Den Pi Disk Used
entity: sensor.den_pi_used_percent
- type: gauge
name: Den Pi CPU Used
entity: sensor.den_pi_cpu_used_2
- type: horizontal-stack
id: ms-pc
cards:
- type: gauge
name: Plex RAM Used
entity: sensor.media_server_ram_used_percent
- type: gauge
name: Plex Disk Used
entity: sensor.media_server_c_used_percent_2
- type: gauge
name: Plex CPU Used
entity: sensor.media_server_cpu_used
# - type: horizontal-stack
# id: pi-hole
# cards:
# - type: gauge
# name: Pi Hole RAM Used
# entity: sensor.pi_hole_ram_used_percent_2
# - type: gauge
# name: Pi Hole Disk Used
# entity: sensor.pi_hole_used_percent
# - type: gauge
# name: Pi Hole CPU Used
# entity: sensor.pi_hole_cpu_used_2
- type: horizontal-stack
id: sab-pc
cards:
- type: gauge
name: Sab RAM Used
entity: sensor.tosh_w10_ram_used_percent
- type: gauge
name: Sab Disk Used
entity: sensor.tosh_w10_c_used_percent_2
- type: gauge
name: Sab CPU Used
entity: sensor.tosh_w10_cpu_used
- type: horizontal-stack
id: hdd-1
cards:
- type: gauge
name: "D drive"
entity: sensor.media_server_d_used_percent_2
- type: gauge
name: "E drive"
entity: sensor.media_server_e_used_percent_2
- type: gauge
name: "G drive"
entity: sensor.media_server_g_used_percent_2
- type: horizontal-stack
id: hdd-2
cards:
- type: gauge
entity: sensor.media_server_h_used_percent_2
name: "H drive"
- type: gauge
entity: sensor.media_server_k_used_percent
name: "K drive"
- type: gauge
entity: sensor.blue_iris_e_used_percent_2
name: "Z drive"
- type: glance
id: speed
title: Speed Test
entities:
- entity: sensor.speedtest_ping
name: Ping
- entity: sensor.speedtest_download
name: Download
- entity: sensor.speedtest_upload
name: Upload
- entity: automation.speed_test
name: Run Test
tap_action:
action: call-service
service: homeassistant.update_entity
target:
entity_id: sensor.speedtest_download
- type: glance
id: servercloset
title: Server Closet
show_header_toggle: false
entities:
- entity: binary_sensor.server_room_sensor
name: Sensor
- entity: sensor.server_room_temperature
name: Temperature
- entity: sensor.server_room_humidity
name: Humidity
- type: glance
id: sabnzbd
title: SABnzbd
entities:
- entity: sensor.sabnzbd_disk_free
name: Disk Free
- entity: sensor.sabnzbd_left
name: Left
- entity: sensor.sabnzbd_queue
name: Queue
- entity: sensor.sabnzbd_speed
name: Speed
- entity: sensor.sabnzbd_status
name: Status
- type: entities
id: obihai
title: Home Phone
show_header_toggle: false
entities:
- sensor.obihai_call_direction
- sensor.obihai_last_reboot
- sensor.obihai_obitalk_service_status
- entity: sensor.obihai_phone1_port
secondary_info: last-changed
- sensor.obihai_phone1_port_last_caller_info
- sensor.obihai_reboot_required
- sensor.obihai_sp1_service_status
- type: entities
id: sprinklers
title: Sprinklers
state_color: true
show_header_toggle: false
entities:
- switch.zone_1_patio
- switch.zone_2_pool
- switch.zone_3_garage
- switch.zone_4_firepit
- switch.zone_5_front_lawn_boogie_car
- switch.zone_6_front_lawn_walkway
- switch.zone_7_front_lawn_street
- type: entities
id: launches
title: Launches
show_header_toggle: false
entities:
- entity: sensor.next_launch
secondary_info: last-changed
# - type: entities
# id: danny_mi_band
# title: Dannys Mi Band
# show_header_toggle: false
# entities:
# - entity: input_boolean.danny_mi_band_sleep
# secondary_info: last-changed
- type: conditional
conditions:
- entity: light.wled
state_not: 'unavailable'
card:
type: entities
title: WLED
state_color: true
show_header_toggle: false
entities:
- entity: light.wled
secondary_info: last-changed
- entity: light.wled_segment_1
secondary_info: last-changed
- entity: light.wled_master
secondary_info: last-changed
- switch.wled_nightlight
- title: Printers
path: printers
icon: mdi:printer
cards:
- type: entities
id: octoprint
title: OctoPrint
show_header_toggle: false
entities:
- entity: light.3d_printer
secondary_info: last-changed
- sensor.3d_printer
- binary_sensor.octoprint_printing
- binary_sensor.octoprint_printing_error
- entity: sensor.octoprint_current_state
secondary_info: last-changed
- sensor.octoprint_job_percentage
- sensor.octoprint_estimated_finish_time
- sensor.octoprint_start_time
- sensor.octoprint_actual_bed_temp
- sensor.octoprint_target_bed_temp
- sensor.octoprint_actual_tool0_temp
- sensor.octoprint_target_tool0_temp
- type: picture-entity
entity: camera.octoprint_gcode_preview
show_name: false
show_state: false
- type: glance
id: printer
title: Epson Printer Info
entities:
- entity: sensor.epson_et_7750_series
name: State
- entity: sensor.epson_et_7750_series_black_ink
name: Black
- entity: sensor.cleaning_level
name: Clean
- entity: sensor.epson_et_7750_series_cyan_ink
name: Cyan
- entity: sensor.epson_et_7750_series_magenta_ink
name: Magenta
- entity: sensor.epson_et_7750_series_photo_black_ink
name: Photo
- entity: sensor.epson_et_7750_series_yellow_ink
name: Yellow
- title: Car
path: car
icon: mdi:car
cards:
- type: custom:auto-entities
id: subaru-ascent-sensors
card:
type: entities
title: Subaru Ascent Sensors
show_header_toggle: false
sort:
method: name