-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathGalaxy TAB Dashboard
3971 lines (3971 loc) · 134 KB
/
Galaxy TAB Dashboard
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
views:
- title: Dash
path: ''
icon: mdi:castle
badges: []
cards:
- type: grid
columns: 1
square: false
name: Big Room
cards:
- type: grid
columns: 5
square: false
cards:
- type: button
tap_action:
action: more-info
entity: alarm_control_panel.buck_creek
name: DSC
- type: custom:button-card
entity: binary_sensor.north_gate_status
name: North Gate
icon: mdi:gate
tap_action:
action: more-info
show_state: false
styles:
card:
- filter: opacity(50%)
- height: 102px
icon:
- color: white
name:
- font-size: 12px
- color: white
state:
- value: 'on'
icon: mdi:gate-open
styles:
card:
- background-color: red
- filter: opacity(100%)
- height: 102px
- animation: blink 2s ease infinite
icon:
- color: white
name:
- color: white
- type: custom:button-card
entity: binary_sensor.south_gate_status
name: South Gate
icon: mdi:gate
tap_action:
action: more-info
show_state: false
styles:
card:
- filter: opacity(50%)
- height: 102px
icon:
- color: white
name:
- font-size: 12px
- color: white
state:
- value: 'on'
icon: mdi:gate-open
styles:
card:
- background-color: red
- filter: opacity(100%)
- height: 102px
- animation: blink 2s ease infinite
icon:
- color: white
name:
- color: white
- type: button
tap_action:
action: toggle
entity: input_boolean.vacay_status
name: Vacay
icon: mdi:tree
- type: button
icon: mdi:desk
name: Work Mode
tap_action:
action: call-service
service: automation.trigger
service_data:
entity_id: automation.work_day_setup
confirmation: true
- type: grid
columns: 6
cards:
- type: custom:button-card
entity: lock.front_door_lock_js
name: Front
icon: mdi:lock
tap_action:
action: toggle
show_state: false
styles:
card:
- background-color: green
- filter: opacity(70%)
name:
- font-size: 12px
- color: white
state:
- value: unlocked
icon: mdi:lock-open
styles:
card:
- background-color: red
- filter: opacity(100%)
icon:
- color: white
name:
- color: white
- type: custom:button-card
entity: lock.back_door_lock_js
name: Back
icon: mdi:lock
tap_action:
action: toggle
show_state: false
styles:
card:
- background-color: green
- filter: opacity(70%)
name:
- font-size: 12px
- color: white
state:
- value: unlocked
icon: mdi:lock-open
styles:
card:
- background-color: red
- filter: opacity(100%)
icon:
- color: white
name:
- color: white
- type: custom:button-card
entity: cover.garage_door_js
name: Garage
icon: mdi:garage
tap_action:
action: toggle
show_state: false
styles:
card:
- '--mdc-ripple-color': blue
- '--mdc-ripple-press-opacity': 0.5
- background-color: green
- filter: opacity(70%)
name:
- font-size: 12px
- color: white
state:
- value: open
icon: mdi:garage-open
styles:
card:
- background-color: red
- filter: opacity(100%)
icon:
- color: white
name:
- color: white
- type: custom:button-card
entity: binary_sensor.front_garage_door_entry
name: Front
icon: mdi:door-closed
tap_action:
action: more-info
show_state: false
styles:
card:
- background-color: green
- filter: opacity(70%)
icon:
- color: white
name:
- font-size: 12px
- color: white
state:
- value: 'on'
icon: mdi:door-open
styles:
card:
- background-color: red
- filter: opacity(100%)
icon:
- color: white
name:
- color: white
- type: custom:button-card
entity: binary_sensor.back_doore_entry
name: Back
icon: mdi:door-closed
tap_action:
action: more-info
show_state: false
styles:
card:
- background-color: green
- filter: opacity(70%)
icon:
- color: white
name:
- font-size: 12px
- color: white
state:
- value: 'on'
icon: mdi:door-open
styles:
card:
- background-color: red
- filter: opacity(100%)
icon:
- color: white
name:
- color: white
- type: custom:button-card
entity: binary_sensor.fridge_door_sensor_js
name: Fridge
icon: mdi:fridge-variant
tap_action:
action: more-info
show_state: false
styles:
card:
- background-color: green
- filter: opacity(70%)
icon:
- color: white
name:
- font-size: 12px
- color: white
state:
- value: 'on'
icon: mdi:fridge-variant-alert
styles:
card:
- background-color: red
- filter: opacity(100%)
icon:
- color: white
name:
- color: white
- type: grid
columns: 8
square: false
cards:
- type: button
tap_action:
action: toggle
entity: switch.front_holiday_lights_js
name: HLDY
- type: button
tap_action:
action: toggle
entity: group.trees
name: TREES
icon: hass:string-lights
- type: button
tap_action:
action: toggle
entity: switch.deck_lights_js
name: Deck
icon: hass:spotlight-beam
- type: button
tap_action:
action: toggle
entity: switch.back_porch_lights_js
name: BkPch
icon: mdi:lightbulb
- type: button
tap_action:
action: toggle
entity: switch.driveway_lights_js
name: Drive
icon: hass:spotlight-beam
- type: button
tap_action:
action: toggle
entity: switch.front_porch_lights_js
name: Prch
icon: mdi:lightbulb
show_icon: true
show_name: true
- type: custom:button-card
tap_action:
action: toggle
entity: switch.attic_air_handler_js
name: Attic
icon: mdi:air-conditioner
color_type: card
color: rgb(28, 128, 199)
state:
- value: 'on'
styles:
card:
- filter: (opacity 50%)
- height: 55px
- type: custom:button-card
tap_action:
action: info
entity: binary_sensor.power_sensor_door_node_js
name: Grg Pwr
icon: mdi:lightning-bolt
color_type: card
color: rgb(28, 128, 199)
state:
- value: 'on'
icon: mdi:lightning-bolt
styles:
card:
- background-color: red
- filter: opacity(100%)
- animation: blink 2s ease infinite
- height: 55px
icon:
- color: white
name:
- color: white
- font-size: 12px
- value: 'off'
icon: mdi:lightning-bolt
styles:
card:
- filter: opacity(50%)
- background-color: green
- height: 55px
icon:
- color: white
name:
- color: white
- font-size: 12px
- type: grid
columns: 8
square: false
cards:
- type: button
tap_action:
action: toggle
entity: switch.front_hall_lights_js
name: Hall
icon: mdi:lightbulb
show_icon: true
show_name: true
- type: button
tap_action:
action: toggle
entity: switch.study_light_js
name: Study
icon: mdi:floor-lamp
- type: button
tap_action:
action: toggle
entity: switch.kitchen_counter_js
name: CNTR
icon: mdi:lightbulb
- type: button
tap_action:
action: toggle
entity: switch.kitchen_island_js
name: ISLND
icon: mdi:lightbulb
- type: button
tap_action:
action: toggle
entity: switch.living_room_lamp_js
name: LVNG
icon: mdi:lamp
- type: button
tap_action:
action: toggle
entity: switch.cw_lamp_js
name: CW
icon: mdi:lamp
- type: button
tap_action:
action: toggle
entity: switch.allyson_lamp_js
icon: mdi:lamp
name: AW
- type: button
tap_action:
action: toggle
entity: switch.play_room_light_js
name: Play
icon: mdi:lightbulb
- type: grid
columns: 4
square: false
cards:
- type: custom:bignumber-card
entity: sensor.outdoor_temperature
title: Outside
from: bottom
scale: 30px
hideunit: true
round: 0
min: 0
max: 115
severity:
- value: 50
bnStyle: var(--label-badge-blue)
- value: 82
bnStyle: var(--label-badge-green)
- value: 90
bnStyle: var(--label-badge-yellow)
- value: 115
bnStyle: var(--label-badge-red)
color: '#FFFFFF'
- type: custom:bignumber-card
entity: sensor.heat_index
title: Feels
from: bottom
scale: 30px
hideunit: true
round: 0
min: 0
max: 120
severity:
- value: 50
bnStyle: var(--label-badge-blue)
- value: 60
bnStyle: var(--label-badge-green)
- value: 75
bnStyle: var(--label-badge-yellow)
- value: 115
bnStyle: var(--label-badge-red)
color: '#fff'
- type: custom:bignumber-card
entity: sensor.humidity
title: Humidity
from: bottom
scale: 30px
hideunit: true
round: 0
min: 35
max: 100
severity:
- value: 30
bnStyle: rgb(0,0,0)
- value: 55
bnStyle: rgb(153,204,255)
- value: 70
bnStyle: rgb(0,128,255)
- value: 100
bnStyle: rgb(0,76,153)
color: '#FFFFFF'
- type: button
entity: light.guest_lamp
name: Guest
- type: grid
columns: 5
square: false
cards:
- type: custom:button-card
name: Max Wind
entity: sensor.max_daily_wind_gust
show_state: true
styles:
card:
- height: 100px
- filter: opacity(70%)
name:
- font-size: 12px
- color: white
state:
- value: 20
operator: '>='
styles:
card:
- background-color: red
- filter: opacity(1000%)
- height: 100px
icon:
- color: white
name:
- color: white
state:
- color: white
- value: 12
operator: '>='
styles:
card:
- background-color: yellow
- filter: opacity(70%)
- height: 100px
icon:
- color: black
name:
- color: black
state:
- color: black
- type: custom:button-card
name: Rain Today
entity: sensor.daily_rain_rate
title: Day Rain
show_state: true
show_units: false
styles:
card:
- height: 100px
- filter: opacity(30%)
name:
- font-size: 12px
- color: white
state:
- value: 0
operator: '>'
styles:
card:
- background-color: lightblue
- filter: opacity(100%)
- height: 100px
icon:
- color: blue
name:
- color: blue
state:
- color: blue
- type: custom:button-card
name: Rain Rate
entity: sensor.rain_rate_2
title: Day Rain
show_state: true
show_units: false
styles:
card:
- height: 100px
- filter: opacity(30%)
name:
- font-size: 12px
- color: white
state:
- value: 0
operator: '>'
styles:
card:
- background-color: lightblue
- filter: opacity(100%)
- height: 100px
icon:
- color: blue
name:
- color: blue
state:
- color: blue
- type: custom:button-card
name: Fridge
entity: sensor.fridge_temperature
title: Fridge
show_units: true
show_state: true
styles:
card:
- filter: opacity(70%)
- height: 100px
name:
- font-size: 12px
- color: white
state:
- value: 45
operator: '>='
styles:
card:
- background-color: yellow
- filter: opacity(100%)
- height: 100px
- animation: blink 2s ease infinite
icon:
- color: black
name:
- color: black
state:
- color: black
- type: custom:button-card
name: Grg Freeze
entity: sensor.garage_freezer_sensor_temp
title: Grg Freeze
show_units: true
show_state: true
styles:
card:
- filter: opacity(70%)
- height: 100px
name:
- font-size: 12px
- color: white
state:
- value: 10
operator: '>='
styles:
card:
- background-color: red
- filter: opacity(100%)
- height: 100px
- animation: blink 2s ease infinite
icon:
- color: white
name:
- color: white
- type: grid
columns: 6
square: 'off'
cards:
- type: custom:button-card
icon: mdi:blank
name: Study
entity: sensor.study_sensor_air_temperature_js
title: Study
show_units: true
show_state: true
styles:
card:
- filter: opacity(70%)
name:
- font-size: 12px
- color: white
state:
- value: 80
operator: '>='
styles:
card:
- background-color: red
- filter: opacity(100%)
icon:
- color: white
name:
- color: white
- type: custom:button-card
name: Study PC
icon: mdi:blank
entity: sensor.pc_box_temperature
show_units: true
show_state: true
styles:
card:
- filter: opacity(70%)
name:
- font-size: 12px
- color: white
state:
- value: 95
operator: '>='
styles:
card:
- background-color: red
- filter: opacity(100%)
icon:
- color: white
name:
- color: white
- type: custom:button-card
name: Garage
icon: mdi:blank
entity: sensor.garage_sensor_air_temperature_js
title: Garage
show_units: true
show_state: true
styles:
card:
- filter: opacity(70%)
name:
- font-size: 12px
- color: white
state:
- value: 90
operator: '>='
styles:
card:
- background-color: yellow
- filter: opacity(80%)
icon:
- color: black
name:
- color: black
state:
- color: black
- value: 110
operator: '>='
styles:
card:
- background-color: red
- filter: opacity(800%)
icon:
- color: black
name:
- color: black
- type: custom:button-card
name: Closet
icon: mdi:blank
entity: sensor.new_buck_creek_inside_temp
title: Closet
show_units: true
show_state: true
styles:
card:
- filter: opacity(70%)
name:
- font-size: 12px
- color: white
state:
- value: 80
operator: '>='
styles:
card:
- background-color: red
- filter: opacity(100%)
icon:
- color: white
name:
- color: white
- type: custom:button-card
name: Attic
icon: mdi:blank
entity: sensor.attic_air_temperature_js
title: Attic
show_units: true
show_state: true
styles:
card:
- filter: opacity(70%)
name:
- font-size: 12px
- color: white
state:
- value: 110
operator: '>='
styles:
card:
- background-color: red
- filter: opacity(800%)
icon:
- color: white
name:
- color: white
state:
- color: black
- value: 100
operator: '>='
styles:
card:
- background-color: yellow
- filter: opacity(80%)
icon:
- color: black
name:
- color: black
state:
- color: black
- type: custom:button-card
name: Guest
icon: mdi:blank
entity: sensor.office_temperature
show_units: true
show_state: true
styles:
card:
- filter: opacity(70%)
name:
- font-size: 12px
- color: white
state:
- value: 80
operator: '>='
styles:
card:
- background-color: red
- filter: opacity(100%)
icon:
- color: white
name:
- color: white
- type: grid
columns: 5
square: false
cards:
- type: button
tap_action:
action: toggle
entity: automation.frigate_motion_driveway_new_only
show_state: false
name: Drive
show_icon: true
icon: mdi:robot
- type: button
tap_action:
action: toggle
entity: automation.frigate_notify_front_porch
name: Front
show_state: false
- type: custom:button-card
entity: input_text.4000_extension_status
icon: mdi:phone
name: 4000
color_type: card
styles:
card:
- filter: opacity(20%)
- height: 75px
state:
- value: InUse
color: red
icon: mdi:phone
styles:
card:
- filter: opacity(100%)
- height: 75px
- value: Ringing
color: green
icon: mdi:phone
styles:
card:
- filter: opacity(100%)
- height: 75px
- animation: blink 2s ease infinite
- type: custom:button-card
entity: input_text.4001_extension_status
icon: mdi:phone
name: 4001
color_type: card
styles:
card:
- filter: opacity(20%)
- height: 75px
state:
- value: InUse
color: red
icon: mdi:phone
styles:
card:
- filter: opacity(100%)
- height: 75px
- value: Ringing
color: green
icon: mdi:phone
styles:
card:
- filter: opacity(100%)
- height: 75px
- animation: blink 2s ease infinite
- type: custom:button-card
entity: input_text.4002_extension_status
icon: mdi:phone
name: 4002
color_type: card
styles:
card:
- filter: opacity(20%)
- height: 75px
state:
- value: InUse
color: red
icon: mdi:phone
styles:
card:
- filter: opacity(100%)
- height: 75px
- value: Ringing
color: green
icon: mdi:phone
styles:
card:
- filter: opacity(100%)
- height: 75px
- animation: blink 2s ease infinite
icon_height: '-10px'
hold_action:
action: more-info
- type: grid
columns: 1
square: false
cards:
- type: custom:home-feed-card
title: null
show_empty: false
scrollbars_enabled: false
max_item_count: 4
state_color: true
exact_durations: true
entities:
- entity: binary_sensor.kitchen_living_motion
icon: mdi:motion-sensor
name: Kitchen/Living Motion
- entity: binary_sensor.study_sensor_motion_detected_js
icon: mdi:motion-sensor
name: Study Motion
- entity: sensor.front_hall_last_tripped
icon: mdi:motion-sensor
name: Front Hall Motion
- entity: binary_sensor.upstairs_motion
icon: mdi:motion-sensor
- entity: binary_sensor.back_doore_entry
icon: mdi:door
name: Back Door
- entity: binary_sensor.front_garage_door_entry
icon: mdi:door
name: Front Hall Door
- entity: sensor.garage_door_js_access_control_barrier_sensor_status
icon: mdi:garage
name: Garage Door
- entity: alarm_control_panel.buck_creek
icon: mdi:alarm
name: Alarm
- entity: switch.study_light_js
icon: mdi:lamp
name: Study Light
- entity: binary_sensor.garage_sensor_js_motion_detection
icon: mdi:motion-sensor
name: Garage Motion
- entity: lock.back_door_lock_js
icon: mdi:lock
name: Back Door Lock
- entity: lock.front_door_lock_js
icon: mdi:lock
name: Front Door Lock
- entity: binary_sensor.fridge_door_sensor_js
icon: mdi:door
name: Fridge Door
- entity: sensor.bi_alert
name: BI Alert
icon: mdi:camera
- type: grid
columns: 5
square: false
cards:
- type: custom:button-card
entity: binary_sensor.kitchen_living_motion
icon: mdi:motion-sensor
name: Kitch
color_type: card
styles:
card:
- filter: opacity(70%)
name:
- font-size: 12px
- color: white
state:
- value: 'on'
color: red
icon: mdi:alert
- type: custom:button-card
entity: binary_sensor.front_hall_motion
icon: mdi:motion-sensor
name: Hall
color_type: card
styles:
card:
- filter: opacity(70%)
name:
- font-size: 12px
- color: white
state:
- value: 'on'
color: red
icon: mdi:alert
- type: custom:button-card
entity: binary_sensor.garage_sensor_js_motion_detection
icon: mdi:motion-sensor
name: Garage
color_type: card
styles:
card:
- filter: opacity(70%)
name:
- font-size: 12px
- color: white
state:
- value: 'on'
color: red
icon: mdi:alert
- type: custom:button-card
entity: binary_sensor.upstairs_motion
icon: mdi:motion-sensor
name: Upstairs
color_type: card
styles:
card:
- filter: opacity(70%)
name:
- font-size: 12px
- color: white
state:
- value: 'on'
color: red
icon: mdi:alert
- type: custom:button-card
entity: binary_sensor.study_sensor_motion_detected_js
icon: mdi:motion-sensor
name: Study