forked from Blackymas/NSPanel_HA_Blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nspanel_blueprint.yaml
7416 lines (6849 loc) · 506 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
#############################################################
##### START - INPUT #####
#############################################################
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 Roadmap can be found here [Roadmap](https://github.com/Blackymas/NSPanel_HA_Blueprint/labels/roadmap)
ℹ️ Version: v.3.3
source_url: https://github.com/Blackymas/NSPanel_HA_Blueprint/blob/main/nspnael_blueprint.yaml
domain: automation
homeassistant:
min_version: 2022.11.1
# yamllint disable rule:line-length
input:
##### MAIN NAME #####
nspanel_name:
name: NSPanel device (REQUIRED)
description: >
*SYSTEM settings*
*Please select the ESPHome device reated to the NSPanel to be controlled by this automation*
default: []
selector:
device:
#filter: # requires 2023.4, so will be implemented later
# - integration: esphome
# model: esp32dev
multiple: false
##### SYSTEM SETTINGS #####
language:
name: Language for NSPanel
description: >
*SYSTEM settings*
*Select the language for your NSPanel*
default: 'ENG'
selector:
select:
mode: dropdown
options:
- label: 'Bulgarian'
value: BGR
- label: 'Czech'
value: CZE
- label: 'Croatian'
value: HRV
- label: 'Danish'
value: DNK
- label: 'Dutch'
value: NLD
- label: 'English'
value: ENG
- label: 'Estonian'
value: EST
- label: 'Finnish'
value: FIN
- label: 'French'
value: FRA
- label: 'German'
value: DEU
- label: 'Greek'
value: GRC
- label: 'Hebrew'
value: HEB
- label: 'Hungarian'
value: HUN
- label: 'Indonesian'
value: IDN
- label: 'Italian'
value: ITA
- label: 'Latvian'
value: LVA
- label: 'Lithuanian'
value: LTU
- label: 'Norwegian'
value: NOR
- label: 'Polish'
value: POL
- label: 'Portuguese'
value: PRT
- label: 'Romanian'
value: ROU
- label: 'Russian'
value: RUS
- label: 'Slovak'
value: SVK
- label: 'Slovene'
value: SVN
- label: 'Spanish'
value: ESP
- label: 'Swedish'
value: SWE
- label: 'Turkish'
value: TUR
- label: 'Ukrainian'
value: UKR
date_format:
name: Date Format
description: >
*SYSTEM settings*
*Select the format for date to display*
default: '%d.%m'
selector:
select:
multiple: false
#mode: dropdown
options:
- label: 'DD.MM (ex. 22.03)'
value: '%d.%m'
- label: 'DD/MM (ex. 22/03)'
value: '%d/%m'
- label: 'D/M (ex. 22/3)'
value: '%-d/%-m'
- label: 'M/D (ex. 3/22)'
value: '%-m/%-d'
time_format:
name: Time Format
description: >
*SYSTEM settings*
*Select the format for time to display*
default: '%H:%M'
selector:
select:
multiple: false
#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'
- 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:
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:
domain:
- sensor
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:
domain:
- sensor
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: '# ✅ SENSOR HOME PAGE ✅'
default: ' '
selector: *placeholder-selector
##### PLACEHOLDER ######################################################################
home_value01:
name: Sensor 01 - ENTITY (Optional)
description: >
*HOME page*
*Entity which should be displayed*
default: []
selector:
entity:
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:
domain:
- sensor
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:
domain:
- sensor
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: '# ✅ CHIPS ✅'
default: ' '
selector: *placeholder-selector
##### PLACEHOLDER ######################################################################
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:
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
##### 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:
domain: climate
climate_optimistic:
name: Climate control optimistic mode - TRUE/FALSE (Optional)
default: true
description: >
*CLIMATE page*
*Depends on your climate device and HA-Integration. If optimisitc mode is **OFF** then changes are made will wait for response from device to update temperature in the display. This can cause delays or jumping values. If **ON** the script update the display immediately but apply changes after closing climate-page*
selector:
boolean:
hotwatercharge:
name: Hot Water Charge Button - ENTITY (Optional)
description: >
*CLIMATE page*
*Choose your switch to turn on/off*
default: []
selector:
entity:
domain:
- switch
- input_boolean
##### 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 ######################################################################
hold_delay:
name: Delay for HW-Button hold in seconds - VALUE
description: >
*SYSTEM settings*
*Time in seconds to detect a hold*'
default: 1.0
selector:
number:
min: 1.0
max: 10.0
step: 1.0
unit_of_measurement: seconds
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 display is offline*
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:
domain:
- light
- switch
- input_boolean
- cover
- automation
- button
- input_button
- scene
- script
- fan
left_button_name:
name: Left hardware button name - LABEL (Optional)
description: >
*HOME page*
*Label which should be displayed (10 characters are supported)*
default: []
selector:
text: {}
left_button_hold_select:
name: Left hardware button hold assignment - VALUE (Optional)
description: >
*SYSTEM settings*
*select what shold 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 display is offline* '
selector:
boolean:
right_button_entity:
name: Right hardware button - ENTITY (Optional)
description: >
*SYSTEM settings*
*Entity which should be switched*'
default: []
selector: *hardware-button-selector
right_button_name:
name: Right hardware button name - LABEL (Optional)
description: >
*HOME page*
*Label which should be displayed (10 characters are supported)*
default: []
selector:
text: {}
right_button_hold_select:
name: Right hardware button hold assignment - VALUE (Optional)
description: >
*SYSTEM settings*
*Select what shold happen on hold*'
default: 'Default'
selector: *hardware-button-hold-selector
right_button_hold_custom_action:
name: Right hardware button custom hold action - VALUE (Optional)
description: >
*SYSTEM settings*
*The action(s) to launch on hold*
default: []
selector:
action:
right_button_color:
name: Right 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
##### Button pages #####
##### Button page 01 #####
##### PLACEHOLDER ######################################################################
placeholder07:
name: ' '
description: '# ✅ BUTTON PAGE 01 ✅'
default: ' '
selector: *placeholder-selector
##### PLACEHOLDER ######################################################################
button_page01_label:
name: Button page 01 name - LABEL (Optional)
description: >
*ButtonPage01*
*Label which should be displayed*
default: []
selector:
text: {}
entity01:
name: Button 01 - ENTITY (Optional)
description: >
*ButtonPage01*
*Entity which should be switched (ONLY light | switch | cover | input_boolean | automation | button | input_button | scene | person | script | binary_sensor | fan | climate)*
default: []
selector: &button-entity-selector
entity:
domain:
- light
- switch
- cover
- input_boolean
- automation
- button
- input_button
- scene
- person
- script
- binary_sensor
- fan
- climate
entity01_name:
name: Button 01 name - LABEL (Optional)
description: >
*ButtonPage01*
*Label which should be displayed (10 characters are supported)*
default: []
selector:
text: {}
entity01_icon:
name: Button 01 - ICON (Optional)
description: >
*ButtonPage01*
*Icon which should be displayed (Default - an icon matching the entity will be set automatically)*
default: []
selector: *icon-selector
entity01_icon_color:
name: Button 01 - ICON COLOR (Optional)
description: >
*ButtonPage01*
*Icon color which should be displayed when button is on*
default: [0, 128, 248] #1055 Blue
selector: *color-selector
entity01_confirm:
name: Confirm execution of the button press - TRUE/FALSE (Optional)
default: false
description: >
*ButtonPage01*
*Ask for confirmation to execute **Button01** action*
selector:
boolean:
entity02:
name: Button 02 - ENTITY (Optional)
description: >
*ButtonPage01*
*Entity which should be switched (ONLY light | switch | cover | input_boolean | automation | button | input_button | scene | person | script | binary_sensor | fan | climate)*
default: []
selector: *button-entity-selector
entity02_name:
name: Button 02 name - LABEL (Optional)
description: >
*ButtonPage01*
*Label which should be displayed (10 characters are supported)*
default: []
selector:
text: {}
entity02_icon:
name: Button 02 - ICON (Optional)
description: >
*ButtonPage01*
*Icon which should be displayed (Default - an icon matching the entity will be set automatically)*
default: []
selector: *icon-selector
entity02_icon_color:
name: Button 02 - ICON COLOR (Optional)
description: >
*ButtonPage01*
*Icon color which should be displayed when button is on*
default: [0, 128, 248] #1055 Blue
selector: *color-selector
entity02_confirm:
name: Confirm execution of the button press - TRUE/FALSE (Optional)
default: false
description: >
*ButtonPage01*
*Ask for confirmation to execute **Button02** action*
selector:
boolean:
entity03:
name: Button 03 - ENTITY (Optional)
description: >
*ButtonPage01*
*Entity which should be switched (ONLY light | switch | cover | input_boolean | automation | button | input_button | scene | person | script | binary_sensor | fan | climate)*
default: []
selector: *button-entity-selector
entity03_name:
name: Button 03 name - LABEL (Optional)
description: >
*ButtonPage01*
*Label which should be displayed (10 characters are supported)*
default: []
selector:
text: {}
entity03_icon:
name: Button 03 - ICON (Optional)
description: >
*ButtonPage01*
*Icon which should be displayed (Default - an icon matching the entity will be set automatically)*
default: []
selector: *icon-selector
entity03_icon_color:
name: Button 03 - ICON COLOR (Optional)
description: >
*ButtonPage01*
*Icon color which should be displayed when button is on*
default: [0, 128, 248] #1055 Blue
selector: *color-selector
entity03_confirm:
name: Confirm execution of the button press - TRUE/FALSE (Optional)
default: false
description: >
*ButtonPage01*
*Ask for confirmation to execute **Button03** action*
selector:
boolean:
entity04:
name: Button 04 - ENTITY (Optional)
description: >
*ButtonPage01*
*Entity which should be switched (ONLY light | switch | cover | input_boolean | automation | button | input_button | scene | person | script | binary_sensor | fan | climate)*
default: []
selector: *button-entity-selector
entity04_name:
name: Button 04 name - LABEL (Optional)
description: >
*ButtonPage01*
*Label which should be displayed (10 characters are supported)*
default: []
selector:
text: {}
entity04_icon:
name: Button 04 - ICON (Optional)
description: >
*ButtonPage01*
*Icon which should be displayed (Default - an icon matching the entity will be set automatically)*
default: []
selector: *icon-selector
entity04_icon_color:
name: Button 04 - ICON COLOR (Optional)
description: >
*ButtonPage01*
*Icon color which should be displayed when button is on*
default: [0, 128, 248] #1055 Blue
selector: *color-selector
entity04_confirm:
name: Confirm execution of the button press - TRUE/FALSE (Optional)
default: false
description: >
*ButtonPage01*
*Ask for confirmation to execute **Button04** action*
selector:
boolean:
entity05:
name: Button 05 - ENTITY (Optional)
description: >
*ButtonPage01*
*Entity which should be switched (ONLY light | switch | cover | input_boolean | automation | button | input_button | scene | person | script | binary_sensor | fan | climate)*
default: []
selector: *button-entity-selector
entity05_name:
name: Button 05 name - LABEL (Optional)