-
Notifications
You must be signed in to change notification settings - Fork 96
/
ui-lovelace.yaml
2109 lines (1968 loc) · 67.2 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: Casetta - Nico e Mascia
# Include external resources
resources:
- url: /community_plugin/monster-card/monster-card.js
type: js
- url: /community_plugin/plan-coordinates/plan-coordinates.js
type: js
- url: /local/custom-lovelace/weather-card/weather-card.js
type: module
- url: /community_plugin/atomic_calendar/atomic_calendar.js
type: module
- url: /local/mini-media-player-bundle.js?v=1.4.1
type: module
- url: /local/mini-graph-card-bundle.js?v=0.6.0
type: module
- url: /community_plugin/lovelace-animated-background/animated-background.js
type: module
- url: /community_plugin/lovelace-slider-entity-row/slider-entity-row.js
type: module
animated_background:
default_url: /community_plugin/lovelace-animated-background/background-animations/sunny.html
#included_users:
#- Nicolò
#- Rossella
#- Mascia
entity: "weather.dark_sky"
state_url:
'sunny': /community_plugin/lovelace-animated-background/background-animations/sunny.html
'partlycloudy': /community_plugin/lovelace-animated-background/background-animations/cloudy.html
'cloudy': /community_plugin/lovelace-animated-background/background-animations/cloudy.html
'mostlycloudy': /community_plugin/lovelace-animated-background/background-animations/mostlycloudy.html
'clear-night': /community_plugin/lovelace-animated-background/background-animations/night.html
'fog': /community_plugin/lovelace-animated-background/background-animations/fog.html
# Optional background for all views. Check https://developer.mozilla.org/en-US/docs/Web/CSS/background for more examples.
background: center / cover no-repeat url("/background.png") fixed
# Exclude entities from "Unused entities" view
excluded_entities:
- weblink.router
####################################################
# #
# View - Home #
# #
####################################################
views:
# View tab title.
- title: Home
# Optional unique id for direct access /lovelace/${id}
id: Home
# Optional background (overwrites the global background).
#background: radial-gradient(crimson, skyblue)
# Each view can have a different theme applied. Theme should be defined in the frontend.
#theme: dark-mode
# The cards to show on this view.
####################################################
# #
# Cards #
# #
####################################################
cards:
- type: markdown
content: >
## Home Tab
- type: custom:weather-card
entity: weather.dark_sky
# The filter card will filter entities for their state
####################################################
### Meteo DarkSky V. 2.02 - 05.04.19 #
####################################################
- type: glance
show_name: false
entities:
- sun.sun
- entity: sensor.sunrise_time
icon: mdi:weather-sunset-up
- entity: sensor.sunset_time
icon: mdi:weather-sunset-down
####################################################
# Entity-Filter #
####################################################
- type: custom:monster-card
show_empty: false
card:
type: glance
title: Low Battery Devices
filter:
include:
- entity_id: "*battery_level*"
state: '< 25'
- attributes:
battery: '< 25'
- attributes:
battery_level: '< 25'
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: glance
entities:
- sensor.kitchen_temperature
- sensor.bedroom_temperature
- sensor.living_room_temperature
- type: glance
entities:
- device_tracker.nico_nico
- device_tracker.mamma_mamma
- device_tracker.iphone
- type: entity-filter
entities:
- device_tracker.nico_nico
- device_tracker.mamma_mamma
- device_tracker.iphone
state_filter:
- 'home'
- 'casetta'
- 'papa'
card:
type: glance
title: People at Home
- type: entity-filter
entities:
- device_tracker.nico_nico
- device_tracker.mamma_mamma
- device_tracker.iphone
state_filter:
- 'work'
- 'ale'
- 'tigre'
card:
type: glance
title: People at Work
- type: entity-filter
entities:
- device_tracker.nico_nico
- device_tracker.mamma_mamma
- device_tracker.iphone
state_filter:
- 'not_home'
card:
type: glance
title: People enjoying the life
- type: custom:mini-graph-card
name: Potenza Istantanea
entities:
- sensor.potenza_istantanea
hours_to_show: 24
points_per_hour: 8
show:
labels: true
color_thresholds:
- value: 0
color: "#0FEE07"
- value: 500
color: "#ffb400"
- value: 1000
color: "#c0392b"
#- type: picture-entity
#title: Camera Salone
#entity: camera.onvif_camera
#camera_view: live
# tap_action:
# action: call-service
# service: camera.snapshot
# service_data:
# entity_id: camera.onvif_camera
- type: picture-elements
entity: camera.onvif_camera
camera_image: camera.onvif_camera
camera_view: live
elements:
- type: icon
icon: 'mdi:arrow-up'
style:
background: 'rgba(255, 255, 255, 0.5)'
right: 25px
bottom: 50px
tap_action:
action: call-service
service: camera.onvif_ptz
service_data:
tilt: UP
- type: icon
icon: 'mdi:arrow-down'
style:
background: 'rgba(255, 255, 255, 0.5)'
right: 25px
bottom: 0px
tap_action:
action: call-service
service: camera.onvif_ptz
service_data:
tilt: DOWN
- type: icon
icon: 'mdi:arrow-left'
style:
background: 'rgba(255, 255, 255, 0.5)'
right: 50px
bottom: 25px
tap_action:
action: call-service
service: camera.onvif_ptz
service_data:
pan: LEFT
- type: icon
icon: 'mdi:arrow-right'
style:
background: 'rgba(255, 255, 255, 0.5)'
right: 0px
bottom: 25px
tap_action:
action: call-service
service: camera.onvif_ptz
service_data:
pan: RIGHT
- type: icon
icon: 'mdi:arrow-top-left'
style:
background: 'rgba(255, 255, 255, 0.5)'
right: 50px
bottom: 50px
tap_action:
action: call-service
service: camera.onvif_ptz
service_data:
tilt: UP
pan: LEFT
- type: icon
icon: 'mdi:arrow-top-right'
style:
background: 'rgba(255, 255, 255, 0.5)'
right: 0px
bottom: 50px
tap_action:
action: call-service
service: camera.onvif_ptz
service_data:
tilt: UP
pan: RIGHT
- type: icon
icon: 'mdi:arrow-bottom-left'
style:
background: 'rgba(255, 255, 255, 0.5)'
right: 50px
bottom: 0px
tap_action:
action: call-service
service: camera.onvif_ptz
service_data:
tilt: DOWN
pan: LEFT
- type: icon
icon: 'mdi:arrow-bottom-right'
style:
background: 'rgba(255, 255, 255, 0.5)'
right: 0px
bottom: 0px
tap_action:
action: call-service
service: camera.onvif_ptz
service_data:
tilt: DOWN
pan: RIGHT
- type: icon
icon: 'mdi:door'
style:
background: 'rgba(255, 255, 255, 0.5)'
left: 40px
top: 25px
tap_action:
action: call-service
service: rest_command.ss_preset_home
- type: icon
icon: 'mdi:sofa'
style:
background: 'rgba(255, 255, 255, 0.5)'
left: 65px
top: 25px
tap_action:
action: call-service
service: rest_command.ss_preset_living
- type: icon
icon: 'mdi:bed-king-outline'
style:
background: 'rgba(255, 255, 255, 0.5)'
left: 90px
top: 25px
tap_action:
action: call-service
service: rest_command.ss_preset_bedroom
- type: icon
icon: 'mdi:file-cabinet'
style:
background: 'rgba(255, 255, 255, 0.5)'
left: 115px
top: 25px
tap_action:
action: call-service
service: rest_command.ss_preset_rack
- type: icon
icon: 'mdi:lightbulb-on-outline'
style:
background: 'rgba(255, 255, 255, 0.5)'
left: 40px
bottom: 0px
tap_action:
action: toggle
entity: switch.shelly_shsw_25_68796e_1
- type: icon
icon: 'mdi:lightbulb-on-outline'
style:
background: 'rgba(255, 255, 255, 0.5)'
left: 65px
bottom: 0px
tap_action:
action: toggle
entity: switch.shelly_shsw_25_68796e_2
- type: icon
icon: 'mdi:lightbulb-on-outline'
style:
background: 'rgba(255, 255, 255, 0.5)'
left: 100px
bottom: 0px
tap_action:
action: toggle
entity: switch.shelly_shsw_25_686d62_1
- type: icon
icon: 'mdi:lightbulb-on-outline'
style:
background: 'rgba(255, 255, 255, 0.5)'
left: 125px
bottom: 0px
tap_action:
action: toggle
entity: switch.shelly_shsw_25_686d62_2
# - type: picture-glance
# title: Living room
# entities:
# - switch.shelly_shsw_25_68796e_1
# - switch.shelly_shsw_25_68796e_2
# - switch.shelly_shsw_25_686d62_1
# - switch.shelly_shsw_25_686d62_2
#- cover.shelly_shsw_25_e6704f
# - script.ss_preset_home
# - script.ss_preset_living
# - script.ss_preset_bedroom
# - script.ss_preset_rack
# camera_image: camera.onvif_camera
# camera_view: live
# - type: picture-entity
# entity: camera.onvif_camera
# camera_view: live
# - type: picture-entity
# entity: camera.onvif_camera
# camera_view: live
- type: entities
entities:
- type: section
label: Data
#- sensor.date
- sensor.date_time
- type: section
label: Season
- sensor.season
- type: section
label: Home Temperature
- sensor.kitchen_temperature
- sensor.bedroom_temperature
- sensor.living_room_temperature
- type: section
label: Internet Speed
- sensor.speedtest_download
- sensor.speedtest_upload
- sensor.speedtest_ping
- type: section
label: Home Assistant Info
- sensor.current_version
- sensor.uptime
- type: section
label: CA Expiration Days
- sensor.ssl_certificate_expiry
- type: section
label: Raspberry
- sensor.disk_use_percent_home
- sensor.disk_free_home
- sensor.memory_free
- sensor.memory_use_percent
- sensor.processor_use
- type: section
label: Database Size
- sensor.mariadb_size
- type: section
label: Links
- type: weblink
url: http://google.com/
icon: mdi:google
name: Google
- type: section
# - type: entities
# entities:
# - type: section
# label: Prezzi Benzina
# - sensor.q8easy_torpignattara_diesel_self_pre_pay
# - sensor.q8easy_torpignattara_diesel_self_service
- type: entities
title: Who's Cooking Today?
show_header_toggle: false
entities:
- input_select.who_cooks
- group.family
####################################################
# #
# Media/Audio #
# #
####################################################
- type: custom:mini-media-player
entity: media_player.tv_casetta
icon: mdi:television
artwork: cover
- type: custom:mini-media-player
entity: media_player.nicolo_s_bose_home_speaker_500
icon: mdi:amazon-alexa
artwork: cover
#tts:
#platform: alexa
#language: it
#entity_id: media_player.nicolo_s_bose_home_speaker_500
- type: custom:mini-media-player
entity: media_player.salotto
icon: mdi:amazon-alexa
artwork: cover
tts:
platform: alexa
entity_id: media_player.salotto
- type: custom:mini-media-player
entity: media_player.echo_dot_di_nicolo
icon: mdi:amazon-alexa
artwork: cover
- type: custom:mini-media-player
entity: media_player.this_device_2
icon: mdi:amazon-alexa
artwork: cover
####################################################
# Sensor/Gauge #
####################################################
- type: vertical-stack
cards:
# - type: gauge
# name: Batteria Telefono Nico
# graph: line
# unit: '%'
# entity: sensor.batteria_telefono_nico
# min: 0
# max: 100
# severity:
# green: 60
# yellow: 30
# red: 0
# - type: sensor
# name: Batteria Telefono Nico
# graph: line
# height: 100
# icon: battery
# unit: '%'
# entity: sensor.batteria_telefono_nico
# line_color: "#3498db"
- type: custom:mini-graph-card
name: Batteria Telefono Nico
entities:
- sensor.batteria_telefono_nico
hours_to_show: 24
#points_per_hour: 0.25
show:
labels: true
color_thresholds:
- value: 70
color: "#0FEE07"
- value: 40
color: "#ffb400"
- value: 0
color: "#c0392b"
# - type: gauge
# name: Batteria Telefono Mamma
# unit_of_measurement: '%'
# entity: sensor.batteria_telefono_mamma
# severity:
# green: 85
# yellow: 45
# red: 0
- type: custom:mini-graph-card
name: Batteria Telefono Mamma
entities:
- sensor.batteria_telefono_mamma
hours_to_show: 24
#points_per_hour: 0.25
show:
labels: true
color_thresholds:
- value: 70
color: "#0FEE07"
- value: 40
color: "#ffb400"
- value: 0
color: "#c0392b"
# - type: sensor
# name: Batteria Telefono Mamma
# graph: line
# height: 100
# icon: battery
# unit: '%'
# entity: sensor.batteria_telefono_mamma
# #line_color: "#3498db"
# - type: gauge
# name: Pi3 Temp
# #graph: line
# unit: '°'
# entity: sensor.command_sensor
# min: 0
# max: 100
# severity:
# green: 0
# yellow: 55
# red: 70
# - type: sensor
# name: CPU Temp Pi3
# graph: line
# height: 100
# icon: battery
# unit: '%'
# entity: sensor.command_sensor
# #line_color: "#3498db"
- type: custom:mini-graph-card
name: CPU Temp Pi3
entities:
- sensor.command_sensor
hours_to_show: 24
#points_per_hour: 0.25
show:
labels: true
color_thresholds:
- value: 55
color: "#0FEE07"
- value: 60
color: "#ffb400"
- value: 65
color: "#c0392b"
- type: history-graph
title: "Telephones Battery History"
entities:
- sensor.batteria_telefono_nico
- sensor.batteria_telefono_mamma
# cards:
# # The filter card will filter entities for their state
# - type: entity-filter
# entities:
# - device_tracker.nico_nico
# - device_tracker.mamma_mamma
# - device_tracker.iphone
# state_filter:
# - 'work'
# - 'tigre'
# card:
# type: glance
# title: People that are at Work
# The picture entity card will represent an entity with a picture
####################################################
# Shopping List #
####################################################
- type: shopping-list
title: Shopping List
####################################################
# #
# View - Lights and Switches #
# #
####################################################
# Specify a tab icon if you want the view tab to be an icon.
- title: Lights/Swtiches
# Title of the view. Will be used as the tooltip for tab icon
path: Lights
cards:
# The markdown card will render markdown text.
- type: markdown
title: Lights and Switch Card
content: >
## This is the Lights and Switch Cards where you can find all the component to turn On or Off.
# Entities card will take a list of entities and show their state.
#- type: 'custom:monster-card'
#card:
#title: Shelly
#type: entities
#entities:
#show_header_toggle: false
#filter:
#exclude:
#- entity_id: '*rssi*'
#- entity_id: '*uptime*'
#- entity_id: '*firmware*'
#include:
#- entity_id: '*shelly*'
#- entity_id: input_number.living_room_cover
# - type: entities
# title: Shellys
# show_header_toggle: false
# entities:
# - entity: cover.shelly_shsw_25_e6704f
# name: Serranda Salone
# - type: custom:slider-entity-row
# entity: cover.shelly_shsw_25_e6704f
# name: Apertura Serranda
# full_row: true
# min: 0
# max: 100
# step: 1
#- type: custom:slider-entity-row
#entity: cover.shelly_shsw_25_e6704f
#toggle: true
#hide_state: true
#min: 0
#max: 100
#step: 1
# sensor.shelly_shsw_25_e6704f_1_consumtion
#sensor.shelly_shsw_25_e6704f_2_consumtion
#switch.shelly_shsw_25_e6704f_1
#switch.shelly_shsw_25_e6704f_2
####################################################
# #
# Lights and Switches #
# #
####################################################
####################################################
# Lights #
####################################################
- type: entities
title: Lights
show_header_toggle: false
entities:
- type: section
label: Luci Salone
- switch.shelly_shsw_25_68796e_1
- switch.shelly_shsw_25_68796e_2
- type: section
label: Luci Cucina
- switch.shelly_shsw_25_686d62_1
- switch.shelly_shsw_25_686d62_2
- type: section
label: Luci Camera da Letto
- switch.shelly_shsw_25_687269_1
- switch.shelly_shsw_25_687269_2
- type: section
label: Luci Bagno
- switch.shelly_shsw_25_e5e601_1
- switch.shelly_shsw_25_e5e601_2
- type: entities
title: Switches
show_header_toggle: false
entities:
- type: section
label: Salone
- entity: cover.shelly_shsw_25_e6704f
name: Serranda Salone
- type: custom:slider-entity-row
entity: cover.shelly_shsw_25_e6704f
name: Apertura Serranda
full_row: true
min: 0
max: 100
step: 1
- switch.shelly_shplg_s_041a07 # presa tv
- switch.shelly_shplg_s_0409b4 # Presa Alexa
- switch.air
- switch.air2
- switch.air3
- switch.nico_computer
- switch.shelly_shplg_s_7a33ff
- switch.fritz_box_guest_wifi
- type: section
label: Rack
- switch.shelly_shplg_s_041a76
- switch.ciabatta_rack_fritz_dect_200_1
- switch.presa_rasp_pi3_fritz_dect_200_2
- switch.dsm01
- type: section
label: Cucina
- switch.shelly_shplg_s_04169c
- type: section
label: Sgabuzzino
- switch.shelly_shplg_s_5b2502
- sensor.shelly_shwt_1_694834_flood
- sensor.shelly_shwt_1_694834_temperature
- type: entities
title: Scripts
show_header_toggle: false
entities:
- type: section
label: Alexa Sequence
- script.alexaimathome
- script.alexaflash
- script.alexafun
- script.alexastory
- script.alexasing
- script.alexanight
- script.alexamorning
- script.alexatraffic
- script.alexatraffic2
- script.alexaweather
- type: section
label: Alexa Radios
- script.alexaradiofreccia
- script.alexaglobo
- script.alexartl1025
- script.alexa105
- script.alexards
- script.alexam2o
- script.alexalazio
- script.alexamediapause2
- type: section
label: Scripts
- script.alexascripthastart
- script.alexascriptvoipcall
- script.alexascriptmariatiamo
- script.alexascriptvoiptest
#- script.alexascriptbirthday
- script.alexa_tts
- script.jarvis_greeting
- type: section
label: Camera Preset
- script.camera_rack_preset
####################################################
# #
# Calendar #
# #
####################################################
# Specify a tab icon if you want the view tab to be an icon.
- title: Calendar
# Title of the view. Will be used as the tooltip for tab icon
icon: mdi:calendar
path: Calendar
cards:
# The markdown card will render markdown text.
- type: markdown
title: Calendar Events
content: >
### This is the Calendar event card where you can find info about your scheduled events.
# Entities card will take a list of entities and show their state.
- type: "custom:atomic-calendar"
#numberOfDays: 14
entities:
#- calendar.contacts
- calendar.festivita_in_italia
- calendar.nicolo_steffe_gmail_com
- calendar.euroflash_security_rcpt021_gmail_com
- calendar.festivita_in_italia
- calendar.lazio
fullDayEventText: 'All day'
untilText: 'Until'
showColors: true
maxDaysToShow: 14
showLocation: true
showMonth: false
showCurrentEventLine: false
dateColor: black
dateSize: 90
timeColor: blue
timeSize: 90
titleColor: black
titleSize: 100
locationIconColor: 'rgb(230, 124, 115)'
locationLinkColor: black
locationTextSize: 90
dimFinishedEvents: true
finishedEventOpacity: 0.6
finishedEventFilter: 'grayscale(100%)'
dayWrapperLineColor: black
eventBarColor: blue
showProgressBar: true
progressBarColor: blue
max_results: 15
- type: "custom:atomic-calendar"
name: "Birthdays"
#showProgressBar: false
#numberOfDays: 14
entities:
- calendar.contacts
fullDayEventText: 'All day'
untilText: 'Until'
showColors: true
maxDaysToShow: 7
showLocation: true
showMonth: false
showCurrentEventLine: false
dateColor: black
dateSize: 90
timeColor: blue
timeSize: 90
titleColor: black
titleSize: 100
locationIconColor: 'rgb(230, 124, 115)'
locationLinkColor: black
locationTextSize: 90
dimFinishedEvents: true
finishedEventOpacity: 0.6
finishedEventFilter: 'grayscale(100%)'
dayWrapperLineColor: black
eventBarColor: blue
showProgressBar: true
progressBarColor: blue
max_results: 15
- type: entities
title: Birthdays
show_header_toggle: false
entities:
#- input_label.mascia_birthday
#- input_label.mascia_birthday_days2go
#- input_label.nico_birthday
#- input_label.nico_birthday_days2go
#- input_label.rossella_birthday
#- input_label.rossella_birthday_days2go
- sensor.nico_e_mascia_anniversary
####################################################
# #
# View - Climate #
# #
####################################################
# Specify a tab icon if you want the view tab to be an icon.
- title: Climate
# Title of the view. Will be used as the tooltip for tab icon
path: Climate
cards:
# The markdown card will render markdown text.
- type: markdown
#icon: mdi:weather-lightning
title: Climate Card
content: >
## This is the Climate Card where you can set the Temperature in your Home.
####################################################
# #
# Thermostat/Climate #
# #
####################################################
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: glance
entities:
- sensor.kitchen_temperature
- sensor.bedroom_temperature
- sensor.living_room_temperature
- type: vertical-stack
cards:
- type: thermostat
entity: climate.termosifone_salone
- type: custom:mini-graph-card
name: Living Room Humidity
entities:
- sensor.living_room_humidity
hours_to_show: 24
#points_per_hour: 0.25
show:
labels: true
color_thresholds:
- value: 40
color: "#0FEE07"
- value: 50
color: "#ffb400"
- value: 60
color: "#c0392b"
- type: vertical-stack
cards:
- type: thermostat
entity: climate.termosifone_notte
- type: custom:mini-graph-card
name: Bed Room Humidity
entities:
- sensor.bedroom_humidity
hours_to_show: 24
#points_per_hour: 0.25
show:
labels: true
color_thresholds:
- value: 40
color: "#0FEE07"
- value: 50
color: "#ffb400"
- value: 60
color: "#c0392b"
- type: vertical-stack
cards:
- type: thermostat
entity: climate.termosifone_cucina
- type: custom:mini-graph-card
name: Kitchen Humidity
entities:
- sensor.kitchen_humidity
hours_to_show: 24
#points_per_hour: 0.25
show:
labels: true
color_thresholds:
- value: 40
color: "#0FEE07"
- value: 50
color: "#ffb400"
- value: 60
color: "#c0392b"
#- type: thermostat
#entity: climate.kitchen
#- type: sensor
#name: Kitchen Humidity
#graph: line
#unit: '%'
#entity: sensor.kitchen_humidity
- type: history-graph
title: "Climate History"
entities:
- sensor.kitchen_temperature
- sensor.bedroom_temperature
- sensor.living_room_temperature
- type: history-graph
title: "Humidity History"
entities:
- sensor.living_room_humidity
- sensor.bedroom_humidity
- sensor.kitchen_humidity
####################################################
# #
# Weather Alerts #
# #
####################################################