forked from Blackymas/NSPanel_HA_Blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nspanel_blueprint.yaml
11350 lines (11045 loc) · 681 KB
/
nspanel_blueprint.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
#######################################################################################################
##### NSPANEL Blueprint created by Blackymas - https://github.com/Blackymas/NSPanel_HA_Blueprint #####
##### Blueprint #####
##### PLEASE only make changes if it is necessary and also the required knowledge is available. #####
##### For normal use with the Blueprint, no changes are necessary. #####
#######################################################################################################
---
blueprint:
name: NSPanel Configuration
description: >
# NSPanel Configuration via Blueprint: Complete UI-Based Setup
**Version**: v4.3.8
This project enables comprehensive configuration of your NSPanel through a Blueprint featuring a user interface.
**Documentation and Installation Video**:
For detailed guidance on setup and usage, visit [NSPanel Configuration, Setup and HowTo](https://github.com/Blackymas/NSPanel_HA_Blueprint/blob/main/docs/README.md).
source_url: https://github.com/Blackymas/NSPanel_HA_Blueprint/blob/main/nspanel_blueprint.yaml
domain: automation
homeassistant:
min_version: 2024.5.99
input:
nspanel_name: # This key was kept with this name to support inputs from legacy versions where the panel name was used
name: NSPanel device (REQUIRED)
description: "Please select the ESPHome device related to the NSPanel to be controlled by this automation."
default: []
selector:
device:
multiple: false
filter:
- integration: esphome
model: esp32dev
- integration: esphome
model: NSPanel_HA_Blueprint
- integration: esphome
model: Wall_Display
localization:
name: Localization (optional)
icon: mdi:earth
description: Select the language and date/time formats to be displayed in your panel.
collapsed: true
input:
language:
name: Language
description: "Select the language for your NSPanel."
default: en
selector:
language:
languages: [en, bg, hr, cs, da, nl, et, fi, fr, de, el, he, hu, id, it, ja, ko, lv, lt, nb, pl, pt, ro, ru, sk, sl, es, sv, tr, uk, zh-tw]
date_format:
name: Date Format
description: "Select the format for date to display."
default: '%A, %d.%m'
selector:
select:
multiple: false
custom_value: true
options:
- label: 'Weekday, DD.MM (ex. "Friday, 22.03")'
value: '%A, %d.%m'
- label: 'Weekday, DD/MM (ex. "Friday, 22/03")'
value: '%A, %d/%m'
- label: 'Weekday, D/M (ex. "Friday, 22/3")'
value: '%A, %-d/%-m'
- label: 'Weekday, M/D (ex. "Friday, 3/22")'
value: '%A, %-m/%-d'
- label: 'Weekday D.M (ex. "Friday 22.3")'
value: '%A %-d.%-m'
- label: Weekday D-M (ex. "Friday 22-3")
value: '%A %-d-%-m'
- label: Weekday M-D (ex. "Friday 3-22")
value: '%A %-m-%-d'
time_format:
name: Time Format
description: "Choose how time should be displayed."
default: '%H:%M'
selector:
select:
multiple: false
custom_value: true
options:
- label: 'HH:MM (ex. 08:30 and 20:30)'
value: '%H:%M'
- label: 'H:MM AM/PM (ex. 8:30AM and 8:30PM)'
value: '%-I:%M %p'
- label: 'H:MM 24H (ex. 8:30 and 20:30)'
value: '%-H:%M'
- label: 'H.MM 24H (ex. 8.30 and 20.30)'
value: '%-H.%M'
timezone:
name: Timezone
description: "Choose your timezone."
default: ""
selector:
select:
multiple: false
custom_value: true
options:
- 'Africa/Abidjan (GMT0)'
- 'Africa/Accra (GMT0)'
- 'Africa/Addis_Ababa (EAT-3)'
- 'Africa/Algiers (CET-1)'
- 'Africa/Asmara (EAT-3)'
- 'Africa/Bamako (GMT0)'
- 'Africa/Bangui (WAT-1)'
- 'Africa/Banjul (GMT0)'
- 'Africa/Bissau (GMT0)'
- 'Africa/Blantyre (CAT-2)'
- 'Africa/Brazzaville (WAT-1)'
- 'Africa/Bujumbura (CAT-2)'
- 'Africa/Cairo (EET-2EEST,M4.5.5/0,M10.5.4/24)'
- 'Africa/Casablanca (<+01>-1)'
- 'Africa/Ceuta (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Africa/Conakry (GMT0)'
- 'Africa/Dakar (GMT0)'
- 'Africa/Dar_es_Salaam (EAT-3)'
- 'Africa/Djibouti (EAT-3)'
- 'Africa/Douala (WAT-1)'
- 'Africa/El_Aaiun (<+01>-1)'
- 'Africa/Freetown (GMT0)'
- 'Africa/Gaborone (CAT-2)'
- 'Africa/Harare (CAT-2)'
- 'Africa/Johannesburg (SAST-2)'
- 'Africa/Juba (CAT-2)'
- 'Africa/Kampala (EAT-3)'
- 'Africa/Khartoum (CAT-2)'
- 'Africa/Kigali (CAT-2)'
- 'Africa/Kinshasa (WAT-1)'
- 'Africa/Lagos (WAT-1)'
- 'Africa/Libreville (WAT-1)'
- 'Africa/Lome (GMT0)'
- 'Africa/Luanda (WAT-1)'
- 'Africa/Lubumbashi (CAT-2)'
- 'Africa/Lusaka (CAT-2)'
- 'Africa/Malabo (WAT-1)'
- 'Africa/Maputo (CAT-2)'
- 'Africa/Maseru (SAST-2)'
- 'Africa/Mbabane (SAST-2)'
- 'Africa/Mogadishu (EAT-3)'
- 'Africa/Monrovia (GMT0)'
- 'Africa/Nairobi (EAT-3)'
- 'Africa/Ndjamena (WAT-1)'
- 'Africa/Niamey (WAT-1)'
- 'Africa/Nouakchott (GMT0)'
- 'Africa/Ouagadougou (GMT0)'
- 'Africa/Porto-Novo (WAT-1)'
- 'Africa/Sao_Tome (GMT0)'
- 'Africa/Tripoli (EET-2)'
- 'Africa/Tunis (CET-1)'
- 'Africa/Windhoek (CAT-2)'
- 'America/Adak (HST10HDT,M3.2.0,M11.1.0)'
- 'America/Anchorage (AKST9AKDT,M3.2.0,M11.1.0)'
- 'America/Anguilla (AST4)'
- 'America/Antigua (AST4)'
- 'America/Araguaina (<-03>3)'
- 'America/Argentina/Buenos_Aires (<-03>3)'
- 'America/Argentina/Catamarca (<-03>3)'
- 'America/Argentina/Cordoba (<-03>3)'
- 'America/Argentina/Jujuy (<-03>3)'
- 'America/Argentina/La_Rioja (<-03>3)'
- 'America/Argentina/Mendoza (<-03>3)'
- 'America/Argentina/Rio_Gallegos (<-03>3)'
- 'America/Argentina/Salta (<-03>3)'
- 'America/Argentina/San_Juan (<-03>3)'
- 'America/Argentina/San_Luis (<-03>3)'
- 'America/Argentina/Tucuman (<-03>3)'
- 'America/Argentina/Ushuaia (<-03>3)'
- 'America/Aruba (AST4)'
- 'America/Asuncion (<-04>4<-03>,M10.1.0/0,M3.4.0/0)'
- 'America/Atikokan (EST5)'
- 'America/Bahia (<-03>3)'
- 'America/Bahia_Banderas (CST6)'
- 'America/Barbados (AST4)'
- 'America/Belem (<-03>3)'
- 'America/Belize (CST6)'
- 'America/Blanc-Sablon (AST4)'
- 'America/Boa_Vista (<-04>4)'
- 'America/Bogota (<-05>5)'
- 'America/Boise (MST7MDT,M3.2.0,M11.1.0)'
- 'America/Cambridge_Bay (MST7MDT,M3.2.0,M11.1.0)'
- 'America/Campo_Grande (<-04>4)'
- 'America/Cancun (EST5)'
- 'America/Caracas (<-04>4)'
- 'America/Cayenne (<-03>3)'
- 'America/Cayman (EST5)'
- 'America/Chicago (CST6CDT,M3.2.0,M11.1.0)'
- 'America/Chihuahua (CST6)'
- 'America/Ciudad_Juarez (MST7MDT,M3.2.0,M11.1.0)'
- 'America/Costa_Rica (CST6)'
- 'America/Creston (MST7)'
- 'America/Cuiaba (<-04>4)'
- 'America/Curacao (AST4)'
- 'America/Danmarkshavn (GMT0)'
- 'America/Dawson (MST7)'
- 'America/Dawson_Creek (MST7)'
- 'America/Denver (MST7MDT,M3.2.0,M11.1.0)'
- 'America/Detroit (EST5EDT,M3.2.0,M11.1.0)'
- 'America/Dominica (AST4)'
- 'America/Edmonton (MST7MDT,M3.2.0,M11.1.0)'
- 'America/Eirunepe (<-05>5)'
- 'America/El_Salvador (CST6)'
- 'America/Fort_Nelson (MST7)'
- 'America/Fortaleza (<-03>3)'
- 'America/Glace_Bay (AST4ADT,M3.2.0,M11.1.0)'
- 'America/Goose_Bay (AST4ADT,M3.2.0,M11.1.0)'
- 'America/Grand_Turk (EST5EDT,M3.2.0,M11.1.0)'
- 'America/Grenada (AST4)'
- 'America/Guadeloupe (AST4)'
- 'America/Guatemala (CST6)'
- 'America/Guayaquil (<-05>5)'
- 'America/Guyana (<-04>4)'
- 'America/Halifax (AST4ADT,M3.2.0,M11.1.0)'
- 'America/Havana (CST5CDT,M3.2.0/0,M11.1.0/1)'
- 'America/Hermosillo (MST7)'
- 'America/Indiana/Indianapolis (EST5EDT,M3.2.0,M11.1.0)'
- 'America/Indiana/Knox (CST6CDT,M3.2.0,M11.1.0)'
- 'America/Indiana/Marengo (EST5EDT,M3.2.0,M11.1.0)'
- 'America/Indiana/Petersburg (EST5EDT,M3.2.0,M11.1.0)'
- 'America/Indiana/Tell_City (CST6CDT,M3.2.0,M11.1.0)'
- 'America/Indiana/Vevay (EST5EDT,M3.2.0,M11.1.0)'
- 'America/Indiana/Vincennes (EST5EDT,M3.2.0,M11.1.0)'
- 'America/Indiana/Winamac (EST5EDT,M3.2.0,M11.1.0)'
- 'America/Inuvik (MST7MDT,M3.2.0,M11.1.0)'
- 'America/Iqaluit (EST5EDT,M3.2.0,M11.1.0)'
- 'America/Jamaica (EST5)'
- 'America/Juneau (AKST9AKDT,M3.2.0,M11.1.0)'
- 'America/Kentucky/Louisville (EST5EDT,M3.2.0,M11.1.0)'
- 'America/Kentucky/Monticello (EST5EDT,M3.2.0,M11.1.0)'
- 'America/La_Paz (<-04>4)'
- 'America/Lima (<-05>5)'
- 'America/Los_Angeles (PST8PDT,M3.2.0,M11.1.0)'
- 'America/Maceio (<-03>3)'
- 'America/Managua (CST6)'
- 'America/Manaus (<-04>4)'
- 'America/Martinique (AST4)'
- 'America/Matamoros (CST6CDT,M3.2.0,M11.1.0)'
- 'America/Mazatlan (MST7)'
- 'America/Menominee (CST6CDT,M3.2.0,M11.1.0)'
- 'America/Merida (CST6)'
- 'America/Metlakatla (AKST9AKDT,M3.2.0,M11.1.0)'
- 'America/Mexico_City (CST6)'
- 'America/Miquelon (<-03>3<-02>,M3.2.0,M11.1.0)'
- 'America/Moncton (AST4ADT,M3.2.0,M11.1.0)'
- 'America/Monterrey (CST6)'
- 'America/Montevideo (<-03>3)'
- 'America/Montserrat (AST4)'
- 'America/Nassau (EST5EDT,M3.2.0,M11.1.0)'
- 'America/New_York (EST5EDT,M3.2.0,M11.1.0)'
- 'America/Nome (AKST9AKDT,M3.2.0,M11.1.0)'
- 'America/Noronha (<-02>2)'
- 'America/North_Dakota/Beulah (CST6CDT,M3.2.0,M11.1.0)'
- 'America/North_Dakota/Center (CST6CDT,M3.2.0,M11.1.0)'
- 'America/North_Dakota/New_Salem (CST6CDT,M3.2.0,M11.1.0)'
- 'America/Nuuk (<-02>2<-01>,M3.5.0/-1,M10.5.0/0)'
- 'America/Ojinaga (CST6CDT,M3.2.0,M11.1.0)'
- 'America/Panama (EST5)'
- 'America/Paramaribo (<-03>3)'
- 'America/Phoenix (MST7)'
- 'America/Port-au-Prince (EST5EDT,M3.2.0,M11.1.0)'
- 'America/Port_of_Spain (AST4)'
- 'America/Porto_Velho (<-04>4)'
- 'America/Puerto_Rico (AST4)'
- 'America/Punta_Arenas (<-03>3)'
- 'America/Rankin_Inlet (CST6CDT,M3.2.0,M11.1.0)'
- 'America/Recife (<-03>3)'
- 'America/Regina (CST6)'
- 'America/Resolute (CST6CDT,M3.2.0,M11.1.0)'
- 'America/Rio_Branco (<-05>5)'
- 'America/Santarem (<-03>3)'
- 'America/Santiago (<-04>4<-03>,M9.1.6/24,M4.1.6/24)'
- 'America/Santo_Domingo (AST4)'
- 'America/Sao_Paulo (<-03>3)'
- 'America/Scoresbysund (<-02>2<-01>,M3.5.0/-1,M10.5.0/0)'
- 'America/Sitka (AKST9AKDT,M3.2.0,M11.1.0)'
- 'America/St_Johns (NST3:30NDT,M3.2.0,M11.1.0)'
- 'America/St_Kitts (AST4)'
- 'America/St_Lucia (AST4)'
- 'America/St_Thomas (AST4)'
- 'America/St_Vincent (AST4)'
- 'America/Swift_Current (CST6)'
- 'America/Tegucigalpa (CST6)'
- 'America/Thule (AST4ADT,M3.2.0,M11.1.0)'
- 'America/Tijuana (PST8PDT,M3.2.0,M11.1.0)'
- 'America/Toronto (EST5EDT,M3.2.0,M11.1.0)'
- 'America/Tortola (AST4)'
- 'America/Vancouver (PST8PDT,M3.2.0,M11.1.0)'
- 'America/Whitehorse (MST7)'
- 'America/Winnipeg (CST6CDT,M3.2.0,M11.1.0)'
- 'America/Yakutat (AKST9AKDT,M3.2.0,M11.1.0)'
- 'Antarctica/Casey (<+08>-8)'
- 'Antarctica/Davis (<+07>-7)'
- 'Antarctica/DumontDUrville (<+10>-10)'
- 'Antarctica/Macquarie (AEST-10AEDT,M10.1.0,M4.1.0/3)'
- 'Antarctica/Mawson (<+05>-5)'
- 'Antarctica/McMurdo (NZST-12NZDT,M9.5.0,M4.1.0/3)'
- 'Antarctica/Palmer (<-03>3)'
- 'Antarctica/Rothera (<-03>3)'
- 'Antarctica/Syowa (<+03>-3)'
- 'Antarctica/Troll (<+00>0<+02>-2,M3.5.0/1,M10.5.0/3)'
- 'Antarctica/Vostok (<+05>-5)'
- 'Asia/Aden (<+03>-3)'
- 'Asia/Almaty (<+05>-5)'
- 'Asia/Amman (<+03>-3)'
- 'Asia/Anadyr (<+12>-12)'
- 'Asia/Aqtau (<+05>-5)'
- 'Asia/Aqtobe (<+05>-5)'
- 'Asia/Ashgabat (<+05>-5)'
- 'Asia/Atyrau (<+05>-5)'
- 'Asia/Baghdad (<+03>-3)'
- 'Asia/Bahrain (<+03>-3)'
- 'Asia/Baku (<+04>-4)'
- 'Asia/Bangkok (<+07>-7)'
- 'Asia/Barnaul (<+07>-7)'
- 'Asia/Beirut (EET-2EEST,M3.5.0/0,M10.5.0/0)'
- 'Asia/Bishkek (<+06>-6)'
- 'Asia/Brunei (<+08>-8)'
- 'Asia/Chita (<+09>-9)'
- 'Asia/Choibalsan (<+08>-8)'
- 'Asia/Colombo (<+0530>-5:30)'
- 'Asia/Damascus (<+03>-3)'
- 'Asia/Dhaka (<+06>-6)'
- 'Asia/Dili (<+09>-9)'
- 'Asia/Dubai (<+04>-4)'
- 'Asia/Dushanbe (<+05>-5)'
- 'Asia/Famagusta (EET-2EEST,M3.5.0/3,M10.5.0/4)'
- 'Asia/Gaza (EET-2EEST,M3.4.4/50,M10.4.4/50)'
- 'Asia/Hebron (EET-2EEST,M3.4.4/50,M10.4.4/50)'
- 'Asia/Ho_Chi_Minh (<+07>-7)'
- 'Asia/Hong_Kong (HKT-8)'
- 'Asia/Hovd (<+07>-7)'
- 'Asia/Irkutsk (<+08>-8)'
- 'Asia/Jakarta (WIB-7)'
- 'Asia/Jayapura (WIT-9)'
- 'Asia/Jerusalem (IST-2IDT,M3.4.4/26,M10.5.0)'
- 'Asia/Kabul (<+0430>-4:30)'
- 'Asia/Kamchatka (<+12>-12)'
- 'Asia/Karachi (PKT-5)'
- 'Asia/Kathmandu (<+0545>-5:45)'
- 'Asia/Khandyga (<+09>-9)'
- 'Asia/Kolkata (IST-5:30)'
- 'Asia/Krasnoyarsk (<+07>-7)'
- 'Asia/Kuala_Lumpur (<+08>-8)'
- 'Asia/Kuching (<+08>-8)'
- 'Asia/Kuwait (<+03>-3)'
- 'Asia/Macau (CST-8)'
- 'Asia/Magadan (<+11>-11)'
- 'Asia/Makassar (WITA-8)'
- 'Asia/Manila (PST-8)'
- 'Asia/Muscat (<+04>-4)'
- 'Asia/Nicosia (EET-2EEST,M3.5.0/3,M10.5.0/4)'
- 'Asia/Novokuznetsk (<+07>-7)'
- 'Asia/Novosibirsk (<+07>-7)'
- 'Asia/Omsk (<+06>-6)'
- 'Asia/Oral (<+05>-5)'
- 'Asia/Phnom_Penh (<+07>-7)'
- 'Asia/Pontianak (WIB-7)'
- 'Asia/Pyongyang (KST-9)'
- 'Asia/Qatar (<+03>-3)'
- 'Asia/Qostanay (<+05>-5)'
- 'Asia/Qyzylorda (<+05>-5)'
- 'Asia/Riyadh (<+03>-3)'
- 'Asia/Sakhalin (<+11>-11)'
- 'Asia/Samarkand (<+05>-5)'
- 'Asia/Seoul (KST-9)'
- 'Asia/Shanghai (CST-8)'
- 'Asia/Singapore (<+08>-8)'
- 'Asia/Srednekolymsk (<+11>-11)'
- 'Asia/Taipei (CST-8)'
- 'Asia/Tashkent (<+05>-5)'
- 'Asia/Tbilisi (<+04>-4)'
- 'Asia/Tehran (<+0330>-3:30)'
- 'Asia/Thimphu (<+06>-6)'
- 'Asia/Tokyo (JST-9)'
- 'Asia/Tomsk (<+07>-7)'
- 'Asia/Ulaanbaatar (<+08>-8)'
- 'Asia/Urumqi (<+06>-6)'
- 'Asia/Ust-Nera (<+10>-10)'
- 'Asia/Vientiane (<+07>-7)'
- 'Asia/Vladivostok (<+10>-10)'
- 'Asia/Yakutsk (<+09>-9)'
- 'Asia/Yangon (<+0630>-6:30)'
- 'Asia/Yekaterinburg (<+05>-5)'
- 'Asia/Yerevan (<+04>-4)'
- 'Atlantic/Azores (<-01>1<+00>,M3.5.0/0,M10.5.0/1)'
- 'Atlantic/Bermuda (AST4ADT,M3.2.0,M11.1.0)'
- 'Atlantic/Canary (WET0WEST,M3.5.0/1,M10.5.0)'
- 'Atlantic/Cape_Verde (<-01>1)'
- 'Atlantic/Faroe (WET0WEST,M3.5.0/1,M10.5.0)'
- 'Atlantic/Madeira (WET0WEST,M3.5.0/1,M10.5.0)'
- 'Atlantic/Reykjavik (GMT0)'
- 'Atlantic/South_Georgia (<-02>2)'
- 'Atlantic/St_Helena (GMT0)'
- 'Atlantic/Stanley (<-03>3)'
- 'Australia/Adelaide (ACST-9:30ACDT,M10.1.0,M4.1.0/3)'
- 'Australia/Brisbane (AEST-10)'
- 'Australia/Broken_Hill (ACST-9:30ACDT,M10.1.0,M4.1.0/3)'
- 'Australia/Darwin (ACST-9:30)'
- 'Australia/Eucla (<+0845>-8:45)'
- 'Australia/Hobart (AEST-10AEDT,M10.1.0,M4.1.0/3)'
- 'Australia/Lindeman (AEST-10)'
- 'Australia/Lord_Howe (<+1030>-10:30<+11>-11,M10.1.0,M4.1.0)'
- 'Australia/Melbourne (AEST-10AEDT,M10.1.0,M4.1.0/3)'
- 'Australia/Perth (AWST-8)'
- 'Australia/Sydney (AEST-10AEDT,M10.1.0,M4.1.0/3)'
- 'Europe/Amsterdam (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Andorra (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Astrakhan (<+04>-4)'
- 'Europe/Athens (EET-2EEST,M3.5.0/3,M10.5.0/4)'
- 'Europe/Belgrade (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Berlin (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Brussels (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Bucharest (EET-2EEST,M3.5.0/3,M10.5.0/4)'
- 'Europe/Budapest (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Chisinau (EET-2EEST,M3.5.0,M10.5.0/3)'
- 'Europe/Copenhagen (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Dublin (IST-1GMT0,M10.5.0,M3.5.0/1)'
- 'Europe/Gibraltar (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Guernsey (GMT0BST,M3.5.0/1,M10.5.0)'
- 'Europe/Helsinki (EET-2EEST,M3.5.0/3,M10.5.0/4)'
- 'Europe/Isle_of_Man (GMT0BST,M3.5.0/1,M10.5.0)'
- 'Europe/Istanbul (<+03>-3)'
- 'Europe/Jersey (GMT0BST,M3.5.0/1,M10.5.0)'
- 'Europe/Kaliningrad (EET-2)'
- 'Europe/Kirov (MSK-3)'
- 'Europe/Kyiv (EET-2EEST,M3.5.0/3,M10.5.0/4)'
- 'Europe/Lisbon (WET0WEST,M3.5.0/1,M10.5.0)'
- 'Europe/Ljubljana (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/London (GMT0BST,M3.5.0/1,M10.5.0)'
- 'Europe/Luxembourg (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Madrid (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Malta (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Minsk (<+03>-3)'
- 'Europe/Monaco (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Moscow (MSK-3)'
- 'Europe/Oslo (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Paris (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Prague (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Riga (EET-2EEST,M3.5.0/3,M10.5.0/4)'
- 'Europe/Rome (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Samara (<+04>-4)'
- 'Europe/Sarajevo (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Saratov (<+04>-4)'
- 'Europe/Simferopol (MSK-3)'
- 'Europe/Skopje (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Sofia (EET-2EEST,M3.5.0/3,M10.5.0/4)'
- 'Europe/Stockholm (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Tallinn (EET-2EEST,M3.5.0/3,M10.5.0/4)'
- 'Europe/Tirane (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Ulyanovsk (<+04>-4)'
- 'Europe/Vaduz (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Vienna (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Vilnius (EET-2EEST,M3.5.0/3,M10.5.0/4)'
- 'Europe/Volgograd (MSK-3)'
- 'Europe/Warsaw (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Zagreb (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Europe/Zurich (CET-1CEST,M3.5.0,M10.5.0/3)'
- 'Indian/Antananarivo (EAT-3)'
- 'Indian/Chagos (<+06>-6)'
- 'Indian/Christmas (<+07>-7)'
- 'Indian/Cocos (<+0630>-6:30)'
- 'Indian/Comoro (EAT-3)'
- 'Indian/Kerguelen (<+05>-5)'
- 'Indian/Mahe (<+04>-4)'
- 'Indian/Maldives (<+05>-5)'
- 'Indian/Mauritius (<+04>-4)'
- 'Indian/Mayotte (EAT-3)'
- 'Indian/Reunion (<+04>-4)'
- 'Pacific/Apia (<+13>-13)'
- 'Pacific/Auckland (NZST-12NZDT,M9.5.0,M4.1.0/3)'
- 'Pacific/Bougainville (<+11>-11)'
- 'Pacific/Chatham (<+1245>-12:45<+1345>,M9.5.0/2:45,M4.1.0/3:45)'
- 'Pacific/Chuuk (<+10>-10)'
- 'Pacific/Easter (<-06>6<-05>,M9.1.6/22,M4.1.6/22)'
- 'Pacific/Efate (<+11>-11)'
- 'Pacific/Fakaofo (<+13>-13)'
- 'Pacific/Fiji (<+12>-12)'
- 'Pacific/Funafuti (<+12>-12)'
- 'Pacific/Galapagos (<-06>6)'
- 'Pacific/Gambier (<-09>9)'
- 'Pacific/Guadalcanal (<+11>-11)'
- 'Pacific/Guam (ChST-10)'
- 'Pacific/Honolulu (HST10)'
- 'Pacific/Kanton (<+13>-13)'
- 'Pacific/Kiritimati (<+14>-14)'
- 'Pacific/Kosrae (<+11>-11)'
- 'Pacific/Kwajalein (<+12>-12)'
- 'Pacific/Majuro (<+12>-12)'
- 'Pacific/Marquesas (<-0930>9:30)'
- 'Pacific/Midway (SST11)'
- 'Pacific/Nauru (<+12>-12)'
- 'Pacific/Niue (<-11>11)'
- 'Pacific/Norfolk (<+11>-11<+12>,M10.1.0,M4.1.0/3)'
- 'Pacific/Noumea (<+11>-11)'
- 'Pacific/Pago_Pago (SST11)'
- 'Pacific/Palau (<+09>-9)'
- 'Pacific/Pitcairn (<-08>8)'
- 'Pacific/Pohnpei (<+11>-11)'
- 'Pacific/Port_Moresby (<+10>-10)'
- 'Pacific/Rarotonga (<-10>10)'
- 'Pacific/Saipan (ChST-10)'
- 'Pacific/Tahiti (<-10>10)'
- 'Pacific/Tarawa (<+12>-12)'
- 'Pacific/Tongatapu (<+13>-13)'
- 'Pacific/Wake (<+12>-12)'
- 'Pacific/Wallis (<+12>-12)'
- 'Etc/GMT (GMT0)'
- 'Etc/GMT-14 (<+14>-14)'
- 'Etc/GMT-13 (<+13>-13)'
- 'Etc/GMT-12 (<+12>-12)'
- 'Etc/GMT-11 (<+11>-11)'
- 'Etc/GMT-10 (<+10>-10)'
- 'Etc/GMT-9 (<+09>-9)'
- 'Etc/GMT-8 (<+08>-8)'
- 'Etc/GMT-7 (<+07>-7)'
- 'Etc/GMT-6 (<+06>-6)'
- 'Etc/GMT-5 (<+05>-5)'
- 'Etc/GMT-4 (<+04>-4)'
- 'Etc/GMT-3 (<+03>-3)'
- 'Etc/GMT-2 (<+02>-2)'
- 'Etc/GMT-1 (<+01>-1)'
- 'Etc/GMT+1 (<-01>1)'
- 'Etc/GMT+2 (<-02>2)'
- 'Etc/GMT+3 (<-03>3)'
- 'Etc/GMT+4 (<-04>4)'
- 'Etc/GMT+5 (<-05>5)'
- 'Etc/GMT+6 (<-06>6)'
- 'Etc/GMT+7 (<-07>7)'
- 'Etc/GMT+8 (<-08>8)'
- 'Etc/GMT+9 (<-09>9)'
- 'Etc/GMT+10 (<-10>10)'
- 'Etc/GMT+11 (<-11>11)'
- 'Etc/GMT+12 (<-12>12)'
- 'Etc/UTC (UTC0)'
decimal_separator:
name: System settings - Decimal Separator
description: "Choose the decimal separator for displaying numbers."
default: '.'
selector:
select:
multiple: false
options:
- label: '. (Dot)'
value: '.'
- label: ', (Comma)'
value: ','
weather_temperature:
name: Weather and temperature (optional)
icon: mdi:weather-partly-snowy-rainy
description: Select the weather provider and how the ambient temperatures will be displayed.
collapsed: true
input:
weather_entity:
name: Weather entity from HA
description: >
Select your weather entity.
This will be used for weather information on Home page and all the weather pages.
default: []
selector:
entity:
filter:
domain:
- weather
outdoortemp:
name: Home page - Outdoor Temperature Sensor (Optional)
description: 'If no outdoor sensor is available, leave the field empty and the value from your selected weather integration will be used automatically.'
default: []
selector: &entity_temp_sensor-selector
entity:
filter:
domain:
- sensor
device_class:
- temperature
home_outdoor_temp_label_color:
name: Home page - Outdoor Temperature Sensor - Text color
description: &description_text_color "Choose a color for the sensor's display text."
default: [255, 255, 255]
selector: &color_selector
color_rgb:
home_outdoor_temp_font:
name: Home page - Outdoor Temperature Sensor font size
description: >
The size of the outdoor temperature font
***ATTENTION!** Depending on the value shown and the font size, the text may exceed the available space.*
default: '4'
selector:
select:
multiple: false
options:
- label: 16px
value: '0'
- label: 18px
value: '1'
- label: 22px
value: '2'
- label: 26px
value: '3'
- label: 36px
value: '4'
- label: 48px
value: '5'
- label: 72px
value: '6'
home_indoor_temp_visible:
name: Home Page - Indoor Temperature Sensor Visibility
description: "Toggle to display the indoor temperature on the Home page."
default: true
selector:
boolean:
indoortemp:
name: Home page - Indoor Temperature Sensor - Entity (Optional)
description: >
An indoor temperature sensor is not necessary.
Leave the field empty if you want to use the temperature sensor of the NSPanel.
Additionally a temperature correction for the NSPanel sensor is possible under HA Devices.
default: []
selector: *entity_temp_sensor-selector
home_indoor_temp_icon:
name: Home page - Indoor Temperature Sensor - Icon (Optional)
description: "Icon which should be displayed (Default mdi:thermometer)"
default: mdi:thermometer
selector: &selector_icon
icon:
home_indoor_temp_icon_color:
name: Home page - Indoor Temperature Sensor - Icon color
description: &description_icon_color "Icon color which should be displayed."
default: [255, 255, 255]
selector: *color_selector
home_indoor_temp_label_color:
name: Home page - Indoor Temperature Sensor - Text color
description: *description_text_color
default: [255, 255, 255]
selector: *color_selector
home_page_entites_states:
name: Home page - Entities states (optional)
icon: mdi:home
description: Select the entities to be displayed on the Home page.
collapsed: true
input:
home_value01:
name: Home page - Entity State 01 - Entity (Optional)
description: &description_entity_displayed "Entity which should be displayed."
default: []
selector: &selector_value_entity
entity:
home_value01_label_color:
name: Home page - Entity State 01 - Text color
description: *description_text_color
default: [200, 204, 200]
selector: *color_selector
home_value01_icon:
name: Home page - Entity State 01 - Icon (Optional)
description: &description_icon_automatic_default >
***Icon Display:** If not specified, an attribute-defined icon will be used, if available. Otherwise, no icon will be shown.*
default: []
selector: *selector_icon
home_value01_icon_color:
name: Home page - Entity State 01 - Icon color
description: *description_icon_color
default: [200, 204, 200]
selector: *color_selector
home_value02:
name: Home page - Entity State 02 - Entity (Optional)
description: *description_entity_displayed
default: []
selector: *selector_value_entity
home_value02_label_color:
name: Home page - Entity State 02 - Text color
description: *description_text_color
default: [200, 204, 200]
selector: *color_selector
home_value02_icon:
name: Home page - Entity State 02 - Icon (Optional)
description: *description_icon_automatic_default
default: []
selector: *selector_icon
home_value02_icon_color:
name: Home page - Entity State 02 - Icon color
description: *description_icon_color
default: [200, 204, 200]
selector: *color_selector
home_value03:
name: Home page - Entity State 03 - Entity (Optional)
description: *description_entity_displayed
default: []
selector: *selector_value_entity
home_value03_label_color:
name: Home page - Entity State 03 - Text color
description: *description_text_color
default: [200, 204, 200]
selector: *color_selector
home_value03_icon:
name: Home page - Entity State 03 - Icon (Optional)
description: *description_icon_automatic_default
default: []
selector: *selector_icon
home_value03_icon_color:
name: Home page - Entity State 03 - Icon color
description: *description_icon_color
default: [200, 204, 200]
selector: *color_selector
home_value04:
name: Home page - Entity State 04 - Entity (Optional)
description: *description_entity_displayed
default: []
selector: *selector_value_entity
home_value04_label_color:
name: Home page - Entity State 04 - Text color
description: *description_text_color
default: [200, 204, 200]
selector: *color_selector
home_value04_icon:
name: Home page - Entity State 04 - Icon (Optional)
description: *description_icon_automatic_default
default: []
selector: *selector_icon
home_value04_icon_color:
name: Home page - Entity State 04 - Icon color
description: *description_icon_color
default: [200, 204, 200]
selector: *color_selector
home_page_chips:
name: Home page - Chips (optional)
icon: mdi:home
description: Select the entities to be displayed on the top of the Home page.
collapsed: true
input:
chip_font_size:
name: Icon's font size
description: Please select the size of the icons shown on the chips.
default: '7'
selector:
select:
multiple: false
options:
- label: 24px
value: '7'
- label: 32px
value: '8'
chip01:
name: Home page - Chip 01 - Entity (Optional)
description: *description_entity_displayed
default: []
selector: &chip-entity-selector
entity:
filter:
domain:
- alarm_control_panel
- binary_sensor
- climate
- cover
- fan
- input_boolean
- light
- lock
- media_player
- sensor
- switch
chip01_inverted:
name: Home page - Chip 01 - Inverted
description: "If enabled, this chip's display is reversed. It will appear when the linked entity is `off`."
default: false
selector:
boolean:
chip01_icon:
name: Home page - Chip 01 - Icon (Optional)
description: "Specify an icon to show when the entity's state matches. If not set, the entity's default icon is used."
default: []
selector: *selector_icon
chip01_icon_color:
name: Home page - Chip 01 - Icon color
description: *description_icon_color
default: []
selector: *color_selector
chip02:
name: Home page - Chip 02 - Entity (Optional)
description: *description_entity_displayed
default: []
selector: *chip-entity-selector
chip02_inverted:
name: Home page - Chip 02 - Inverted
description: "If enabled, this chip's display is reversed. It will appear when the linked entity is `off`."
default: false
selector:
boolean:
chip02_icon:
name: Home page - Chip 02 - Icon (Optional)
description: "Specify an icon to show when the entity's state matches. If not set, the entity's default icon is used."
default: []
selector: *selector_icon
chip02_icon_color:
name: Home page - Chip 02 - Icon color
description: *description_icon_color
default: []
selector: *color_selector
chip03:
name: Home page - Chip 03 - Entity (Optional)
description: *description_entity_displayed
default: []
selector: *chip-entity-selector
chip03_inverted:
name: Home page - Chip 03 - Inverted
description: "If enabled, this chip's display is reversed. It will appear when the linked entity is `off`."
default: false
selector:
boolean:
chip03_icon:
name: Home page - Chip 03 - Icon (Optional)
description: "Specify an icon to show when the entity's state matches. If not set, the entity's default icon is used."
default: []
selector: *selector_icon
chip03_icon_color:
name: Home page - Chip 03 - Icon color
description: *description_icon_color
default: []
selector: *color_selector
chip04:
name: Home page - Chip 04 - Entity (Optional)
description: *description_entity_displayed
default: []
selector: *chip-entity-selector
chip04_inverted:
name: Home page - Chip 04 - Inverted
description: "If enabled, this chip's display is reversed. It will appear when the linked entity is `off`."
default: false
selector:
boolean:
chip04_icon:
name: Home page - Chip 04 - Icon (Optional)
description: "Specify an icon to show when the entity's state matches. If not set, the entity's default icon is used."
default: []
selector: *selector_icon
chip04_icon_color:
name: Home page - Chip 04 - Icon color
description: *description_icon_color
default: []
selector: *color_selector
chip05:
name: Home page - Chip 05 - Entity (Optional)
description: *description_entity_displayed
default: []
selector: *chip-entity-selector
chip05_inverted:
name: Home page - Chip 05 - Inverted
description: "If enabled, this chip's display is reversed. It will appear when the linked entity is `off`."
default: false
selector:
boolean:
chip05_icon:
name: Home page - Chip 05 - Icon (Optional)
description: "Specify an icon to show when the entity's state matches. If not set, the entity's default icon is used."
default: []
selector: *selector_icon
chip05_icon_color:
name: Home page - Chip 05 - Icon color
description: *description_icon_color
default: []
selector: *color_selector
chip06:
name: Home page - Chip 06 - Entity (Optional)
description: *description_entity_displayed
default: []
selector: *chip-entity-selector
chip06_inverted:
name: Home page - Chip 06 - Inverted
description: "If enabled, this chip's display is reversed. It will appear when the linked entity is `off`."
default: false
selector:
boolean:
chip06_icon:
name: Home page - Chip 06 - Icon (Optional)
description: "Specify an icon to show when the entity's state matches. If not set, the entity's default icon is used."
default: []
selector: *selector_icon
chip06_icon_color:
name: Home page - Chip 06 - Icon color
description: *description_icon_color
default: []
selector: *color_selector
chip07:
name: Home page - Chip 07 - Entity (Optional)
description: *description_entity_displayed
default: []
selector: *chip-entity-selector
chip07_inverted:
name: Home page - Chip 07 - Inverted
description: "If enabled, this chip's display is reversed. It will appear when the linked entity is `off`."
default: false
selector:
boolean:
chip07_icon:
name: Home page - Chip 07 - Icon (Optional)
description: "Specify an icon to show when the entity's state matches. If not set, the entity's default icon is used."
default: []
selector: *selector_icon
chip07_icon_color:
name: Home page - Chip 07 - Icon color
description: *description_icon_color
default: []
selector: *color_selector
home_page_custom_buttons:
name: Home page - Custom buttons (optional)
icon: mdi:home
description: Select the custom buttons for the Home page.
collapsed: true
input:
custom_buttons_font_size:
name: ' '
description: >
# ✅ HOME PAGE - CUSTOM BUTTONS ✅
Please select the size of the icons shown on the custom buttons.
default: '8'
selector:
select:
multiple: false
options:
- label: 24px
value: '7'
- label: 32px
value: '8'
home_custom_button01:
name: Home page - Custom button 1 - Entity (Optional)
description: &description_home_custom_button_entity >
Entity which should be controlled.
*Entities with supported advanced settings will open it's settings page, all other entities will execute the action or toggle when clicked.*
default: []
selector: &selector_home_custom_button_entity
entity:
filter:
domain:
- alarm_control_panel
- automation
- button
- climate
- cover
- fan
- input_boolean
- input_button
- light
- lock
- media_player
- remote
- scene
- script
- switch
home_custom_button01_icon:
name: Home page - Custom button 1 - Icon (Optional)
description: *description_icon_automatic_default
default: []
selector: *selector_icon
home_custom_button01_name:
name: Home Page - Custom Button 1 - Title (Optional)
description: &description_home_custom_button_title >
Define a title for display on the button's detailed page, if applicable.
This title will not appear on the Home page but on the detailed page accessed through this button, where supported.
In the absence of a specified title, the system will default to using the entity's Friendly Name or, failing that, its `entity_id`.
default: ""
selector:
text:
home_custom_button02:
name: Home page - Custom button 2 - Entity (Optional)
description: *description_home_custom_button_entity
default: []
selector: *selector_home_custom_button_entity
home_custom_button02_icon:
name: Home page - Custom button 2 - Icon (Optional)
description: *description_icon_automatic_default
default: []
selector: *selector_icon
home_custom_button02_name:
name: Home Page - Custom Button 2 - Title (Optional)
description: *description_home_custom_button_title
default: ""
selector:
text:
home_custom_button03:
name: Home page - Custom button 3 - Entity (Optional)
description: *description_home_custom_button_entity
default: []
selector: *selector_home_custom_button_entity
home_custom_button03_icon:
name: Home page - Custom button 3 - Icon (Optional)
description: *description_icon_automatic_default
default: []
selector: *selector_icon
home_custom_button03_name:
name: Home Page - Custom Button 3 - Title (Optional)
description: *description_home_custom_button_title