-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathui-lovelace.yaml
executable file
·9356 lines (9188 loc) · 307 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
# preload:
# - gauge
# - conditional
# - entities
# - glance
# - horizontal-stack
# - markdown
# - picture-entity
# - picture-elements
animated_background:
default_url: /local/community/lovelace-animated-background/background-animations/sunny.html
# included_users:
# - note_kiosk
# - Gabe
# - gabe
entity: "sensor.dark_sky_icon_0h"
state_url:
'sunny':
- "/local/animated_backgrounds/zjqsoc6ecqhntpl5vacs.hd.mp4"
- "/local/animated_backgrounds/guwb10mfddctfvwioaex.hd.mp4"
- "/local/animated_backgrounds/dszkn6w0e9ctguawtew3.hd.mp4"
'partly-cloudy-day':
- "/local/animated_backgrounds/eqse3m00d4k6lj68jmxr.hd.mp4"
- "/local/animated_backgrounds/ixcuhp98czzpdu93f52a.hd.mp4"
- "/local/animated_backgrounds/wsbl3iw8yvnn49v7ts3f.hd.mp4"
'partly-cloudy-night':
- "/local/animated_backgrounds/x9dr8caygivq5secll7i.hd.mp4"
- "/local/animated_backgrounds/v26zyfd6yf0r33s46vpe.hd.mp4"
- "/local/animated_backgrounds/ypy8bw9fgw1zv2b4htp2.hd.mp4"
- "/local/animated_backgrounds/rosz2gi676xhkiw1ut6i.hd.mp4"
'cloudy':
- "/local/animated_backgrounds/0ezyxinzga5hibtrx5va.hd.mp4"
- "/local/animated_backgrounds/rrgta099ulami3zb9fd2.hd.mp4"
- "/local/animated_backgrounds/e95h5cqyvhnrk4ytqt4q.hd.mp4"
'rain':
- "/local/animated_backgrounds/oxb0h0xos8qqs7aa7ij0.hd.mp4"
- "/local/animated_backgrounds/vy8qpcrey7gmg4xp6lul.hd.mp4"
- "/local/animated_backgrounds/c5b5d5qt2e7hv029ys11.hd.mp4"
'snow':
- "/local/animated_backgrounds/psi1hhbsshcus8eumtr7.hd.mp4"
- "/local/animated_backgrounds/5g7sfdiiqjx7p2xgzgf5.hd.mp4"
- "/local/animated_backgrounds/ndza6yswd0k6vlboxyhk.hd.mp4"
'mostly-cloudy':
- "/local/animated_backgrounds/e95h5cqyvhnrk4ytqt4q.hd.mp4"
- "/local/animated_backgrounds/l2bjw34wnusyf5q2qq3p.hd.mp4"
- "/local/animated_backgrounds/rrgta099ulami3zb9fd2.hd.mp4"
'wind':
- "/local/animated_backgrounds/cgc4b8fwo9x9m1rb9rsh.hd.mp4"
- "/local/animated_backgrounds/l2bjw34wnusyf5q2qq3p.hd.mp4"
- "/local/animated_backgrounds/hlhff0h8md4ev0kju5be.hd.mp4"
'thunderstorm':
- "/local/animated_backgrounds/sbk5sc03j7vay52r3e4o.hd.mp4"
- "/local/animated_backgrounds/mgcpkve3xzp5nwj7rq3y.hd.mp4"
- "/local/animated_backgrounds/j6txa6307zgmk4olaykl.hd.mp4"
'clear-night':
- "/local/animated_backgrounds/x9dr8caygivq5secll7i.hd.mp4"
- "/local/animated_backgrounds/v26zyfd6yf0r33s46vpe.hd.mp4"
- "/local/animated_backgrounds/ypy8bw9fgw1zv2b4htp2.hd.mp4"
- "/local/animated_backgrounds/ts1p4x68ezcwbofpgaw2.hd.mp4"
- "/local/animated_backgrounds/jbb10vyewoy7vedtaevc.hd.mp4"
- "/local/animated_backgrounds/h1pnkz1q4exz9wy0d70a.hd.mp4"
'clear-day':
- "/local/animated_backgrounds/hlhff0h8md4ev0kju5be.hd.mp4"
- "/local/animated_backgrounds/zjqsoc6ecqhntpl5vacs.hd.mp4"
- "/local/animated_backgrounds/jvw1avupguhfbo11betq.hd.mp4"
- "/local/animated_backgrounds/8cmeusxf3pkanai43djs.hd.mp4"
- "/local/animated_backgrounds/guwb10mfddctfvwioaex.hd.mp4"
'fog':
- "/local/animated_backgrounds/vwqzlk4turo2449be9uf.hd.mp4"
- "/local/animated_backgrounds/5363uhabodwwrzgnq6vx.hd.mp4"
- "/local/animated_backgrounds/6tflyeoscecshfd22p2h.hd.mp4"
- "/local/animated_backgrounds/gqspvg2u4r0slderdya2.hd.mp4"
- "/local/animated_backgrounds/5gv8uudm8xxg666xc9gg.hd.mp4"
swipe_nav:
wrap: true
animate: swipe
prevent_default: true
swipe_amount: 30
kiosk_mode:
user_settings:
- users:
- "note_kiosk"
- "SamsungTab"
kiosk: true
ignore_mobile_settings: true
# custom_header:
# header_text: '{{ time }}'
# compact_mode: true
# footer_mode: true
# hide_help: true
# hide_tabs:
# - mobile_info
# - mobile_temp
# - mobile_fish
# - mobile_event
# - kiosk
# - lights_only
# - mail_only
# # - fart_machine
# - weather_only
# # - now_playing
# - kiosk_radio_only
# - mobile_radio_only
# exceptions:
# - conditions:
# user_agent: Mobile
# config:
# default_tab: '{% if is_state("input_select.gabe_status_dropdown", "Just Left") %}bus_only{% else %}1{% endif %}'
# notifications: clock
# clock_date: true
# date_locale: en-us
# footer_mode: true
# --ch-background: 'rgba(150, 150, 150, 0.4)'
# menu_hide: true
# options_hide: true
# voice_hide: true
# hide_tabs: '{% if is_state("input_select.gabe_status_dropdown", "Home") %}welcome,mobile_temp,kiosk,lights_only,mail_only,kiosk_radio_only,weather_only,now_playing{% else %}welcome,mobile_temp,people,apartment,kiosk,lights_only,mail_only,kiosk_radio_only,fart_machine,weather_only,now_playing{% endif %}'
# kiosk_mode: false
#
# - conditions:
# user: AJ
# config:
# default_tab: floorplan
# disable_sidebar: true
# --ch-background: 'rgba(150, 150, 150, 0.4)'
# menu_hide: true
# options_hide: true
# voice_hide: true
# hide_config: true
# date_locale: en-us
# hide_tabs:
# - welcome
# - mobile_info
# - mobile_temp
# - mobile_event
# - people
# - now_playing
# - kiosk_radio_only
# - system
# - kiosk
# - apartment
# - printer
# - reef_tank
# - amazon_tank
# - garden
# - weather
# - money
# - mobile_radio_only
# - mail_only
# kiosk_mode: false
#name: Apartment 10R
views:
- name: Welcome
title: Welcome
visible:
- user: d67d3576bc7748e199a827dd23d2588b #gabe
# - user: cec9f1abdcba40e5936a56714abdb8fe #gabes note 10
icon: mdi:home
id: welcome
path: welcome
panel: true
cards:
- type: vertical-stack
cards:
- type: picture-elements
image: /local/images/placeholder_panel.png
elements:
- type: state-label
entity: sensor.time
style:
top: 8%
left: 10%
color: rgb(249, 251, 255)
text-shadow: 2px 2px DarkSlateGrey
font-family: Trebuchet MS
font-weight: bold
font-size: 34px
pointer-events: none
text-rendering: optimizeLegibility
-moz-osx-font-smoothing: grayscale
font-smoothing: antialiased
-webkit-font-smoothing: antialiased
- type: state-icon
entity: sensor.outside_temp
style:
top: 38%
left: 50%
pointer-events: none
max-width: 144px
max-height: 144px
color: rgb(249, 251, 255)
- type: state-label
entity: sensor.outside_temp
style:
top: 8%
left: 90%
font-weight: bold
color: rgb(249, 251, 255)
font-size: 34px
font-family: Trebuchet MS
text-shadow: 2px 2px DarkSlateGrey
text-rendering: optimizeLegibility
-moz-osx-font-smoothing: grayscale
font-smoothing: antialiased
-webkit-font-smoothing: antialiased
- type: state-label
entity: sensor.time_of_day
style:
top: 30%
left: 50%
color: rgb(249, 251, 255)
font-size: 62px
pointer-events: none
text-shadow: 2px 2px DarkSlateGrey
font-family: Snell Roundhand
font-style: oblique
font-weight: 400
text-rendering: optimizeLegibility
-moz-osx-font-smoothing: grayscale
font-smoothing: antialiased
-webkit-font-smoothing: antialiased
- type: state-label
entity: input_datetime.bedroom_alarm_clock_time
style:
top: 14%
left: 10%
font-size: 18px
font-weight: bold
color: rgba(255, 255, 255, 1)
- type: state-icon
tap_action:
action: toggle
hold_action: more-info
entity: input_boolean.bedroom_alarm_clock_status
color: auto
style:
top: 14%
left: 15%
- type: state-label
entity: sensor.dark_sky_minutely_summary
# entity: sensor.outside_alerts
style:
top: 42%
left: 50%
color: rgb(249, 251, 255)
font-family: Trebuchet MS
font-style: oblique
text-shadow: 2px 2px DarkSlateGrey
font-size: 24px
pointer-events: none
font-weight: 400
text-rendering: optimizeLegibility
-moz-osx-font-smoothing: grayscale
font-smoothing: antialiased
-webkit-font-smoothing: antialiased
- type: state-label
entity: sensor.greeter_card_info
style:
top: 57%
left: 10%
color: rgb(255, 255, 255)
transform: none
font-size: 24px
pointer-events: none
font-weight: bold
border-left-style: solid
border-right-style: solid
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
border-color: rgb(34, 154, 210)
background-color: rgb(54, 65, 78)
opacity: 0.8
- type: state-label
entity: sensor.mail_deliveries_message
style:
top: 63%
left: 10%
color: rgb(255, 255, 255)
transform: none
font-size: 24px
pointer-events: none
font-weight: bold
border-left-style: solid
border-right-style: solid
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
border-color: rgb(34, 154, 210)
background-color: rgb(54, 65, 78)
opacity: 0.8
# - type: picture-elements
# image: /local/images/direction.jpg
# elements:
# - type: state-label
# entity: sensor.activity_gabes_mate
# style:
# top: 20%
# left: 14%
# font-size: 34px
# font-weight: bold
# color: rgba(255, 255, 255, 1)
# - type: state-label
# tap_action:
# action: toggle
# hold_action: more-info
# prefix: "Last seen "
# entity: sensor.last_seen_gabes_mate
# style:
# top: 30%
# left: 34%
# font-size: 18px
# font-weight: bold
# color: rgba(255, 255, 255, 1)
# - type: state-label
# tap_action:
# action: toggle
# hold_action: more-info
# entity: sensor.altitude_gabes_mate
# style:
# top: 44%
# left: 14%
# font-size: 18px
# font-weight: bold
# color: rgba(255, 255, 255, 1)
# - type: state-label
# tap_action:
# action: toggle
# hold_action: more-info
# entity: sensor.speed_gabes_mate
# style:
# top: 54%
# left: 14%
# font-size: 18px
# font-weight: bold
# color: rgba(255, 255, 255, 1)
# - type: state-label
# tap_action:
# action: toggle
# hold_action: more-info
# entity: sensor.direction_gabes_mate
# style:
# top: 64%
# left: 14%
# font-weight: bold
# color: rgba(255, 255, 255, 1)
# - type: state-label
# tap_action:
# action: toggle
# hold_action: more-info
# prefix: "+/-"
# entity: sensor.accuracy_gabes_mate
# style:
# top: 80%
# left: 20%
# font-size: 18px
# font-weight: bold
# color: rgba(255, 255, 255, 1)
# - type: state-label
# tap_action:
# action: toggle
# hold_action: more-info
# entity: sensor.source_type_gabes_mate
# prefix: "Via: "
# style:
# top: 80%
# left: 80%
# font-size: 16px
# font-weight: bold
# color: rgba(255, 255, 255, 1)
# - type: state-label
# tap_action:
# action: toggle
# hold_action: more-info
# entity: sensor.provider_gabes_mate
# prefix: "on "
# style:
# left: 60%
# font-size: 18px
# font-weight: bold
# color: rgba(255, 255, 255, 1)
# - type: gauge
# entity: sensor.battery_gabes_mate
# max: 100
# title: Phone Battery
# unit: "%"
- name: Quick Info
title: Quick Info
visible:
# - user: d67d3576bc7748e199a827dd23d2588b #gabe
- user: cec9f1abdcba40e5936a56714abdb8fe #gabes note 10
id: mobile_info
path: mobile_info
icon: mdi:cellphone
cards:
- type: picture-elements
image: /local/floorplan/10r/layers/floorplan_bg_off_bed0.png
elements:
- type: image
entity: input_select.aj_status_dropdown
tap_action: none
hold_action: none
state_image:
"Home": /local/floorplan/10r/layers/icon_aj_home.png
"Away": /local/floorplan/10r/layers/icon_aj_away.png
"In Bed": /local/floorplan/10r/layers/icon_aj_inbed.png
"Gaming": /local/floorplan/10r/layers/icon_aj_gaming.png
"Extended Away": /local/floorplan/10r/layers/icon_aj_away.png
"Unknown": /local/floorplan/10r/layers/transparent_square.png
"unknown": /local/floorplan/10r/layers/transparent_square.png
style:
top: 50%
left: 25%
width: 50%
opacity: 95%
- type: image
entity: input_select.gabe_status_dropdown
tap_action: none
hold_action: none
state_image:
"Home": /local/floorplan/10r/layers/icon_gabe_home.png
"Just Left": /local/floorplan/10r/layers/icon_gabe_left.png
"Just Arrived": /local/floorplan/10r/layers/icon_gabe_arrived.png
"Work": /local/floorplan/10r/layers/icon_gabe_work.png
"Away": /local/floorplan/10r/layers/icon_gabe_away.png
"In Bed": /local/floorplan/10r/layers/icon_gabe_bed.png
"In the Lobby": /local/floorplan/10r/layers/transparent_square.png
"Extended Away": /local/floorplan/10r/layers/icon_gabe_away.png
"At Moms House": /local/floorplan/10r/layers/icon_gabe_moms.png
"Driving": /local/floorplan/10r/layers/icon_gabe_driving.png
"M15 Bus Uptown": /local/floorplan/10r/layers/transparent_square.png
"unknown": /local/floorplan/10r/layers/transparent_square.png
style:
top: 50%
left: 75%
width: 50%
opacity: 95%
- type: image
entity: input_select.aj_status_dropdown
tap_action:
action: more-info
image: /local/floorplan/10r/layers/transparent_square.png
style:
top: 50%
left: 25%
- type: image
entity: input_select.gabe_status_dropdown
tap_action:
action: more-info
image: /local/floorplan/10r/layers/transparent_square.png
style:
top: 50%
left: 75%
- type: custom:mod-card
card:
type: glance
column_width: 33%
show_name: false
entities:
- entity: sensor.bed_occupancy_count
- entity: binary_sensor.people_home
- entity: sensor.garden_monitor_temp_f
- type: conditional
conditions:
- entity: sensor.motion_detected_count
state_not: "0"
card:
type: custom:auto-entities
card:
type: glance
title: Motion Activated
show_state: false
columns: 3
style: |
ha-card {
animation: blink 3s linear infinite;
-webkit-animation: blink 3s linear infinite;
}
@keyframes blink {
50% {
--ha-card-background: rgba(145, 35, 35, .87);
}
@-webkit-keyframes fade {
50% {
--ha-card-background: rgba(145, 35, 35, .87);
}
}
filter:
include:
- domain: binary_sensor
attributes:
device_class: motion
exclude:
- state: "Unavailable"
- state: "unavailable"
- state: "Clear"
- state: "clear"
- state: "off"
sort:
method: last_changed
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: "custom:button-card"
entity: switch.10048470bcddc2e0d678
color: auto
color_type: card
icon: mdi:lightbulb-on
name: Kitchen
show_name: false
aspect_ratio: 1/1
size: 80%
show_entity_picture: true
entity_picture: "/local/icons/icon_stove.png"
tap_action:
action: toggle
hold_action:
action: more-info
- type: "custom:button-card"
entity: light.kitchen
color: auto
color_type: card
icon: mdi:lightbulb-on
name: Counter
show_name: false
aspect_ratio: 1/1
size: 80%
show_entity_picture: true
entity_picture: "/local/icons/icon_veggies.png"
tap_action:
action: toggle
hold_action:
action: more-info
- type: "custom:button-card"
entity: light.table
color: auto
color_type: card
icon: mdi:ceiling-light
name: Table
show_name: false
aspect_ratio: 1/1
size: 80%
show_entity_picture: true
entity_picture: "/local/icons/icon_dining.png"
tap_action:
action: toggle
hold_action:
action: more-info
- type: "custom:button-card"
entity: light.desk
color: auto
color_type: card
icon: mdi:desk-lamp
name: Desk
show_name: false
aspect_ratio: 1/1
size: 80%
show_entity_picture: true
entity_picture: "/local/icons/icon_brushes.png"
tap_action:
action: toggle
hold_action:
action: more-info
- type: "custom:button-card"
entity: light.desk_overhead
color: auto
color_type: card
icon: mdi:desk-lamp
name: Desk Overhead
show_name: false
aspect_ratio: 1/1
size: 80%
show_entity_picture: true
entity_picture: "/local/icons/icon_tools.png"
tap_action:
action: toggle
hold_action:
action: more-info
- type: horizontal-stack
cards:
- type: "custom:button-card"
entity: switch.10048470bcddc2e0cf71
color_type: card
icon: mdi:ceiling-light
name: Entry
show_name: false
aspect_ratio: 1/1
size: 80%
show_entity_picture: true
entity_picture: "/local/icons/icon_key.png"
tap_action:
action: toggle
hold_action:
action: more-info
- type: "custom:button-card"
entity: light.flux_capacitor
icon: mdi:alpha-y-box-outline
color: auto
color_type: card
name: Flux
show_name: false
aspect_ratio: 1/1
size: 80%
show_entity_picture: true
entity_picture: "/local/icons/icon_flux.png"
tap_action:
action: call-service
service: light.turn_on
service_data:
entity_id: light.flux_capacitor
brightness: 78
effect: flux
double_tap_action:
action: call-service
service: light.turn_off
service_data:
entity_id: light.flux_capacitor
hold_action:
action: more-info
- type: "custom:button-card"
entity: light.bedroom_desk
color: auto
color_type: card
icon: mdi:desk-lamp
name: Bedroom
show_name: false
aspect_ratio: 1/1
size: 80%
show_entity_picture: true
entity_picture: "/local/icons/icon_homework.png"
tap_action:
action: toggle
hold_action:
action: more-info
- type: "custom:button-card"
entity: light.big_o
color: auto
color_type: card
icon: mdi:numeric-0-box-multiple
name: Big O
show_name: false
aspect_ratio: 1/1
size: 80%
show_entity_picture: true
entity_picture: "/local/icons/icon_bigo.png"
tap_action:
action: toggle
hold_action:
action: more-info
- type: "custom:button-card"
entity: light.bed_light
color: auto
color_type: card
icon: mdi:bed-empty
name: Bed
show_name: false
aspect_ratio: 1/1
size: 80%
show_entity_picture: true
entity_picture: "/local/icons/icon_double.png"
tap_action:
action: toggle
hold_action:
action: more-info
- type: vertical-stack
cards:
- type: picture-elements
image: "/local/images/bg/ph-homecam.png"
elements:
- type: image
entity: camera.housecam
camera_image: camera.housecam
style:
left: 50%
top: 50%
width: 100%
height: 100%
- type: state-icon
entity: switch.10048470bcddc2e0cf71
title: null
tap_action:
action: toggle
hold_action:
action: more-info
style:
left: 90%
top: 10%
- type: state-icon
entity: binary_sensor.homecam_motion
title: null
style:
left: 80%
top: 10%
- type: state-icon
entity: input_boolean.homecam_snapshot
title: null
tap_action:
action: call-service
service: automation.trigger
service_data:
entity_id: automation.homecam_snapshot_momentary
hold_action:
action: more-info
style:
left: 70%
top: 10%
- type: state-label
entity: sensor.last_homecam_motion
title: null
prefix: "Last Motion: "
style:
left: 50%
top: 90%
font-size: 16px
font-weight: bold
color: rgba(255, 255, 255, 1)
- type: state-label
entity: sensor.garden_monitor_temp_f
title: null
style:
left: 90%
top: 90%
font-size: 16px
font-weight: bold
color: rgba(255, 255, 255, 1)
- type: picture-elements
image: "/local/images/bg/ph-kioskcam.png"
show_name: false
show_state: false
elements:
- type: image
entity: camera.kioskcam
camera_image: camera.kioskcam
style:
left: 50%
top: 50%
width: 100%
height: 100%
- type: state-icon
entity: switch.call_the_hounds
title: null
tap_action:
action: toggle
hold_action:
action: more-info
style:
left: 80%
top: 10%
- type: state-icon
entity: binary_sensor.kiosk_motion
title: null
style:
left: 70%
top: 10%
- type: state-icon
entity: switch.2437254184f3eb69e784
title: null
tap_action:
action: toggle
hold_action:
action: more-info
style:
left: 90%
top: 10%
- type: state-label
entity: sensor.plant_monitor_temp_f
title: null
style:
left: 90%
top: 90%
font-size: 16px
font-weight: bold
color: rgba(255, 255, 255, 1)
- type: conditional
conditions:
- entity: sensor.motion_detected_count
state_not: "0"
card:
type: custom:auto-entities
card:
type: glance
title: Motion Activated
show_state: false
columns: 3
style: |
ha-card {
animation: blink 3s linear infinite;
-webkit-animation: blink 3s linear infinite;
}
@keyframes blink {
50% {
--ha-card-background: rgba(145, 35, 35, .87);
}
@-webkit-keyframes fade {
50% {
--ha-card-background: rgba(145, 35, 35, .87);
}
}
filter:
include:
- domain: binary_sensor
attributes:
device_class: motion
exclude:
- state: "Unavailable"
- state: "unavailable"
- state: "Clear"
- state: "clear"
- state: "off"
sort:
method: last_changed
- name: Temp
title: Temp
visible:
- user: d67d3576bc7748e199a827dd23d2588b #gabe
id: mobile_temp
path: mobile_temp
icon: mdi:air-conditioner
cards:
- type: vertical-stack
cards:
- type: entities
title: Living Room Temp
entities:
# - entity: input_select.alexa_livingroom_ac
- entity: sensor.garden_monitor_temp_f
name: Inside
icon: mdi:home
unit: F
# - entity: sensor.garden_monitor_temp_h
# name: Humidity
# icon: mdi:water-percent
# unit: "%"
# - entity: sensor.dark_sky_temperature
# name: Outside
# icon: mdi:tree
# unit: F
- type: entities
title: Bedroom Temp
entities:
# - entity: input_boolean.bedroom_ac_toggle
# - entity: input_select.alexa_bedroom_ac
- entity: sensor.plant_monitor_temp_f
name: Inside
icon: mdi:home
unit: F
# - entity: sensor.plant_monitor_temp_h
# name: Humidity
# icon: mdi:water-percent
# unit: "%"
# - entity: sensor.dark_sky_temperature
# name: Outside
# icon: mdi:tree
# unit: F
- name: Quick Fish Info
title: Quick Fish Info
visible:
- user: d67d3576bc7748e199a827dd23d2588b #gabe
- user: e0ea2a678d68406a9f7adfba18751822 #samsung tab
id: mobile_fish
path: mobile_fish
icon: mdi:waves
cards:
##Fish Glance
- type: vertical-stack
cards:
- type: picture-elements
image: "/local/images/bg/ph-octocam.jpg"
show_name: false
show_state: false
elements:
- type: image
entity: camera.octocam
camera_image: camera.octocam
style:
left: 50%
top: 50%
width: 100%
height: 100%
- type: state-label
entity: sensor.onlyamazonpitemp
icon: mdi:thermometer
style:
top: 90%
left: 84%
font-size: 16px
font-weight: bold
color: rgba(255, 255, 255, 1)
- type: state-label
entity: sensor.amazonpifloat
icon: mdi:waves
style:
top: 90%
left: 54%
font-size: 16px
font-weight: bold
color: rgba(255, 255, 255, 1)
- type: state-label
entity: sensor.monthly_amazon_ph
icon: mdi:test-tube
style:
top: 90%
left: 14%
font-size: 16px
font-weight: bold
color: rgba(255, 255, 255, 1)
- type: icon
entity: sensor.onlyamazonpitemp
title: Water Temperature
icon: mdi:thermometer
style:
top: 90%
left: 72%
color: rgba(255, 255, 255, 1)
- type: icon
entity: sensor.amazonpifloat
title: Water Level
icon: mdi:waves
style:
top: 90%
left: 44%
color: rgba(255, 255, 255, 1)
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: "custom:button-card"
entity: switch.06200940dc4f22cbb432_7
color_type: card
color: auto
icon: mdi:chart-bubble
name: CO2
tap_action:
action: toggle
hold_action:
action: more-info
- type: "custom:button-card"
entity: switch.06200940dc4f22cbb432_1
color_type: card
color: auto
icon: mdi:waves
name: Waves
tap_action:
action: toggle
hold_action:
action: more-info
- type: "custom:button-card"
entity: switch.06200940dc4f22cbb432_2
color_type: card
color: auto
icon: mdi:thermometer
name: Heater
tap_action:
action: toggle
hold_action:
action: more-info
- type: "custom:button-card"
entity: sensor.amazon_ato_level
show_name: false
color_type: icon
show_state: true
state:
- value: "Low"
color: rgb(199, 88, 66)
icon: mdi:cube-outline
- value: "OK"
color: rgb(42, 173, 77)
icon: mdi:pipe
tap_action:
action: more-info
hold_action:
action: more-info
- type: horizontal-stack
cards:
- type: "custom:button-card"
entity: switch.06200940dc4f22cbb432_4
color_type: card