-
Notifications
You must be signed in to change notification settings - Fork 23
/
ui-lovelace.yaml
4052 lines (3968 loc) · 140 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
decluttering_templates:
calendar:
card:
allDayBottom: true
dateSize: 130
entities:
- entity: calendar.local
name: Local
- color: var(--state-home-color)
entity: calendar.us_holidays
name: Holidays
- color: var(--state-icon-active-color)
entity: calendar.birthdays_anniversary
name: Milestones
- color: var(--label-badge-green)
entity: calendar.brian
name: Brian
- blocklist: creative market
color: var(--secondary-text-color)
entity: calendar.nerene
name: Nerene
- color: var(--label-badge-yellow)
entity: calendar.hanifins
name: Hanifin's
- blocklist: Period
color: var(--primary-text-color)
entity: calendar.kyle
name: Kyle
- blocklist: Advisory,Period
color: var(--label-badge-red)
entity: calendar.lucas
name: Lucas
eventTitleSize: 130
firstDayOfWeek: 1
maxDaysToShow: '[[days]]'
sortBy: start
timeSize: 100
type: custom:atomic-calendar-revive
default:
days: 2
calendar_popup:
card:
cards:
- subtitle: '{{- now().strftime("%A") ~ ", " }}
{{- now().strftime("%B") ~ " " }}
{{- now().day ~ ", " }}
{{- now().year }}
'
type: custom:mushroom-title-card
- template: calendar
type: custom:decluttering-card
variables:
- days: '[[days]]'
type: vertical-stack
default:
days: 7
event:
card:
cards:
- subtitle: '[[label]]'
title: '[[name]]'
type: custom:mushroom-title-card
- cards:
- entity: input_boolean.event_enabled_[[id]]
tap_action:
action: toggle
type: custom:mushroom-entity-card
- entity: input_boolean.event_skipnext_[[id]]
tap_action:
action: toggle
type: custom:mushroom-entity-card
columns: 2
square: false
type: grid
- cards:
- entities: '[[sensors]]'
state_color: true
type: entities
- entities:
- entity: input_datetime.event_light_[[id]]
name: Device(s) off (+ light fade start)
- type: divider
- entities:
- entity: input_select.event_light_[[id]]
head: input_boolean.event_light_[[id]]
type: custom:fold-entity-row
show_header_toggle: false
state_color: true
type: entities
- entities:
- entities:
- entity: input_select.event_speakers_[[id]]
- entity: input_datetime.event_1st_[[id]]
- entity: input_datetime.event_2nd_[[id]]
head: input_boolean.event_announcement_[[id]]
type: custom:fold-entity-row
show_header_toggle: false
state_color: true
style: "ha-card {\n padding-top: 16px !important;\n}\n:host {\n display:\
\ {{ \"block\" if \"wakeup\" in \"[[id]]\" else \"none\" }};\n}\n"
type: entities
in_card: true
type: vertical-stack
type: vertical-stack
default:
label: ''
name: ''
floor_climate:
card:
cards:
- title: '[[floor]] climate'
type: custom:mushroom-title-card
- cards:
- cards:
- subtitle: Temperature average
type: custom:mushroom-title-card
- entities:
- entity: '[[average]]'
name: '[[floor]] average'
show_icon: false
type: glance
- animate: true
entities:
- entity: '[[average]]'
height: 118
hours_to_show: 24
line_width: 2
lower_bound: 60
points_per_hour: 4
show:
extrema: false
graph: line
icon: false
name: false
state: false
type: custom:mini-graph-card
in_card: true
type: vertical-stack
- cards:
- subtitle: Room temperature
type: custom:mushroom-title-card
- entities: '[[temperature_entities]]'
show_icon: false
type: glance
- aggregate_func: max
animate: true
entities: '[[temperature_entities]]'
height: 75
hours_to_show: 24
line_width: 2
points_per_hour: 2
show:
icon: false
name: false
state: false
type: custom:mini-graph-card
in_card: true
type: vertical-stack
- cards:
- subtitle: Room humidity
type: custom:mushroom-title-card
- entities: '[[humidity_entities]]'
show_icon: false
type: glance
- aggregate_func: max
animate: true
entities: '[[humidity_entities]]'
height: 75
hours_to_show: 12
line_width: 2
points_per_hour: 4
show:
icon: false
name: false
state: false
type: custom:mini-graph-card
in_card: true
type: vertical-stack
parameters:
pagination:
type: bullets
spaceBetween: 8
type: custom:swipe-card
type: vertical-stack
graph:
card:
entities:
- entities: '[[entities]]'
entity: '[[entity1]]'
icon: '[[icon]]'
name: '[[name]]'
show_state: false
type: custom:multiple-entity-row
footer:
animate: true
entities: '[[entities]]'
height: 75
hours_to_show: '[[hours]]'
line_width: 2
show:
icon: false
labels: true
name: false
state: false
type: custom:mini-graph-card
type: entities
default:
entities: []
entity1: sensor.none
hours: 24
icon: mdi:thermometer-low
name: ' '
kitchen_cabinet_popup:
card:
cards:
- entity: select.kitchen_cabinet_lights_preset
layout: horizontal
name: Preset
secondary_info: last-changed
type: custom:mushroom-select-card
- entity: light.kitchen_cabinet
title: ' '
type: custom:more-info-card
- alignment: center
chips:
- content: WLED controller
icon: mdi:link
tap_action:
action: url
url_path: http://10.0.20.74/
type: template
type: custom:mushroom-chips-card
type: vertical-stack
top_chips:
card:
alignment: center
chips:
- type: '[[back_button]]'
- entity: sensor.ui_date
icon: mdi:calendar
icon_color: red
tap_action:
action: fire-dom-event
browser_mod:
data:
content:
template: calendar_popup
type: custom:decluttering-card
variables:
- days: '7'
title: Calendar
service: browser_mod.popup
type: entity
- content: '{{ state_attr("weather.home","temperature") }}°'
entity: weather.home
icon: weather-{{ states("weather.home") }}
tap_action:
action: fire-dom-event
browser_mod:
data:
content:
template: weather
type: custom:decluttering-card
title: Weather
service: browser_mod.popup
type: template
- entity: sensor.family_present
icon_color: teal
tap_action:
action: fire-dom-event
browser_mod:
data:
content:
cards:
- card:
columns: 3
show_header_toggle: false
show_name: false
show_state: false
type: glance
entities:
- person.brian
- person.eric
- person.heather
- person.lucas
- person.nerene
- person.sandy
state_filter:
- home
type: entity-filter
- aspect_ratio: '16:9'
entities:
- entity: device_tracker.life360_brian
- entity: device_tracker.life360_lucas
- entity: device_tracker.life360_eric
- entity: device_tracker.life360_nerene
- entity: zone.court
- entity: zone.office
- entity: zone.high_school
- entity: zone.home
- entity: zone.range
- entity: zone.school
hours_to_show: 6
type: map
type: vertical-stack
title: People at home
service: browser_mod.popup
type: entity
- chip:
entity: sensor.lights_on
icon_color: amber
tap_action:
action: fire-dom-event
browser_mod:
data:
content:
cards:
- subtitle: Downstairs lights
type: custom:mushroom-title-card
- card:
columns: 3
show_header_toggle: false
show_name: true
show_state: false
type: entities
filter:
exclude:
- state: 'off'
- state: unknown
- state: unavailable
include:
- group: group.downstairs_lights
show_empty: false
sort:
method: name
type: custom:auto-entities
- subtitle: Upstairs lights
type: custom:mushroom-title-card
- card:
columns: 3
show_header_toggle: false
show_name: true
show_state: false
type: entities
filter:
exclude:
- state: 'off'
- state: unknown
- state: unavailable
include:
- group: group.upstairs_lights
show_empty: false
sort:
method: name
type: custom:auto-entities
- subtitle: Outdoor lights
type: custom:mushroom-title-card
- card:
columns: 3
show_header_toggle: false
show_name: true
show_state: false
type: entities
filter:
exclude:
- state: 'off'
- state: unknown
- state: unavailable
include:
- group: group.outdoor_lights
show_empty: false
sort:
method: name
type: custom:auto-entities
type: vertical-stack
title: Lights on
service: browser_mod.popup
type: entity
conditions:
- entity: sensor.lights_on
state_not: '0'
type: conditional
- chip:
entity: sensor.contact_sensors_open
icon_color: blue
tap_action:
action: fire-dom-event
browser_mod:
data:
content:
cards:
- subtitle: Downstairs
type: custom:mushroom-title-card
- card:
type: entities
filter:
template: "{{\n state_attr(\"sensor.windows_open_downstairs\"\
,\"entities\")\n + state_attr(\"sensor.doors_open\",\"entities\"\
)\n}}"
show_empty: false
sort:
method: name
type: custom:auto-entities
- subtitle: Upstairs
type: custom:mushroom-title-card
- card:
type: entities
filter:
template: '{{ state_attr("sensor.windows_open_upstairs","entities")
}}'
show_empty: false
sort:
method: name
type: custom:auto-entities
type: vertical-stack
title: Doors/windows open
service: browser_mod.popup
type: entity
conditions:
- entity: sensor.contact_sensors_open
state_not: '0'
type: conditional
type: custom:mushroom-chips-card
view_layout:
grid-area: header
default:
back_button: back
weather:
card:
cards:
- subtitle: Current conditions
title: Weather
type: custom:mushroom-title-card
- current: true
details: true
entity: weather.home
forecast: false
hourly_forecast: false
number_of_forecasts: '4'
type: custom:weather-card
- entity: weather.home
type: custom:clock-weather-card
weather_icon_type: none
- card:
cards:
- subtitle: National weather service alerts
type: custom:mushroom-title-card
- content: "{%- set alerts = state_attr(\"sensor.nws_alerts\",\"spoken_desc\"\
) %} {%- if \"-\" in alerts %}\n {%- set alerts = alerts.split(\"-\"\
) %}\n {%- for alert in alerts %}\n {%- if loop.first %}\n \
\ {{ alert }}\n {%- else %}\n {{ iif(alert!=alerts[loop.index-1],\
\ alert, \"\") }}\n {%- endif %}\n {%- endfor %}\n{%- else %}\n\
\ {{ alerts }}\n{%- endif %}\n"
type: markdown
type: vertical-stack
conditions:
- entity: sensor.nws_alerts
state_not: '0'
type: conditional
- card:
cards:
- subtitle: Radar
type: custom:mushroom-title-card
- center_latitude: 32.839191
center_longitude: -117.1895228
data_source: RainViewer-TWC
map_style: Voyager
marker_latitude: 32.8592997
marker_longitude: -117.0232825
show_marker: true
square_map: true
static_map: true
type: custom:weather-radar-card
zoom_level: 9
type: vertical-stack
conditions:
- entity: binary_sensor.rain_today
state: 'on'
type: conditional
- subtitle: Last 24 hours
type: custom:mushroom-title-card
- animate: true
entities:
- entity: sensor.outdoor_temperature
name: Temperature
show_fill: false
- entity: sensor.outdoor_humidity
name: Humidity
show_line: false
show_points: false
y_axis: secondary
icon: mdi:weather-sunny
line_width: 2
name: Outdoor
points_per_hour: 4
show:
extrema: true
icon: false
labels: true
labels_secondary: true
name: false
state: false
type: custom:mini-graph-card
type: vertical-stack
kiosk_mode:
hide_header: true
views:
- badges: []
cards:
- template: top_chips
type: custom:decluttering-card
variables:
- back_button: none
view_layout:
grid-area: header
- cards:
- badge_color: var(--rgb-state-light)
badge_icon: '{%- set lights_on = states("sensor.lights_on_downstairs")|int(default=0)
%}
{{- iif(lights_on>0, "mdi:lightbulb", "") }}'
entity: sensor.downstairs_temperature_average
fill_container: true
icon: mdi:home-floor-1
icon_color: teal
multiline_secondary: false
primary: Downstairs
secondary: '{%- set lights_on = states("sensor.lights_on_downstairs")|int(default=0)
%}
{{- iif(lights_on>0, lights_on~" lights on ‧", "") }}
{{ states("sensor.downstairs_temperature_average")|round(default=0) }}°'
tap_action:
action: navigate
navigation_path: ./downstairs
type: custom:mushroom-template-card
- badge_color: var(--rgb-state-light)
badge_icon: '{%- set lights_on = states("sensor.lights_on_upstairs")|int|default(0)
%}
{{- iif(lights_on>0, "mdi:lightbulb", "") }}'
entity: sensor.upstairs_temperature_average
fill_container: true
icon: mdi:home-floor-2
icon_color: purple
primary: Upstairs
secondary: '{%- set lights_on = states("sensor.lights_on_upstairs")|int(default=0)
%}
{{- iif(lights_on>0, lights_on~" lights on ‧", "") }}
{{ states("sensor.upstairs_temperature_average")|round(default=0) }}°'
tap_action:
action: navigate
navigation_path: ./upstairs
type: custom:mushroom-template-card
- badge_color: var(--rgb-state-light)
badge_icon: '{%- set lights_on = states("sensor.lights_on_outdoors")|int|default(0)
%}
{{- iif(lights_on>0, "mdi:lightbulb", "") }}'
entity: sensor.backyard_temperature
fill_container: true
icon: mdi:flower
icon_color: blue
primary: Outside
secondary: '{{ states("weather.home") }} ‧
{{ states("sensor.outdoor_temperature")|round(default=0) }}°'
tap_action:
action: navigate
navigation_path: ./outdoor
type: custom:mushroom-template-card
- entity: climate.home_thermostat
name: Home
tap_action:
action: fire-dom-event
browser_mod:
data:
content:
cards:
- entity: climate.home_thermostat
fallback: 'OFF'
header: false
layout:
mode:
headings: false
names: false
step_size: 1
type: custom:simple-thermostat
unit: °
- entities:
- entities:
- entity: sensor.outdoor_temperature
format: precision0
name: Outdoor
unit: °
- entity: sensor.outdoor_humidity
format: precision0
name: Outdoor
- entity: sensor.home_thermostat_temperature
format: precision0
name: Thermostat
unit: °
- entity: sensor.home_thermostat_humidity
format: precision0
name: Thermostat
entity: sensor.home_thermostat_temperature
icon: mdi:thermometer
name: Temperature
secondary_info: last-changed
show_state: false
type: custom:multiple-entity-row
footer:
animate: true
entities:
- entity: sensor.outdoor_temperature
name: Outdoor °
show_fill: false
- entity: sensor.outdoor_humidity
name: Outdoor %
show_line: false
show_points: false
y_axis: secondary
- entity: sensor.home_thermostat_temperature
name: Thermostat °
show_fill: false
- entity: sensor.home_thermostat_humidity
name: Thermostat %
show_line: false
show_points: false
y_axis: secondary
height: 75
hours_to_show: 24
line_width: 2
show:
icon: false
labels: true
labels_secondary: true
name: false
state: false
type: custom:mini-graph-card
state_color: true
type: entities
type: vertical-stack
title: House thermostat
service: browser_mod.popup
type: custom:mushroom-climate-card
- entity: climate.bedroom_thermostat
name: Bedroom
tap_action:
action: fire-dom-event
browser_mod:
data:
content:
cards:
- control:
hvac:
heat: false
heat_cool: false
entity: climate.bedroom_thermostat
fallback: 'OFF'
header: false
layout:
mode:
headings: false
names: false
step_size: 1
type: custom:simple-thermostat
unit: °
- entities:
- entities:
- entity: sensor.bedroom_temperature
format: precision0
name: Room
unit: °
- entity: sensor.bedroom_thermostat_temperature
format: precision0
name: Thermostat
unit: °
- entity: sensor.bedroom_humidity
format: precision0
name: Humidity
entity: sensor.bedroom_temperature
icon: mdi:thermometer
name: Temperature
secondary_info: last-changed
show_state: false
type: custom:multiple-entity-row
footer:
animate: true
entities:
- entity: sensor.bedroom_temperature
name: Room °
show_fill: false
- entity: sensor.bedroom_thermostat_temperature
name: Thermostat °
show_fill: false
- entity: sensor.bedroom_humidity
name: Humidity %
show_line: false
show_points: false
y_axis: secondary
height: 75
hours_to_show: 24
line_width: 2
show:
icon: false
labels: true
labels_secondary: true
name: false
state: false
style: "ha-card {\n background: none;\n}\n"
type: custom:mini-graph-card
state_color: true
type: entities
- entities:
- entities:
- entity: sensor.bedroom_recommended_climate_mode
name: Recommended
- entity: sensor.bedroom_ac_power
name: Power
- entity: climate.bedroom_thermostat
name: Status
entity: climate.bedroom_thermostat
name: Air Conditioner
secondary_info: last-changed
show_state: false
type: custom:multiple-entity-row
show_header_toggle: false
state_color: false
type: entities
- alignment: center
chips:
- content: 'Force state: ON'
icon: mdi:power
icon_color: green
tap_action:
action: call-service
service: sensibo.assume_state
service_data:
state: 'on'
target:
device_id: 90294c771af3341b24b8836b59e002ad
type: template
- content: 'Force state: OFF'
icon: mdi:power-off
icon_color: red
tap_action:
action: call-service
service: sensibo.assume_state
service_data:
state: 'off'
target:
device_id: 90294c771af3341b24b8836b59e002ad
type: template
type: custom:mushroom-chips-card
type: vertical-stack
title: Bedroom thermostat
service: browser_mod.popup
type: custom:mushroom-climate-card
- entity: climate.lucas_room_thermostat
name: Lucas
tap_action:
action: fire-dom-event
browser_mod:
data:
content:
cards:
- control:
hvac:
heat: false
heat_cool: false
entity: climate.lucas_room_thermostat
fallback: 'OFF'
header: false
layout:
mode:
headings: false
names: false
step_size: 1
type: custom:simple-thermostat
unit: °
- entities:
- entities:
- entity: sensor.lucas_room_temperature
format: precision0
name: Room
unit: °
- entity: sensor.lucas_room_thermostat_temperature
format: precision0
name: Thermostat
unit: °
- entity: sensor.lucas_room_humidity
format: precision0
name: Humidity
entity: sensor.lucas_room_temperature
icon: mdi:thermometer
name: Temperature
secondary_info: last-changed
show_state: false
type: custom:multiple-entity-row
footer:
animate: true
entities:
- entity: sensor.lucas_room_temperature
name: Room °
show_fill: false
- entity: sensor.lucas_room_thermostat_temperature
name: Thermostat °
show_fill: false
- entity: sensor.lucas_room_humidity
name: Humidity %
show_line: false
show_points: false
y_axis: secondary
height: 75
hours_to_show: 24
line_width: 2
show:
icon: false
labels: true
labels_secondary: true
name: false
state: false
type: custom:mini-graph-card
state_color: true
type: entities
- entities:
- entities:
- entity: switch.schedule_lucas_climate_school_nights
name: School
toggle: true
- entity: switch.schedule_lucas_climate_weekend_nights
name: Weekend
toggle: true
- entity: switch.schedule_lucas_climate_break_schedule
name: Break
toggle: true
entity: switch.schedule_lucas_climate_school_nights
name: Schedule
secondary_info: last-changed
show_state: false
state_color: true
type: custom:multiple-entity-row
- type: divider
- entities:
- entity: sensor.lucas_recommended_climate_mode
name: Recommended
- entity: sensor.lucas_ac_power
name: Power
- entity: climate.lucas_room_thermostat
name: Status
entity: climate.lucas_room_thermostat
name: Air Conditioner
secondary_info: last-changed
show_state: false
type: custom:multiple-entity-row
show_header_toggle: false
state_color: false
type: entities
- alignment: center
chips:
- content: 'Force state: ON'
icon: mdi:power
icon_color: green
tap_action:
action: call-service
service: sensibo.assume_state
service_data:
state: 'on'
target:
device_id: 877557b634269a08b5bf0439f9a314b5
type: template
- content: 'Force state: OFF'
icon: mdi:power-off
icon_color: red
tap_action:
action: call-service
service: sensibo.assume_state
service_data:
state: 'off'
target:
device_id: 877557b634269a08b5bf0439f9a314b5
type: template
type: custom:mushroom-chips-card
type: vertical-stack
title: Lucas thermostat
service: browser_mod.popup
type: custom:mushroom-climate-card
- double_tap_action:
action: none
hold_action:
action: none
icon: mdi:speedometer-slow
icon_color: red
primary: Monitor
secondary: ''
tap_action:
action: navigate
navigation_path: /lovelace/monitor
type: custom:mushroom-template-card
- badge_color: ''
badge_icon: ''
double_tap_action:
action: none
hold_action:
action: none
icon: mdi:calendar-clock
icon_color: green
primary: Schedules
tap_action:
action: navigate
navigation_path: /lovelace/events
type: custom:mushroom-template-card
columns: 2
square: false
type: grid
view_layout:
grid-area: middle
- cards:
- alignment: center
chips:
- chip:
entity: sensor.updates_available
icon: mdi:update
icon_color: deep-orange
tap_action:
action: fire-dom-event
browser_mod:
data:
content:
cards:
- title: Updates
type: custom:mushroom-title-card
- card:
type: entities
filter:
template: '{{ state_attr("sensor.updates_available","entities")
}}'
show_empty: false
sort:
method: state
type: custom:auto-entities
- alignment: center
chips:
- content: Go to updates
icon: mdi:link
tap_action:
action: url
url_path: /config/updates
type: template
type: custom:mushroom-chips-card
type: vertical-stack
service: browser_mod.popup
type: entity
conditions:
- entity: sensor.updates_available
state_not: '0'
type: conditional
- chip:
entity: sensor.persistent_notifications_on
icon_color: orange
tap_action:
action: fire-dom-event
browser_mod:
data:
content:
cards:
- title: Notifications
type: custom:mushroom-title-card
- compact_mode: false
max_item_count: 5
more_info_on_tap: true
show_empty: false
show_notification_title: true
type: custom:home-feed-card
type: vertical-stack
service: browser_mod.popup
type: entity
conditions:
- entity: sensor.persistent_notifications_on
state_not: '0'
type: conditional
- chip:
entity: sensor.low_batteries
icon_color: amber
tap_action:
action: fire-dom-event
browser_mod:
data:
content:
cards:
- title: Low batteries
type: custom:mushroom-title-card