forked from Blackymas/NSPanel_HA_Blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nspanel_blueprint.yaml
9591 lines (8951 loc) · 584 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: >
# Configuration and synchronization NSPanel via Blueprint
This project allows you to configure your complete NSPanel via a Blueprint with UI.
### *That means you dont have to customize any code or change any lines in the code.*
So you have a nice graphical interface where you can build your NSPanel.
And the best thing is, the installation takes only a few minutes.
The goal was to create a version that allows everyone to use the NSPanel fully local without having to deal with programming or reading hours of documentation - *AND YES WE DID IT!!!!* ;)
📕 Full documentation and installation video is available here: [NSPanel Configuration, Setup and HowTo](https://github.com/Blackymas/NSPanel_HA_Blueprint/wiki).
📌 Step by Step - [Setup Video](https://www.youtube.com/watch?v=3afPFg6kUdc)
🚀 How to create "Issues" when I have a problem: [WIKI HowTo](https://github.com/Blackymas/NSPanel_HA_Blueprint/wiki)
⭐ All Feature Requests can be found here: [All Feature Request](https://github.com/Blackymas/NSPanel_HA_Blueprint/labels/new%20feature%20request)
🎉 Roadmap can be found here: [Roadmap](https://github.com/Blackymas/NSPanel_HA_Blueprint/labels/roadmap)
ℹ️ Version: v4.1.4
source_url: https://github.com/Blackymas/NSPanel_HA_Blueprint/blob/main/nspanel_blueprint.yaml
domain: automation
homeassistant:
min_version: 2023.9.0
# yamllint disable rule:line-length
input:
##### MAIN NAME #####
nspanel_name:
name: NSPanel device (REQUIRED)
description: >
*SYSTEM settings*
*Please select the ESPHome device related to the NSPanel to be controlled by this automation*
default: []
selector:
device:
filter:
- integration: esphome
model: esp32dev
multiple: false
##### SYSTEM SETTINGS #####
language:
name: Language for NSPanel
description: >
*SYSTEM settings*
*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, lv, lt, nb, pl, pt, ro, ru, sk, sl, es, sv, tr, uk]
date_format:
name: Date Format
description: >
*SYSTEM settings*
*Select the format for date to display*
default: '%A, %d.%m'
selector:
select:
multiple: false
custom_value: true
#mode: dropdown
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'
time_format:
name: Time Format
description: >
*SYSTEM settings*
*Select the format for time to display*
default: '%H:%M'
selector:
select:
multiple: false
custom_value: true
#mode: dropdown
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'
delay:
name: Delay to avoid synchronization problem
description: >
*SYSTEM settings*
*Synchronization issues may occur due to the **NETWORK / WLAN**. To avoid this, please select the delay (milliseconds) between each instruction sent to the panel*
default: '1'
selector:
number:
min: 0
max: 100
##### WEATHER - Page Home / Weather 01-04 #####
##### PLACEHOLDER ######################################################################
placeholder01:
name: ' '
description: '# ✅ WEATHER AND TEMPERATURE ✅'
default: ' '
selector: &placeholder-selector
select:
options:
- ' '
##### PLACEHOLDER ######################################################################
weather_entity:
name: Weather entity from HA
description: >
*SYSTEM settings*
*Select your weather entity.*
default: []
selector:
entity:
filter:
domain:
- weather
##### Page Home #####
##### Temperature - Page Home #####
outdoortemp:
name: Outdoor Temperature Sensor (Optional)
description: >
*HOME page*
*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: Outdoor Temperature Sensor - LABEL COLOR (Optional)
description: >
*HOME page*
*Label color which should be displayed*
default: [255, 255, 255] #65535 White
selector: &color-selector
color_rgb:
indoortemp:
name: Indoor Temperature Sensor - ENTITY (Optional)
description: >
*HOME page*
*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. So everyone can adjust the sensor exactly*
default: []
selector: *entity_temp_sensor-selector
home_indoor_temp_icon:
name: Indoor Temperature Sensor - ICON (Optional)
description: >
*HOME page*
*Icon which should be displayed (Default mdi:thermometer)*
default: mdi:thermometer #E50E
selector: &icon-selector
icon:
home_indoor_temp_icon_color:
name: Indoor Temperature Sensor - ICON COLOR (Optional)
description: >
*HOME page*
*Icon color which should be displayed*
default: [255, 255, 255] #65535 White
selector: *color-selector
home_indoor_temp_label_color:
name: Indoor Temperature Sensor - LABEL COLOR (Optional)
description: >
*HOME page*
*Label color which should be displayed*
default: [255, 255, 255] #65535 White
selector: *color-selector
##### Sensors - Page Home #####
##### PLACEHOLDER ######################################################################
placeholder02:
name: ' '
description: '# ✅ HOME PAGE - SENSORS ✅'
default: ' '
selector: *placeholder-selector
##### PLACEHOLDER ######################################################################
home_value01:
name: Sensor 01 - ENTITY (Optional)
description: >
*HOME page*
*Entity which should be displayed*
default: []
selector: &entity_sensor-selector
entity:
filter:
domain:
- sensor
home_value01_icon:
name: Sensor 01 - ICON (Optional)
description: >
*HOME page*
*Icon which should be displayed (if not set, it would be used an icon from attributes, if available, or no icon is shown)*
default: []
selector: *icon-selector
home_value01_icon_color:
name: Sensor 01 - ICON COLOR (Optional)
description: >
*HOME page*
*Icon color which should be displayed*
default: [200, 204, 200] #52857 Grey super light
selector: *color-selector
home_value01_label_color:
name: Sensor 01 - LABEL COLOR (Optional)
description: >
*HOME page*
*Label color which should be displayed*
default: [200, 204, 200] #52857 Grey super light
selector: *color-selector
home_value02:
name: Sensor 02 - ENTITY (Optional)
description: >
*HOME page*
*Entity which should be displayed*
default: []
selector: *entity_sensor-selector
home_value02_icon:
name: Sensor 02 - ICON (Optional)
description: >
*HOME page*
*Icon which should be displayed (if not set, it would be used an icon from attributes, if available, or no icon is shown)*
default: []
selector: *icon-selector
home_value02_icon_color:
name: Sensor 02 - ICON COLOR (Optional)
description: >
*HOME page*
*Icon color which should be displayed*
default: [200, 204, 200] #52857 Grey super light
selector: *color-selector
home_value02_label_color:
name: Sensor 02 - LABEL COLOR (Optional)
description: >
*HOME page*
*Label color which should be displayed*
default: [200, 204, 200] #52857 Grey super light
selector: *color-selector
home_value03:
name: Sensor 03 - ENTITY (Optional)
description: >
*HOME page*
*Entity which should be displayed*
default: []
selector: *entity_sensor-selector
home_value03_icon:
name: Sensor 03 - ICON (Optional)
description: >
*HOME page*
*Icon which should be displayed (if not set, it would be used an icon from attributes, if available, or no icon is shown)*
default: []
selector: *icon-selector
home_value03_icon_color:
name: Sensor 03 - ICON COLOR (Optional)
description: >
*HOME page*
*Icon color which should be displayed*
default: [200, 204, 200] #52857 Grey super light
selector: *color-selector
home_value03_label_color:
name: Sensor 03 - LABEL COLOR (Optional)
description: >
*HOME page*
*Label color which should be displayed*
default: [200, 204, 200] #52857 Grey super light
selector: *color-selector
##### Chips - Page Home #####
##### PLACEHOLDER ######################################################################
placeholder03:
name: ' '
description: '# ✅ HOME PAGE - CHIPS ✅'
default: ' '
selector: *placeholder-selector
##### PLACEHOLDER ######################################################################
chip_font_size:
name: Chip font size
description: >
*HOME page*
*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: Chip 01 - ENTITY (Optional)
description: >
*HOME page*
*Entity which should be displayed (ONLY light | switch | binary_sensor | sensor | with state ON/OFF)*
default: []
selector: &chip-entity-selector
entity:
filter:
domain:
- binary_sensor
- input_boolean
- light
- sensor
- switch
chip01_icon:
name: Chip 01 - ICON (Optional)
description: >
*HOME page*
*Icon which should be displayed when state ON (if not set, no icon is shown)*
default: []
selector: *icon-selector
chip01_icon_color:
name: Chip 01 - ICON COLOR (Optional)
description: >
*HOME page*
*Icon color which should be displayed*
default: [128, 128, 128] #33808 Grey light
selector: *color-selector
chip02:
name: Chip 02 - ENTITY (Optional)
description: >
*HOME page*
*Entity which should be displayed (ONLY light | switch | binary_sensor | sensor | with state ON/OFF)*
default: []
selector: *chip-entity-selector
chip02_icon:
name: Chip 02 - ICON (Optional)
description: >
*HOME page*
*Icon which should be displayed when state ON (if not set, no icon is shown)*
default: []
selector: *icon-selector
chip02_icon_color:
name: Chip 02 - ICON COLOR (Optional)
description: >
*HOME page*
*Icon color which should be displayed*
default: [128, 128, 128] #33808 Grey light
selector: *color-selector
chip03:
name: Chip 03 - ENTITY (Optional)
description: >
*HOME page*
*Entity which should be displayed (ONLY light | switch | binary_sensor | sensor | with state ON/OFF)*
default: []
selector: *chip-entity-selector
chip03_icon:
name: Chip 03 - ICON (Optional)
description: >
*HOME page*
*Icon which should be displayed when state ON (if not set, no icon is shown)*
default: []
selector: *icon-selector
chip03_icon_color:
name: Chip 03 - ICON COLOR (Optional)
description: >
*HOME page*
*Icon color which should be displayed*
default: [128, 128, 128] #33808 Grey light
selector: *color-selector
chip04:
name: Chip 04 - ENTITY (Optional)
description: >
*HOME page*
*Entity which should be displayed (ONLY light | switch | binary_sensor | sensor | with state ON/OFF)*
default: []
selector: *chip-entity-selector
chip04_icon:
name: Chip 04 - ICON (Optional)
description: >
*HOME page*
*Icon which should be displayed when state ON (if not set, no icon is shown)*
default: []
selector: *icon-selector
chip04_icon_color:
name: Chip 04 - ICON COLOR (Optional)
description: >
*HOME page*
*Icon color which should be displayed*
default: [128, 128, 128] #33808 Grey light
selector: *color-selector
chip05:
name: Chip 05 - ENTITY (Optional)
description: >
*HOME page*
*Entity which should be displayed (ONLY light | switch | binary_sensor | sensor | with state ON/OFF)*
default: []
selector: *chip-entity-selector
chip05_icon:
name: Chip 05 - ICON (Optional)
description: >
*HOME page*
*Icon which should be displayed when state ON (if not set, no icon is shown)*
default: []
selector: *icon-selector
chip05_icon_color:
name: Chip 05 - ICON COLOR (Optional)
description: >
*HOME page*
*Icon color which should be displayed*
default: [128, 128, 128] #33808 Grey light
selector: *color-selector
chip06:
name: Chip 06 - ENTITY (Optional)
description: >
*HOME page*
*Entity which should be displayed (ONLY light | switch | binary_sensor | sensor | with state ON/OFF)*
default: []
selector: *chip-entity-selector
chip06_icon:
name: Chip 06 - ICON (Optional)
description: >
*HOME page*
*Icon which should be displayed when state ON (if not set, no icon is shown)*
default: []
selector: *icon-selector
chip06_icon_color:
name: Chip 06 - ICON COLOR (Optional)
description: >
*HOME page*
*Icon color which should be displayed*
default: [128, 128, 128] #33808 Grey light
selector: *color-selector
chip07:
name: Chip 07 - ENTITY (Optional)
description: >
*HOME page*
*Entity which should be displayed (ONLY light | switch | binary_sensor | sensor | with state ON/OFF)*
default: []
selector: *chip-entity-selector
chip07_icon:
name: Chip 07 - ICON (Optional)
description: >
*HOME page*
*Icon which should be displayed when state ON (if not set, no icon is shown)*
default: []
selector: *icon-selector
chip07_icon_color:
name: Chip 07 - ICON COLOR (Optional)
description: >
*HOME page*
*Icon color which should be displayed*
default: [128, 128, 128] #33808 Grey light
selector: *color-selector
## Custom buttons - Page Home
##### PLACEHOLDER ######################################################################
placeholder18:
name: ' '
description: '# ✅ HOME PAGE - CUSTOM BUTTONS ✅'
default: ' '
selector: *placeholder-selector
##### PLACEHOLDER ######################################################################
## Page Home - Custom button 01
home_custom_button01:
name: Custom button 01 - ENTITY (Optional)
description: >
*HOME page*
*Entity which should be switched (ONLY light | switch | cover | input_boolean | automation | button | input_button | scene | script | fan | climate | media_player)*
*Entities with supported advanced settings will open it's settings page, all other entities will execute the action or toggle when clicked.*
default: []
selector: &home-custom-button-entity-selector
entity:
filter:
domain:
- automation
- button
- climate
- cover
- fan
- input_boolean
- input_button
- light
- media_player
- scene
- script
- switch
home_custom_button01_icon:
name: Custom button 01 - ICON (Optional)
description: >
*HOME page*
*Icon which should be displayed (Default - an icon matching the entity will be set automatically)*
default: []
selector: *icon-selector
## Page Home - Custom button 02
home_custom_button02:
name: Custom button 02 - ENTITY (Optional)
description: >
*HOME page*
*Entity which should be switched (ONLY light | switch | cover | input_boolean | automation | button | input_button | scene | script | fan | climate | media_player)*
*Entities with supported advanced settings will open it's settings page, all other entities will execute the action or toggle when clicked.*
default: []
selector: *home-custom-button-entity-selector
home_custom_button02_icon:
name: Custom button 02 - ICON (Optional)
description: >
*HOME page*
*Icon which should be displayed (Default - an icon matching the entity will be set automatically)*
default: []
selector: *icon-selector
## Page Home - Custom button 03
home_custom_button03:
name: Custom button 03 - ENTITY (Optional)
description: >
*HOME page*
*Entity which should be switched (ONLY light | switch | cover | input_boolean | automation | button | input_button | scene | script | fan | climate | media_player)*
*Entities with supported advanced settings will open it's settings page, all other entities will execute the action or toggle when clicked.*
default: []
selector: *home-custom-button-entity-selector
home_custom_button03_icon:
name: Custom button 03 - ICON (Optional)
description: >
*HOME page*
*Icon which should be displayed (Default - an icon matching the entity will be set automatically)*
default: []
selector: *icon-selector
##### Alarm Control Panel - Page Alarm
##### PLACEHOLDER ######################################################################
placeholder17:
name: ' '
description: '# ✅ ALARM CONTROL PANEL ✅'
default: ' '
selector: *placeholder-selector
##### PLACEHOLDER ######################################################################
alarm:
name: Alarm Control Panel to control from Home page - ENTITY (Optional)
description: >
*ALARM page*
*If an entity is selected, the **"Alarm page"** is activated and enabled.
default: []
selector:
entity:
filter:
domain: alarm_control_panel
##### Climate - Page Climate #####
##### PLACEHOLDER ######################################################################
placeholder04:
name: ' '
description: '# ✅ CLIMATE ✅'
default: ' '
selector: *placeholder-selector
##### PLACEHOLDER ######################################################################
climate:
name: Climate to control - ENTITY (Optional)
description: >
*CLIMATE page*
*If an entity is selected, the **"Thermostat page"** is activated and enabled. If you have **"Underfloor Heating System"** and want to switch it via the relay, you must create a separate climate in HA. See HowTo*
default: []
selector:
entity:
filter:
domain: climate
## Climate page - Custom buttons
## Climate page - Custom button 01
climate_button08:
name: Custom button 01 - ENTITY (Optional)
description: >
*CLIMATE page*
*Entity which should be switched (ONLY automation | binary_sensor | button | cover | fan | input_boolean | input_button | light | person | scene | script | switch)*
default: []
selector: &climate-custom-button-entity-selector
entity:
filter:
domain:
- automation
- binary_sensor
- button
- cover
- fan
- input_boolean
- input_button
- light
- person
- scene
- script
- switch
climate_button08_icon:
name: Custom button 01 - ICON (Optional)
description: >
*CLIMATE page*
*Icon which should be displayed (Default - an icon matching the entity will be set automatically)*
default: []
selector: *icon-selector
climate_button08_icon_color:
name: Custom button 01 - ICON COLOR (Optional)
description: >
*CLIMATE page*
*Icon color which should be displayed when button is on*
default: [0, 128, 248] #1055 Blue
selector: *color-selector
climate_button08_hold_custom_action:
name: Custom button 01 - Hold action (Optional)
description: >
*CLIMATE page*
*The action(s) to launch on hold*
default: []
selector:
action:
## Climate page - Custom button 02
climate_button09:
name: Custom button 02 - ENTITY (Optional)
description: >
*CLIMATE page*
*Entity which should be switched (ONLY automation | binary_sensor | button | cover | fan | input_boolean | input_button | light | person | scene | script | switch)*
default: []
selector: *climate-custom-button-entity-selector
climate_button09_icon:
name: Custom button 02 - ICON (Optional)
description: >
*CLIMATE page*
*Icon which should be displayed (Default - an icon matching the entity will be set automatically)*
default: []
selector: *icon-selector
climate_button09_icon_color:
name: Custom button 02 - ICON COLOR (Optional)
description: >
*CLIMATE page*
*Icon color which should be displayed when button is on*
default: [0, 128, 248] #1055 Blue
selector: *color-selector
climate_button09_hold_custom_action:
name: Custom button 02 - Hold action (Optional)
description: >
*CLIMATE page*
*The action(s) to launch on hold*
default: []
selector:
action:
## Climate page - Sensors
## Climate page - Sensor 01
climate_value01:
name: Sensor 01 - ENTITY (Optional)
description: >
*CLIMATE page*
*Entity which should be controlled*
default: []
selector: *entity_sensor-selector
climate_value01_icon:
name: Sensor 01 - ICON (Optional)
description: >
*CLIMATE page*
*Icon which should be displayed (if not set, it would be used an icon from attributes, if available, or no icon is shown)*
default: []
selector: *icon-selector
climate_value01_icon_color:
name: Sensor 01 - ICON COLOR (Optional)
description: >
*CLIMATE page*
*Icon color which should be displayed*
default: [200, 204, 200] #52857 Grey super light
selector: *color-selector
climate_value01_label_color:
name: Sensor 01 - LABEL COLOR (Optional)
description: >
*CLIMATE page*
*Label color which should be displayed*
default: [200, 204, 200] #52857 Grey super light
selector: *color-selector
## Climate page - Sensor 02
climate_value02:
name: Sensor 02 - ENTITY (Optional)
description: >
*CLIMATE page*
*Entity which should be displayed*
default: []
selector: *entity_sensor-selector
climate_value02_icon:
name: Sensor 02 - ICON (Optional)
description: >
*CLIMATE page*
*Icon which should be displayed (if not set, it would be used an icon from attributes, if available, or no icon is shown)*
default: []
selector: *icon-selector
climate_value02_icon_color:
name: Sensor 02 - ICON COLOR (Optional)
description: >
*CLIMATE page*
*Icon color which should be displayed*
default: [200, 204, 200] #52857 Grey super light
selector: *color-selector
climate_value02_label_color:
name: Sensor 02 - LABEL COLOR (Optional)
description: >
*CLIMATE page*
*Label color which should be displayed*
default: [200, 204, 200] #52857 Grey super light
selector: *color-selector
## Climate page - Sensor 03
climate_value03:
name: Sensor 03 - ENTITY (Optional)
description: >
*CLIMATE page*
*Entity which should be displayed*
default: []
selector: *entity_sensor-selector
climate_value03_icon:
name: Sensor 03 - ICON (Optional)
description: >
*CLIMATE page*
*Icon which should be displayed (if not set, it would be used an icon from attributes, if available, or no icon is shown)*
default: []
selector: *icon-selector
climate_value03_icon_color:
name: Sensor 03 - ICON COLOR (Optional)
description: >
*CLIMATE page*
*Icon color which should be displayed*
default: [200, 204, 200] #52857 Grey super light
selector: *color-selector
climate_value03_label_color:
name: Sensor 03 - LABEL COLOR (Optional)
description: >
*CLIMATE page*
*Label color which should be displayed*
default: [200, 204, 200] #52857 Grey super light
selector: *color-selector
## Climate page - Sensor 04
climate_value04:
name: Sensor 04 - ENTITY (Optional)
description: >
*CLIMATE page*
*Entity which should be displayed*
default: []
selector: *entity_sensor-selector
climate_value04_icon:
name: Sensor 04 - ICON (Optional)
description: >
*CLIMATE page*
*Icon which should be displayed (if not set, it would be used an icon from attributes, if available, or no icon is shown)*
default: []
selector: *icon-selector
climate_value04_icon_color:
name: Sensor 04 - ICON COLOR (Optional)
description: >
*CLIMATE page*
*Icon color which should be displayed*
default: [200, 204, 200] #52857 Grey super light
selector: *color-selector
climate_value04_label_color:
name: Sensor 04 - LABEL COLOR (Optional)
description: >
*CLIMATE page*
*Label color which should be displayed*
default: [200, 204, 200] #52857 Grey super light
selector: *color-selector
##### QR Code - Page Home/QR Code #####
##### PLACEHOLDER ######################################################################
placeholder05:
name: ' '
description: '# ✅ QR CODE ✅'
default: ' '
selector: *placeholder-selector
##### PLACEHOLDER ######################################################################
qrcode_enabled:
name: Activate QR Code - TRUE/FALSE (Optional)
default: false
description: >
*HOME page*
*activate QR Code page and QR Code Button on the home page*
selector:
boolean:
qrcode_label:
name: QR Code page name - LABEL (Optional)
description: >
*QRCODE page*
*Label which should be displayed*
default: []
selector:
text: {}
qrcode_value:
name: QR Code content - VALUE (Optional)
description: >
*QRCODE page*
*Value you want to display as QR code*
default: []
selector:
text: {}
home_button05_icon:
name: QR Code - ICON (Optional)
description: >
*HOME page*
*Icon which should be displayed (Default mdi:qrcode-scan)*
default: mdi:qrcode-scan #E432
selector: *icon-selector
home_button05_icon_color:
name: QR Code - ICON COLOR (Optional)
description: >
*HOME page*
*Icon color which should be displayed (default color is set)*
default: [200, 204, 200] #52857 Grey super light
selector: *color-selector
##### Page Home - Hardware Buttons #####
##### PLACEHOLDER ######################################################################
placeholder06:
name: ' '
description: '# ✅ HARDWARE BUTTONS ✅'
default: ' '
selector: *placeholder-selector
##### PLACEHOLDER ######################################################################
relay_1_local_fallback:
name: Activate relay 1 local fallback - TRUE/FALSE (Optional)
default: false
description: >
*SYSTEM settings*
*activate this to use left button to toggle relay 1 if the panel is offline*
*When button left is using the entity related to relay 1 the processing will always be local, even if fallback is disabled.*
selector:
boolean:
left_button_entity:
name: Left hardware button - ENTITY (Optional)
description: >
*SYSTEM settings*
*Entity which should be switched*
default: []
selector: &hardware-button-selector
entity:
filter:
domain:
- light
- switch
- input_boolean
- cover
- automation
- button
- input_button
- scene
- script
- fan
- media_player
left_button_name:
name: Left hardware button name - LABEL (Optional)
description: >
*HOME page*
*Label which should be displayed (10 characters are supported)*
Note: This label is not visible on the US landscape model.
default: []
selector:
text: {}
left_button_hold_select:
name: Left hardware button hold assignment - VALUE (Optional)
description: >
*SYSTEM settings*
*Select what should happen on hold*
default: 'Default'
selector: &hardware-button-hold-selector
select:
options:
- Default
- Custom Action
left_button_hold_custom_action:
name: Left hardware button custom hold action - VALUE (Optional)
description: >
*SYSTEM settings*
*The action(s) to launch on hold*
default: []
selector:
action:
left_button_color:
name: Left hardware button - LABEL COLOR (Optional)
description: >
*HOME page*
*LABEL color which should be displayed*
default: [200, 204, 200] #52857 Grey super light
selector: *color-selector
relay_2_local_fallback:
name: Activate relay 2 local fallback - TRUE/FALSE (Optional)
default: false
description: >
*SYSTEM settings*
*activate this to use right button to toggle relay 2 if the panel is offline*