-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui-lovelace.yaml
1589 lines (1589 loc) · 42 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
views:
- badges:
- color: blue
entity: sensor.home_temperature
show_icon: true
show_name: false
show_state: true
type: entity
- color: cyan
entity: sensor.home_humidity
show_icon: true
show_name: false
show_state: true
type: entity
- color: yellow
entity: sensor.frient_energy_monitor_power
show_icon: true
show_name: false
show_state: true
type: entity
- color: teal
entity: sensor.indoor_aqi
show_icon: true
show_name: false
show_state: true
type: entity
- color: red
entity: sensor.speedtest_download
show_icon: true
show_name: false
show_state: true
type: entity
cards: []
max_columns: 2
sections:
- cards:
- grid_options:
columns: full
title: "{% set time = now().hour %}\n{% if (time >= 18) %}\n Buona sera, {{user}}!\n\
{% elif (time >= 12) %}\n Buon pomeriggio, {{user}}!\n{% elif (time >= 5)\
\ %}\n Buongiorno, {{user}}!\n{% else %}\n Ciao, {{user}}!\n{% endif %}"
type: custom:mushroom-title-card
column_span: 3
type: grid
- cards:
- entity: weather.casa
forecast_type: daily
grid_options:
columns: 12
rows: 4
type: weather-forecast
visibility:
- condition: screen
media_query: '(min-width: 768px)'
- entity: weather.casa
primary_info:
- wind_bearing
- humidity
secondary_info:
- precipitation
- precipitation_probability
type: custom:simple-weather-card
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
column_span: 1
type: grid
- cards:
- entity: person.aronne
grid_options:
columns: 6
rows: 1
show_entity_picture: true
type: tile
- entity: person.valentina
grid_options:
columns: 6
rows: 1
show_entity_picture: true
type: tile
type: grid
- cards:
- grid_options:
columns: full
layout_options:
grid_columns: full
title: 🏠 Rooms
type: custom:mushroom-title-card
- entity: light.livingroom
hold_action:
action: toggle
icon: mdi:sofa
icon_color: "{% if is_state('light.livingroom', 'on') %}\n orange\n{% endif\
\ %}"
primary: Sala
secondary: '{{ states(''sensor.termometro_sala_temperature'') }}°C - {{ states(''sensor.termometro_sala_humidity'')
}}%'
tap_action:
action: navigate
navigation_path: /lovelace/livingroom
type: custom:mushroom-template-card
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
- entity: light.bed
hold_action:
action: toggle
icon: mdi:bed-double
icon_color: "{% if is_state('light.bed', 'on') %}\n orange\n{% endif %}"
primary: Camera
secondary: '{{ states(''sensor.termometro_camera_temperature'') }}°C - {{ states(''sensor.termometro_camera_humidity'')
}}%'
tap_action:
action: navigate
navigation_path: /lovelace/bedroom
type: custom:mushroom-template-card
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
- icon: mdi:chef-hat
icon_color: "{% if is_state('binary_sensor.garbage_collection_tomorrow', 'on')\
\ %}\n red\n{% endif %}"
primary: Cucina
secondary: '{{ states(''sensor.termometro_cucina_temperature'') }}°C - {{ states(''sensor.termometro_cucina_humidity'')
}}%'
tap_action:
action: navigate
navigation_path: /lovelace/kitchen
type: custom:mushroom-template-card
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
- entity: switch.water_heater
hold_action:
action: toggle
icon: mdi:toilet
icon_color: "{% if is_state('switch.water_heater', 'on') %}\n cyan\n{% endif\
\ %}"
primary: Bagno
secondary: '{{ states(''sensor.termometro_bagno_temperature'') }}°C - {{ states(''sensor.termometro_bagno_humidity'')
}}%'
tap_action:
action: navigate
navigation_path: /lovelace/bathroom
type: custom:mushroom-template-card
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
- entity: light.vetrina_ingresso
hold_action:
action: toggle
icon: mdi:door
icon_color: "{% if is_state('light.entrance', 'on') %}\n orange\n{% endif %}"
primary: Ingresso
secondary: ''
tap_action:
action: navigate
navigation_path: /lovelace/entrance
type: custom:mushroom-template-card
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
- alert_classes:
- motion
- moisture
area: soggiorno
navigation_path: /lovelace/livingroom
sensor_classes:
- temperature
- humidity
type: area
visibility:
- condition: screen
media_query: '(min-width: 768px)'
- alert_classes:
- motion
- moisture
area: camera_da_letto
navigation_path: /lovelace/bedroom
sensor_classes:
- temperature
- humidity
type: area
visibility:
- condition: screen
media_query: '(min-width: 768px)'
- alert_classes:
- motion
- moisture
area: bagno
navigation_path: /lovelace/bathroom
sensor_classes:
- temperature
- humidity
type: area
visibility:
- condition: screen
media_query: '(min-width: 768px)'
- alert_classes:
- motion
- moisture
area: cucina
navigation_path: /lovelace/kitchen
sensor_classes:
- temperature
- humidity
type: area
visibility:
- condition: screen
media_query: '(min-width: 768px)'
- alert_classes:
- motion
- moisture
area: ingresso
navigation_path: /lovelace/entrance
sensor_classes:
- temperature
- humidity
type: area
visibility:
- condition: screen
media_query: '(min-width: 768px)'
column_span: 4
type: grid
- cards:
- grid_options:
columns: full
layout_options:
grid_columns: full
title: 🤓 Nerd corner
type: custom:mushroom-title-card
- color: teal
entity: switch.dummy_switch
hide_state: true
hold_action:
action: none
icon: mdi:chart-bar-stacked
name: Stats
tap_action:
action: navigate
navigation_path: /lovelace/stats
type: tile
- entity: switch.dummy_switch
grid_options:
columns: 3
rows: 1
hold_action:
action: toggle
icon: mdi:test-tube
icon_color: purple
primary: ''
secondary: ''
tap_action:
action: navigate
navigation_path: /lovelace/lab
type: custom:mushroom-template-card
- double_tap_action:
action: none
grid_options:
columns: 3
rows: 1
hold_action:
action: toggle
icon: mdi:devices
icon_color: yellow
primary: ''
secondary: ''
tap_action:
action: navigate
navigation_path: /lovelace/devices
type: custom:mushroom-template-card
column_span: 4
type: grid
theme: Backend-selected
title: Home
type: sections
- badges: []
cards: []
icon: mdi:sofa
max_columns: 3
path: livingroom
sections:
- cards:
- detail: 1
entity: sensor.termometro_sala_temperature
graph: line
hours_to_show: 24
name: Temperatura
type: sensor
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
- detail: 1
entity: sensor.termometro_sala_humidity
graph: line
hours_to_show: 24
name: Umidità
type: sensor
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
- animate: true
color_thresholds:
- color: '#f39c12'
value: 20
- color: '#d35400'
value: 21
- color: '#c0392b'
value: 21.5
entities:
- entity: sensor.termometro_sala_temperature
show_legend: false
- color: gray
entity: sun.sun
name: Night
show_legend: false
show_line: false
show_points: false
y_axis: secondary
hours_to_show: 168
name: Temperatura
points_per_hour: 0.25
show:
labels: true
labels_secondary: true
state_map:
- label: Night
value: below_horizon
- label: Day
value: above_horizon
type: custom:mini-graph-card
visibility:
- condition: screen
media_query: '(min-width: 768px)'
- animate: true
entities:
- color: '#89cff0'
entity: sensor.termometro_sala_humidity
show_legend: false
- color: gray
entity: sun.sun
name: Night
show_legend: false
show_line: false
show_points: false
y_axis: secondary
hours_to_show: 168
name: Umidità
points_per_hour: 0.25
show:
labels: true
labels_secondary: true
state_map:
- label: Night
value: below_horizon
- label: Day
value: above_horizon
type: custom:mini-graph-card
visibility:
- condition: screen
media_query: '(min-width: 768px)'
type: grid
- cards:
- title: Smart home
type: custom:mushroom-title-card
- collapsible_controls: false
entity: light.piantana_sala
fill_container: false
icon: mdi:floor-lamp
show_brightness_control: true
show_color_temp_control: true
tap_action:
action: toggle
type: custom:mushroom-light-card
use_light_color: true
- collapsible_controls: true
entity: media_player.tv
show_volume_level: true
tap_action:
action: toggle
type: custom:mushroom-media-player-card
use_media_info: true
volume_controls: []
- color: cyan
entity: light.spada_suprema
icon: mdi:sword
show_entity_picture: false
tap_action:
action: toggle
type: tile
- collapsible_controls: true
entity: climate.condizionatore_sala
hvac_modes:
- heat_cool
- 'off'
layout_options:
grid_columns: full
name: Condizionatore
show_temperature_control: true
type: custom:mushroom-climate-card
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
- disable_battery_warning: true
disable_buttons: true
disable_eco: true
disable_heat: false
disable_menu: false
disable_summer: true
disable_window: true
entity: climate.condizionatore_sala
name: Condizionatore
type: custom:better-thermostat-ui-card
visibility:
- condition: screen
media_query: '(min-width: 768px)'
- color: green
entity: light.albero_di_natale
grid_options:
columns: full
icon: mdi:pine-tree
tap_action:
action: toggle
type: tile
visibility:
- condition: state
entity: binary_sensor.christmas_time
state: 'on'
type: grid
- cards:
- title: Extra
type: custom:mushroom-title-card
- entity: switch.adaptive_lighting_default
grid_options:
columns: full
type: tile
- collapsible_controls: true
entity: light.piantana_sala_luce_grande
icon: mdi:floor-lamp-torchiere
name: Grande
primary_info: name
secondary_info: state
show_brightness_control: true
show_color_temp_control: true
tap_action:
action: toggle
type: custom:mushroom-light-card
use_light_color: true
- collapsible_controls: true
entity: light.piantana_sala_luce_piccola
icon: mdi:floor-lamp
name: Piccola
primary_info: name
secondary_info: state
show_brightness_control: true
show_color_control: false
show_color_temp_control: true
tap_action:
action: toggle
type: custom:mushroom-light-card
use_light_color: true
type: grid
- cards:
- title: Media player
type: custom:mushroom-title-card
- collapsible_controls: false
entity: media_player.firestick
grid_options:
columns: full
icon: mdi:television
layout: vertical
media_controls: []
name: Firestick
show_volume_level: true
type: custom:mushroom-media-player-card
use_media_info: true
volume_controls: []
- entity: media_player.echo_sala
grid_options:
columns: full
rows: 3
icon: mdi:speaker-wireless
layout: vertical
media_controls:
- previous
- play_pause_stop
- next
show_volume_level: true
type: custom:mushroom-media-player-card
use_media_info: true
volume_controls:
- volume_mute
- volume_set
- volume_buttons
type: grid
subview: true
theme: Backend-selected
title: Sala
type: sections
- badges: []
cards: []
icon: mdi:bed-double
max_columns: 3
path: bedroom
sections:
- cards:
- detail: 1
entity: sensor.termometro_camera_temperature
graph: line
hours_to_show: 24
name: Temperatura
type: sensor
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
- detail: 1
entity: sensor.termometro_camera_humidity
graph: line
hours_to_show: 24
name: Umidità
type: sensor
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
- animate: true
color_thresholds:
- color: '#f39c12'
value: 20
- color: '#d35400'
value: 21
- color: '#c0392b'
value: 21.5
entities:
- entity: sensor.termometro_camera_temperature
show_legend: false
- color: gray
entity: sun.sun
name: Night
show_legend: false
show_line: false
show_points: false
y_axis: secondary
hours_to_show: 168
name: Temperatura
points_per_hour: 0.25
show:
labels: true
labels_secondary: true
state_map:
- label: Night
value: below_horizon
- label: Day
value: above_horizon
type: custom:mini-graph-card
visibility:
- condition: screen
media_query: '(min-width: 768px)'
- animate: true
entities:
- color: '#89cff0'
entity: sensor.termometro_camera_humidity
show_legend: false
- color: gray
entity: sun.sun
name: Night
show_legend: false
show_line: false
show_points: false
y_axis: secondary
hours_to_show: 168
name: Umidità
points_per_hour: 0.25
show:
labels: true
labels_secondary: true
state_map:
- label: Night
value: below_horizon
- label: Day
value: above_horizon
type: custom:mini-graph-card
visibility:
- condition: screen
media_query: '(min-width: 768px)'
type: grid
- cards:
- title: Smart home
type: custom:mushroom-title-card
- collapsible_controls: true
entity: light.bed
grid_options:
columns: 12
rows: 1
icon: mdi:floor-lamp
name: Letto
primary_info: name
secondary_info: state
show_brightness_control: true
show_color_control: true
show_color_temp_control: true
tap_action:
action: toggle
type: custom:mushroom-light-card
use_light_color: true
- color: blue
entity: switch.work_station
icon: mdi:account-hard-hat
name: Work Station
tap_action:
action: toggle
type: tile
- color: red
entity: switch.gaming_station
icon: mdi:controller
name: Gaming Station
tap_action:
action: toggle
type: tile
- collapsible_controls: true
entity: climate.condizionatore_camera
hvac_modes:
- heat_cool
- 'off'
layout_options:
grid_columns: full
name: Condizionatore
show_temperature_control: true
type: custom:mushroom-climate-card
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
- disable_battery_warning: true
disable_buttons: true
disable_eco: true
disable_heat: false
disable_menu: false
disable_summer: true
disable_window: true
entity: climate.condizionatore_camera
name: Condizionatore
type: custom:better-thermostat-ui-card
visibility:
- condition: screen
media_query: '(min-width: 768px)'
- color: light-green
entity: switch.mosquitto_repellent
grid_options:
columns: full
rows: 1
icon: mdi:bee
layout_options:
grid_columns: full
name: Antizanzare
tap_action:
action: toggle
type: tile
type: grid
- cards:
- title: Scrivania
type: custom:mushroom-title-card
- collapsible_controls: true
entity: light.luce_scrivania
grid_options:
columns: full
icon: mdi:led-strip-variant
layout_options:
grid_columns: full
name: Luce
show_brightness_control: true
show_color_control: true
show_color_temp_control: true
tap_action:
action: toggle
type: custom:mushroom-light-card
use_light_color: true
- color: green
entity: switch.fisso
icon: mdi:desktop-classic
name: PC
tap_action:
action: toggle
type: tile
- color: purple
entity: switch.casse_pc
icon: mdi:speaker
name: Casse
tap_action:
action: toggle
type: tile
- collapsible_controls: true
entity: light.asus_tuf_gaming_b460_plus_0
icon: ''
name: Scheda madre
show_brightness_control: true
show_color_control: true
show_color_temp_control: false
tap_action:
action: toggle
type: custom:mushroom-light-card
use_light_color: true
- collapsible_controls: true
entity: light.nzxt_smart_device_v2_2
fill_container: false
icon: mdi:led-strip-variant
name: Led PC
show_brightness_control: true
show_color_control: true
show_color_temp_control: false
tap_action:
action: toggle
type: custom:mushroom-light-card
use_light_color: true
type: grid
- cards:
- title: Extra
type: custom:mushroom-title-card
- collapsible_controls: true
entity: light.letto_aronne
grid_options:
columns: 6
rows: 1
icon: mdi:floor-lamp
name: Aronne
primary_info: name
secondary_info: state
show_brightness_control: true
show_color_control: true
show_color_temp_control: true
tap_action:
action: toggle
type: custom:mushroom-light-card
use_light_color: true
- collapsible_controls: true
entity: light.letto_tate
grid_options:
columns: 6
rows: 1
icon: mdi:floor-lamp
name: Valentina
primary_info: name
secondary_info: state
show_brightness_control: true
show_color_control: true
show_color_temp_control: true
tap_action:
action: toggle
type: custom:mushroom-light-card
use_light_color: true
- entity: switch.adaptive_lighting_default
grid_options:
columns: full
type: tile
type: grid
- cards:
- title: Media player
type: custom:mushroom-title-card
- collapsible_controls: true
entity: media_player.echo_dot_camera
fill_container: false
grid_options:
columns: full
icon: mdi:speaker-wireless
layout: vertical
media_controls:
- play_pause_stop
- previous
- next
show_volume_level: true
type: custom:mushroom-media-player-card
use_media_info: true
volume_controls:
- volume_mute
- volume_set
- volume_buttons
type: grid
subview: true
theme: Backend-selected
title: Camera
type: sections
- badges: []
cards: []
icon: mdi:chef-hat
max_columns: 3
path: kitchen
sections:
- cards:
- detail: 1
entity: sensor.termometro_cucina_temperature
graph: line
hours_to_show: 24
name: Temperatura
type: sensor
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
- detail: 1
entity: sensor.termometro_cucina_humidity
graph: line
hours_to_show: 24
name: Umidità
type: sensor
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
- cards:
- cards:
- entity: sensor.garbage_collection_trash
icon_color: brown
layout: vertical
name: ' '
type: custom:mushroom-entity-card
- entity: sensor.garbage_collection_organic
icon: mdi:sprout
icon_color: green
layout: vertical
name: ' '
type: custom:mushroom-entity-card
- entity: sensor.garbage_collection_paper
icon: mdi:note-multiple
icon_color: disabled
layout: vertical
name: ' '
type: custom:mushroom-entity-card
- entity: sensor.garbage_collection_plastic
icon: mdi:spray-bottle
icon_color: orange
layout: vertical
name: ' '
type: custom:mushroom-entity-card
- entity: sensor.garbage_collection_glass_and_metal
icon: mdi:glass-fragile
icon_color: cyan
layout: vertical
name: ' '
type: custom:mushroom-entity-card
columns: 5
square: false
type: grid
type: vertical-stack
- animate: true
color_thresholds:
- color: '#f39c12'
value: 20
- color: '#d35400'
value: 21
- color: '#c0392b'
value: 21.5
entities:
- entity: sensor.termometro_cucina_temperature
show_legend: false
- color: gray
entity: sun.sun
name: Night
show_legend: false
show_line: false
show_points: false
y_axis: secondary
hours_to_show: 168
name: Temperatura
points_per_hour: 0.25
show:
labels: true
labels_secondary: true
state_map:
- label: Night
value: below_horizon
- label: Day
value: above_horizon
type: custom:mini-graph-card
visibility:
- condition: screen
media_query: '(min-width: 768px)'
- animate: true
entities:
- color: '#89cff0'
entity: sensor.termometro_cucina_humidity
show_legend: false
- color: gray
entity: sun.sun
name: Night
show_legend: false
show_line: false
show_points: false
y_axis: secondary
hours_to_show: 168
name: Umidità
points_per_hour: 0.25
show:
labels: true
labels_secondary: true
state_map:
- label: Night
value: below_horizon
- label: Day
value: above_horizon
type: custom:mini-graph-card
visibility:
- condition: screen
media_query: '(min-width: 768px)'
type: grid
- cards:
- title: Smart home
type: custom:mushroom-title-card
- collapsible_controls: true
entity: climate.condizionatore_cucina
hvac_modes:
- heat_cool
- 'off'
layout_options:
grid_columns: full
name: Condizionatore
show_temperature_control: true
type: custom:mushroom-climate-card
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
- disable_battery_warning: true
disable_buttons: true
disable_eco: true
disable_heat: false
disable_menu: false
disable_summer: true
disable_window: true
entity: climate.condizionatore_cucina
name: Condizionatore
type: custom:better-thermostat-ui-card
visibility:
- condition: screen
media_query: '(min-width: 768px)'
type: grid
- cards:
- title: Media player
type: custom:mushroom-title-card
- collapsible_controls: true
entity: media_player.echo_show_cucina
fill_container: false
grid_options:
columns: full
layout: vertical
media_controls:
- previous
- play_pause_stop
- next
show_volume_level: true
type: custom:mushroom-media-player-card
use_media_info: true
volume_controls:
- volume_mute
- volume_set
- volume_buttons
type: grid
subview: true
theme: Backend-selected
title: Cucina
type: sections
- badges: []
cards: []
icon: mdi:toilet
max_columns: 3
path: bathroom
sections:
- cards:
- detail: 1
entity: sensor.termometro_bagno_temperature
graph: line
hours_to_show: 24
name: Temperatura
type: sensor
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
- detail: 1
entity: sensor.termometro_bagno_humidity
graph: line
hours_to_show: 24
name: Umidità
type: sensor
visibility:
- condition: screen
media_query: '(min-width: 0px) and (max-width: 767px)'
- animate: true
color_thresholds:
- color: '#f39c12'
value: 20
- color: '#d35400'
value: 21
- color: '#c0392b'
value: 21.5
entities:
- entity: sensor.termometro_bagno_temperature
show_legend: false
- color: gray
entity: sun.sun
name: Night
show_legend: false
show_line: false
show_points: false
y_axis: secondary
hours_to_show: 168
name: Temperatura