-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui-lovelace.yaml
3291 lines (3260 loc) · 127 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
preload:
- entity-filter
views:
- title: Status
icon: mdi:home
cards:
- type: conditional #water leak alerts
conditions:
- condition: or
conditions:
- condition: state
entity: alert.leak_detection_dishwasher
state: "on"
- condition: state
entity: alert.leak_detection_hot_water_heater
state: "on"
- condition: state
entity: alert.leak_detection_washer
state: "on"
card:
type: glance
entities:
- entity: binary_sensor.dishwasher_water_leak_sensor_water_leak_detected
name: Dishwasher
- entity: binary_sensor.hot_water_heater_water_leak_sensor_water_leak_detected
name: Hot Water Tank
- entity: binary_sensor.washer_water_leak_sensor_water_leak_detected
name: Washer
- type: 'custom:auto-entities' #zwave battery status
card:
type: entities
title: AWOL Z-Wave Devices
show_header_toggle: false
unique: true
filter:
template: |
{% for s in states.sensor -%}
{%- set value = s.entity_id -%}
{%- set pattern = '_last_seen' -%}
{%- set res = value | regex_findall_index(pattern) if value is search(pattern) else "" -%}
{%- if res == pattern -%}
{%- set lastseen = s.state | as_timestamp | int -%}
{%- set yesterday = (utcnow() | as_timestamp | int) - 86400 -%}
{%- if lastseen <= yesterday -%}
{%- set name = s.name.replace(' Last seen', '') -%}
{%- set tapname = value.replace('_last_seen', '_battery_level') -%}
{%- if states(tapname) != 'unknown' -%}
{{-
{
'entity': tapname,
'name': name,
}
-}},
{%- endif -%}
{%- endif -%}
{%- endif -%}
{%- endfor %}
sort:
method: last_changed
numeric: false
reverse: false
else:
type: conditional
conditions:
- condition: screen
media_query: "(min-width: 128000px)"
card:
type: markdown
content: All z-wave devices have been seen in the last day, Mr Big Screen.
- type: vertical-stack #location & lock
cards:
- type: entity-filter
entities:
- entity: sensor.trevor_location
name: Trevor
- entity: sensor.emily_location
name: Emily
conditions:
- condition: state
state_not: "away"
card:
type: glance
title: Location
- type: horizontal-stack
cards:
- type: button
entity: lock.lock_front_door_lock
tap_action:
action: toggle
- type: conditional
conditions:
- entity: sensor.front_door_lock_battery_level
state_not: "unknown"
card:
type: gauge
entity: sensor.front_door_lock_battery_level
name: Door Battery
severity:
green: 85
yellow: 45
red: 0
- type: weather-forecast #weather
entity: weather.kbfi_daynight
- type: vertical-stack # lights
cards:
- type: tile
entity: light.all_lights
icon: mdi:home-lightbulb
features:
- type: "light-brightness"
- type: grid
columns: 3
square: true
cards:
- type: button
entity: switch.kitchen_plants
icon: mdi:cactus
icon_height: 100px
- type: button
entity: switch.office_plants
icon: mdi:sprout
icon_height: 100px
- type: button
entity: switch.porch_light
icon: mdi:coach-lamp
icon_height: 100px
- type: 'custom:vertical-stack-in-card' # Home temps
cards:
- type: 'custom:mini-graph-card'
title: Temperatures
hours_to_show: 12
points_per_hour: 1
hour24: true
line_width: 2
decimals: 0
entities:
- sensor.house_avg_temp
- sensor.honeywell_temp
- type: vertical-stack
cards:
- type: conditional
conditions:
- condition: state
entity: input_boolean.ac_or_furnace
state: 'on'
card:
type: thermostat
entity: climate.home
name: Furnace
decimals: 0
step_size: 1
- type: conditional
conditions:
- condition: state
entity: input_boolean.ac_or_furnace
state: 'off'
card:
type: thermostat
entity: climate.window_a_c
name: Air Conditioner
decimals: 0
step_size: 1
- type: heading
heading: 'HVAC Type'
tap_action:
action: toggle
entity: switch.ac_or_furnace
badges:
- entity: switch.ac_or_furnace
state_content: name
tap_action:
action: toggle
- type: 'custom:vertical-stack-in-card' #humidity
cards:
- type: 'custom:mini-graph-card'
title: Humidity
hours_to_show: 12
points_per_hour: 1
line_width: 2
hour24: true
decimals: 0
entities:
- sensor.bathroom_sensor_humidity
- sensor.home_humidity
- type: horizontal-stack
cards:
- type: button
entity: switch.bathroom_fan
tap_action:
action: toggle
- type: gauge
entity: sensor.bathroom_humidity_diff
name: Humidity Diff.
- type: grid #coffee
columns: 3
square: true
cards:
- type: button
entity: switch.coffee
tap_action:
action: toggle
confirmation:
text: "Start Coffee?"
- type: button
entity: switch.coffee_set
tap_action:
action: call-service
service: homeassistant.turn_on
service_data:
entity_id: script.coffee_clear
- type: button
entity: switch.one_two_lamps
- type: grid #Tech 2
columns: 3
title: Tech
square: true
cards:
- type: tile
entity: sensor.adguard_dns_queries_blocked
vertical: true
icon: mdi:help-network
tap_action:
action: navigate
navigation_path: /a0d7b954_adguard/ingress
name: DNS Queries
- type: tile
entity: sensor.adguard_dns_queries_blocked_ratio
vertical: true
name: DNS blocked
icon: mdi:network-off
tap_action:
action: navigate
navigation_path: /a0d7b954_adguard/ingress
- type: button
entity: switch.adguard_protection
name: Adguard Active
- type: tile
entity: sensor.cert_expiry_timestamp_home_trevortaylor_net
vertical: true
name: SSL Expiration
- type: tile
entity: sensor.uptime
vertical: true
name: HASS Uptime
icon: mdi:database-clock
- type: button
entity: switch.computer
icon: mdi:desktop-tower-monitor
- title: Lights
icon: mdi:lightbulb
cards:
- type: horizontal-stack
cards:
- type: tile
entity: light.hallway_light
icon: mdi:light-recessed
features:
- type: "light-brightness"
- type: tile
entity: light.bathroom_light
icon: mdi:vanity-light
features:
- type: "light-brightness"
- type: horizontal-stack
cards:
- type: tile
entity: light.office_lamp
icon: mdi:lamp
features:
- type: "light-brightness"
- type: tile
entity: light.office_light
name: Office Ceiling Light
icon: mdi:light-recessed
features:
- type: "light-brightness"
- type: horizontal-stack
cards:
- type: tile
entity: light.spare_bedroom_light
icon: mdi:light-recessed
features:
- type: "light-brightness"
- type: tile
entity: light.living_room
icon: mdi:floor-lamp
features:
- type: "light-brightness"
- type: 'custom:vertical-stack-in-card'
cards:
- type: tile
entity: light.bedroom_light
name: Bedroom Ceiling Light
icon: mdi:light-recessed
features:
- type: "light-brightness"
- type: horizontal-stack
cards:
- type: tile
icon: mdi:lamp
entity: light.bedroom_color_1
features:
- type: "light-brightness"
- type: tile
entity: light.bedroom_color_2
icon: mdi:lamp
features:
- type: "light-brightness"
name: Emily's Lamp
- type: horizontal-stack
cards:
- type: tile
entity: light.ceiling_kitchen_lights
icon: mdi:light-recessed
features:
- type: "light-brightness"
- type: tile
entity: light.kitchen_sink
icon: mdi:ceiling-light
features:
- type: "light-brightness"
- type: 'custom:vertical-stack-in-card'
cards:
- type: tile
features:
- type: "light-brightness"
entity: light.dining_lights
icon: mdi:chandelier
- type: entities
entities:
- type: custom:fold-entity-row
head:
type: section
label: Chandelier Bulbs
entities:
- entity: light.dining_room_1
tap_action:
action: toggle
- entity: light.dining_room_2
tap_action:
action: toggle
- entity: light.dining_room_3
tap_action:
action: toggle
- entity: light.dining_room_4
tap_action:
action: toggle
- entity: light.dining_room_5
tap_action:
action: toggle
- type: grid
columns: 3
square: false
cards:
- type: button
entity: switch.kitchen_plants
icon: mdi:cactus
icon_height: 100px
- type: button
entity: switch.office_plants
icon: mdi:sprout
icon_height: 100px
- type: button
entity: switch.porch_light
icon: mdi:coach-lamp
icon_height: 100px
- title: Tesla
icon: mdi:car
cards:
- type: 'custom:vertical-stack-in-card'
cards:
#current bug prevents the binary sensor from displaying the correct value
# - type: custom:mini-graph-card
# entities:
# - entity: binary_sensor.the_hippo_asleep
# name: Sleeping
# state_map:
# - value: "on"
# label: Asleep
# - value: "off"
# label: Awake
# smoothing: false
# group_by: hour
# aggregate_func: max
# line_width: 2
# height: 70
# hours_to_show: 48
# show:
# name: false
# icon: false
- type: entities
title: Data Update
entities:
- entity: sensor.the_hippo_data_last_update_time
name: Data last updated
- entity: button.the_hippo_force_data_update
name: Manually Trigger Update
- type: map
aspect_ratio: 16x9
auto_fit: true
default_zoom: 18
entities:
- device_tracker.the_hippo_location_tracker
- type: entities
entities:
- entity: sensor.the_hippo_odometer
name: Miles Driven
- type: grid
square: false
columns: 2
cards:
- type: button
entity: switch.the_hippo_sentry_mode
name: Sentry Mode
- type: button
entity: lock.the_hippo_doors
name: Doors
- type: button
entity: cover.the_hippo_trunk
name: Trunk
tap_action:
action: call-service
service: cover.toggle
service_data:
entity_id: cover.the_hippo_trunk
confirmation:
text: "WARNING: clearance required"
- type: button
entity: cover.the_hippo_frunk
name: Frunk
tap_action:
action: call-service
service: cover.open_cover
service_data:
entity_id: cover.the_hippo_frunk
confirmation:
text: "WARNING: manual close required"
- type: 'custom:vertical-stack-in-card'
cards:
- type: custom:mini-graph-card
name: Battery & Range
points_per_hour: 2
icon: 'mdi:battery'
line_width: 2
entities:
- entity: sensor.the_hippo_battery
name: Battery
- type: entities
entities:
- entity: number.the_hippo_charge_limit
- entity: binary_sensor.the_hippo_charger
name: Charger
- entity: switch.the_hippo_charger
name: Charging
- entity: sensor.the_hippo_charging_rate
name: Charging Rate
- entity: sensor.the_hippo_time_charge_complete
name: Time to Target Level
- entity: sensor.the_hippo_range
name: Max Range
- type: 'custom:vertical-stack-in-card'
cards:
- type: custom:mini-graph-card
name: Temperature
points_per_hour: 2
icon: 'mdi:thermometer'
line_width: 2
entities:
- entity: sensor.the_hippo_temperature_inside
name: Inside
- entity: sensor.the_hippo_temperature_outside
name: Outside
line_color: blue
- type: entities
entities:
- entity: select.the_hippo_cabin_overheat_protection
name: Overheat Protection
- type: 'tile'
entity: climate.the_hippo_hvac_climate_system
name: Climate
features:
- type: "climate-hvac-modes"
style: "icons"
hvac_modes:
# - auto
- 'heat_cool'
- 'off'
- type: "climate-preset-modes"
style: "icons"
preset_modes:
- 'normal'
- 'defrost'
decimals: 0
step_size: 1
- type: entities
entities:
- type: custom:fold-entity-row
head:
type: section
label: Heated Seats and Steering Wheel
entities:
- entity: select.the_hippo_heated_steering_wheel
name: Steering Wheel
- entity: select.the_hippo_heated_seat_left
name: Driver's Seat
- entity: select.the_hippo_heated_seat_right
name: Front Passenger's Seat
- entity: select.the_hippo_heated_seat_rear_left
name: Rear Driver's Side Seat
- entity: select.the_hippo_heated_seat_rear_center
name: Rear Center Seat
- entity: select.the_hippo_heated_seat_rear_right
name: Rear Passenger's Seat
- type: grid
square: false
columns: 2
cards:
- type: custom:mini-graph-card
entities:
- sensor.the_hippo_tpms_front_left
name: Front Left
hour24: true
line_width: 3
decimals: 1
hours_to_show: 168
points_per_hour: 0.25
- type: custom:mini-graph-card
entities:
- sensor.the_hippo_tpms_front_right
name: Front Right
hour24: true
line_width: 3
decimals: 1
hours_to_show: 168
points_per_hour: 0.25
- type: custom:mini-graph-card
entities:
- sensor.the_hippo_tpms_rear_left
name: Rear Left
hour24: true
line_width: 3
decimals: 1
hours_to_show: 168
points_per_hour: 0.25
- type: custom:mini-graph-card
entities:
- sensor.the_hippo_tpms_rear_right
name: Rear Right
hour24: true
line_width: 3
decimals: 1
hours_to_show: 168
points_per_hour: 0.25
- type: custom:scheduler-card
title: Home Precondition Schedule
include:
- input_number.hippo_charge_limit
time_step: 15
sort_by: relative-time
show_header_toggle: true
tags: Hippo
groups:
- name: "Cars"
icon: mdi:car-multiple
include:
- input_number.hippo_charge_limit
customize:
input_number.hippo_charge_limit:
icon: mdi:car-clock
name: The Forest Hippo
actions:
- service: input_number.set_value
icon: mdi:battery-charging-70
name: 70%
service_data:
value: 70
- service: input_number.set_value
icon: mdi:battery-charging-80
name: 80%
service_data:
value: 80
- service: input_number.set_value
icon: mdi:battery-charging-90
name: 90%
service_data:
value: 90
- service: input_number.set_value
# name set as such for sorting purposes
icon: mdi:battery-charging-100
name: 99%
service_data:
value: 100
# exclude_actions:
# - turn off
- title: Media Players
icon: mdi:television
cards:
- type: 'custom:vertical-stack-in-card' #Media Player Living Room
cards:
- type: conditional # Shows artwork if we're watching Plex
conditions:
- entity: media_player.living_room_tv_plex
state:
- playing
- paused
card:
type: custom:mini-media-player
entity: media_player.living_room_tv_plex
icon: mdi:plex
artwork: full-cover
tap_action: false
info: scroll
name: Living Room TV
group: true
scale: 1.2
hide:
volume: true
power: true
controls: true
name: false
progress: false
icon: false
runtime: false
- type: conditional # Shows title of apps otherwise
conditions:
- entity: media_player.living_room_tv_plex
state:
- unavailable
card:
type: custom:mini-media-player
entity: media_player.smart_tv_pro
artwork: full-cover
tap_action: false
info: scroll
name: Living Room TV
group: true
scale: 1.2
hide:
volume: true
power: true
controls: true
name: false
progress: false
icon: false
runtime: false
- square: true # media controls
columns: 4
type: grid
cards:
- type: button
icon: mdi:volume-off
tap_action:
action: call-service
service: media_player.volume_mute
service_data:
entity_id: media_player.living_room_tv
is_volume_muted: false #works to toggle mute for some reason
hold_action:
action: none
- type: button
icon: mdi:volume-medium
tap_action:
action: call-service
service: media_player.volume_down
service_data:
entity_id: media_player.living_room_tv
hold_action:
action: none
- type: button
icon: mdi:volume-high
tap_action:
action: call-service
service: media_player.volume_up
service_data:
entity_id: media_player.living_room_tv
hold_action:
action: none
- type: button
icon: mdi:play-pause
tap_action:
action: call-service
service: remote.send_command
data:
command: MEDIA_PLAY_PAUSE
target:
entity_id: remote.smart_tv_pro
hold_action:
action: call-service
service: remote.send_command
data:
command: MEDIA_STOP
target:
entity_id: remote.smart_tv_pro
- type: button
icon: mdi:skip-previous
tap_action:
action: call-service
service: remote.send_command
data:
command: MEDIA_PREVIOUS
target:
entity_id: remote.smart_tv_pro
hold_action:
action: none
- type: button
icon: mdi:rewind
tap_action:
action: call-service
service: remote.send_command
data:
command: MEDIA_REWIND
target:
entity_id: remote.smart_tv_pro
hold_action:
action: none
- type: button
icon: mdi:fast-forward
tap_action:
action: call-service
service: remote.send_command
data:
command: MEDIA_FAST_FORWARD
target:
entity_id: remote.smart_tv_pro
hold_action:
action: none
- type: button
icon: mdi:skip-next
tap_action:
action: call-service
service: remote.send_command
data:
command: MEDIA_NEXT
target:
entity_id: remote.smart_tv_pro
hold_action:
action: none
- square: true # TV remote
columns: 3
type: grid
cards:
- type: button
icon: mdi:power
tap_action:
action: call-service
service: remote.send_command
data:
command: POWER
target:
entity_id: remote.smart_tv_pro
hold_action:
action: none
- type: button
icon: mdi:arrow-up-bold
tap_action:
action: call-service
service: remote.send_command
data:
command: DPAD_UP
target:
entity_id: remote.smart_tv_pro
hold_action:
action: none
- type: button
entity: light.living_room
show_name: false
icon: mdi:ceiling-light
tap_action:
action: toggle
hold_action:
action: more-info
double_tap_action:
action: perform-action
perform_action: light.turn_off
target:
entity_id: light.all_lights
- type: button
icon: mdi:arrow-left-bold
tap_action:
action: call-service
service: remote.send_command
data:
command: DPAD_LEFT
target:
entity_id: remote.smart_tv_pro
hold_action:
action: none
- type: button
icon: mdi:circle
tap_action:
action: call-service
service: remote.send_command
data:
command: DPAD_CENTER
target:
entity_id: remote.smart_tv_pro
hold_action:
action: call-service
service: remote.send_command
data:
command: DPAD_CENTER
hold_secs: 0.5
target:
entity_id: remote.smart_tv_pro
- type: button
icon: mdi:arrow-right-bold
tap_action:
action: call-service
service: remote.send_command
data:
command: DPAD_RIGHT
target:
entity_id: remote.smart_tv_pro
hold_action:
action: none
- type: button
icon: mdi:arrow-left
tap_action:
action: call-service
service: remote.send_command
data:
command: BACK
target:
entity_id: remote.smart_tv_pro
hold_action:
action: call-service
service: remote.send_command
data:
command: HOME
hold_secs: 0.5 #HOME + hold = opens up settings menu
target:
entity_id: remote.smart_tv_pro
- type: button
icon: mdi:arrow-down-bold
tap_action:
action: call-service
service: remote.send_command
data:
command: DPAD_DOWN
target:
entity_id: remote.smart_tv_pro
hold_action:
action: none
- type: button
icon: mdi:home-outline
tap_action:
action: call-service
service: remote.turn_on
data:
activity: me.efesser.flauncher # custom clean launcher (F Launcher)
target:
entity_id: remote.smart_tv_pro
hold_action:
action: call-service
service: remote.send_command
data:
command: HOME # Opens up default Google TV Menu
target:
entity_id: remote.smart_tv_pro
- square: false #Media buttons
columns: 3
type: grid
cards:
- type: button #plex
icon: mdi:plex
tap_action:
action: call-service
service: remote.turn_on
data:
activity: com.plexapp.android
target:
entity_id: remote.smart_tv_pro
hold_action:
action: none
- type: button #youtube
icon: mdi:youtube
tap_action:
action: call-service
service: remote.turn_on
data:
activity: com.google.android.youtube.tv
target:
entity_id: remote.smart_tv_pro
hold_action:
action: none
- type: button #redbull
icon: mdi:camera-gopro
tap_action:
action: call-service
service: remote.turn_on
data:
activity: com.nousguide.android.rbtv
target:
entity_id: remote.smart_tv_pro
hold_action:
action: none
# - type: picture
# image: >-
# https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Amazon_Prime_Video_logo.svg/450px-Amazon_Prime_Video_logo.svg.png
# tap_action:
# action: call-service
# service: remote.turn_on
# data:
# activity: com.amazon.amazonvideo.livingroom
# target:
# entity_id: remote.smart_tv_pro
# hold_action:
# action: none
# - type: picture
# image: >-
# https://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Disney%2B_logo.svg/440px-Disney%2B_logo.svg.png
# tap_action:
# action: call-service
# service: remote.turn_on
# data:
# activity: com.disney.disneyplus
# target:
# entity_id: remote.smart_tv_pro
# hold_action:
# action: none
- type: sensor
name: Current Plex Streams
entity: sensor.plex_huginn
# - type: horizontal-stack
# cards:
# - type: custom:mini-media-player
# artwork: cover
# entity: media_player.home_group
# hide:
# power: true
# - type: custom:mini-media-player
# artwork: cover
# entity: media_player.all_but_bedroom
# hide:
# power: true
# - type: vertical-stack
# cards:
# - type: custom:mini-media-player
# entity: media_player.bedroom_speaker
# artwork: cover
# hide:
# power: true
# - type: custom:mini-media-player
# entity: media_player.kitchen_speaker
# artwork: cover
# hide:
# power: true
# - type: custom:mini-media-player
# entity: media_player.bathroom_speaker
# artwork: cover
# hide:
# power: true
- title: 'front_door Codes and Configuration' #Front Door Code
path: keypad-front_door
icon: 'mdi:lock-smart'
panel: false
# badges:
# - input_text.front_door_lockname
# - input_boolean.front_door_lock_notifications #user notifications only work if this input_boolean is set to off
# - input_boolean.front_door_dooraccess_notifications
# - input_boolean.front_door_garageacess_notifications
# - entity: >-
# lock.lock_front_door_lock
# - entity: >-
# binary_sensor.fake
# - entity: input_text.keymaster_front_door_autolock_door_time_day
# - entity: input_text.keymaster_front_door_autolock_door_time_night
# - entity: input_boolean.keymaster_front_door_autolock