forked from aelsenaar/com.popp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
2599 lines (2596 loc) · 64.1 KB
/
app.json
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
{
"id": "com.popp",
"name": {
"en": "PoPP EU Z-Wave Products",
"nl": "PoPP EU Z-Wave Producten"
},
"description": {
"en": "PoPP EU Z-Wave products support for Homey @ Athom",
"nl": "PoPP EU Z-Wave product ondersteuning voor Homey @ Athom"
},
"category": [
"appliances",
"lights",
"security",
"climate"
],
"images": {
"large": "/assets/images/large.jpg",
"small": "/assets/images/small.jpg"
},
"version": "1.1.7",
"compatibility": ">=1.3.1",
"author": {
"name": "Marco Ruiter",
"email": "[email protected]"
},
"capabilities": {
"measure_dewpoint": {
"type": "number",
"title": {
"en": "DewPoint",
"nl": "Dauwpunt"
},
"units": {
"en": "C"
},
"desc": {
"en": "Celius (C)",
"nl": "Celius (C)"
},
"chartType": "stepLine",
"decimals": 1,
"getable": true,
"setable": false
},
"alarm_rain": {
"type": "number",
"title": {
"en": "Rain Alarm",
"nl": "Regen Alarm"
},
"units": {
"en": "rain_status"
},
"desc": {
"en": "Rain Alarm",
"nl": "Regen Alarm"
},
"min": 0,
"max": 3,
"step": 1,
"getable": true,
"setable": false
}
},
"drivers": [
{
"id": "005107",
"mobile": {
"components":[
{
"id": "icon",
"capabilities": ["onoff"]
},
{
"id": "toggle",
"capabilities": ["onoff"],
"options": { "showTitle": true }
},
{
"id": "battery",
"capabilities": ["measure_battery" ],
"options": { "showTitle": true }
},
{
"id": "sensor",
"capabilities": [
"measure_temperature",
"alarm_tamper",
"alarm_battery"
]
}
]
},
"name": {
"en": "Solar Outdoor Siren",
"nl": "Solar Buiten Sirene"
},
"zwave": {
"manufacturerId": 340,
"productTypeId": 4,
"productId": 2,
"learnmode": {
"image": "/drivers/005107/assets/wakeup.svg",
"instruction": {
"en": "1. Open the case and turn on the power switch 2. Remove the metal mounting plate from the device. 3. Turn your controller into inclusion mode with a short single click on the internal inclusion button.",
"nl": "1. Open de behuizing en zet de sirenen aan met de schakelaar 2. Verwijder de metalen montageplaat van het apparaat. 3. Zet uw controller in inclusion mode en geef een korte enkele klik op de interne knop bij de schakelaar voor inclusion."
}
},
"associationGroups": [ 1 ],
"defaultConfiguration": [
{
"id": 1,
"size": 1,
"value": 1
},
{
"id": 5,
"size": 1,
"value": 1
},
{
"id": 6,
"size": 1,
"value": 0
}
]
},
"class": "other",
"capabilities": [ "onoff","alarm_tamper","measure_battery","measure_temperature","alarm_battery" ],
"images": {
"large": "/drivers/005107/assets/images/large.jpg",
"small": "/drivers/005107/assets/images/small.jpg"
},
"settings": [
{
"id": "siren_trigger_mode",
"type": "dropdown",
"values": [
{
"id": "0",
"label": {
"en": "Siren triggers when removed from holster. Must be turned off",
"nl": "Sirene gaat af zodra deze uit holster wordt genomen. Moet handmatig worden uitgezet"
}
},
{
"id": "1",
"label": {
"en": "Siren triggers when removed from holster. Turns off when placed back (standard)",
"nl": "Sirene gaat af zodra deze uit holster wordt genomen. Gaat uit bij terugplaatsing (standaard)"
}
},
{
"id": "2",
"label": {
"en": "Siren does not triggers when removed from holster. (Service Mode)",
"nl": "Sirene gaat niet af wanneer uit holster genomen. (Service Mode)"
}
}
],
"value": "1",
"label": {
"en": "Sabotage alarm setting",
"nl": "Sabotage alarm setting"
},
"hint": {
"en": "Change the way how the siren reacts when pulled of the wall",
"nl": "Aanpassen hoe de sirene reageerd als hij uit zijn holster wordt gehaald"
}
},
{
"id": "siren_alarm_mode",
"type": "dropdown",
"values": [
{
"id": "0",
"label": {
"en": "When Alarm only make sound",
"nl": "Bij Alarm alleen geluid"
}
},
{
"id": "1",
"label": {
"en": "When Alarm only blink lights (standard)",
"nl": "Bij Alarm alleen licht signalering (stanaard)"
}
},
{
"id": "2",
"label": {
"en": "When Alarm make sound an light",
"nl": "Bij Alarm zowel geluid als licht signalering"
}
}
],
"label": {
"en": "Alarm mode",
"nl": "Alarm mode"
},
"value": "1",
"hint": {
"en": "Change the way the alarm will go off",
"nl": "Pas aan hoe het alarm af gaat"
}
},
{
"id": "siren_auto_off",
"type": "number",
"attr": {
"min": 0,
"max": 30
},
"value": 0,
"label": {
"en": "Siren Auto Turnoff time",
"nl": "Automatische uitschakel tijd van sirene"
},
"hint": {
"en": "The amount of time before siren auto stops in minutes. (default: 0-UIT, range: 1 - 30)",
"nl": "De tijd dat de sirene afgaat in minuten voordat hij vanzelf uitgaat. (default: 0-UIT, range: 1 - 30)"
}
},
{
"id": "siren_temp_correction",
"value": 0,
"type": "number",
"label": {
"en": "Temperature Adjustment",
"nl": "Temperatuur Correctie"
},
"hint": {
"en": "Temperature correction. The given value changes the displayed temperature by 0.1C (-127 to 127)",
"nl": "Temperatuur correctie. De gegeven waarde verandert de weergegeven temperatuur met 0.1C (-127 tot 127)"
},
"attr": {
"min": 0,
"max": 255
}
},
{
"id": "siren_report_unsolicited",
"value": 10,
"label": {
"en": "Send unsolicited Temperature Report",
"nl": "Het sturen van ongevraagde Temperatuur Report"
},
"hint": {
"en": "Temperature Threshold to send unsolicited Temperature Update. 10= 1 Celcius",
"nl": "Temperature Threshold om ongevraagde temperatuur update te sturen. 10 = 1 Celsius"
},
"type": "number",
"attr": {
"min": 0,
"max": 255
}
},
{
"id": "siren_unsolicited_time",
"value": 15,
"label": {
"en": "Send unsolicited Temperature Report periodically after (N) wake up",
"nl": "Het sturen van ongevraagde Temperatuur Rapport periodiek na (N) wakker worden"
},
"hint": {
"en": "If the value is set, after N wake up number (measurement is every 4 minutes) the temperature report will be sent. By default it is 15 = every 1 hour",
"nl": "Als de waarde is ingesteld, nadat N wake up nummer (meting elke 4 minuten) wordt het temperatuur rapport verzonden. Standaard is 15 = elk 1 uur"
},
"type": "number",
"attr": {
"min": 0,
"max": 65535
}
}
]
},
{
"id": "004001",
"name": {
"en": "Smoke Detector and Siren",
"nl": "Rook Detector en Sirene"
},
"mobile": {
"components":[
{
"id": "icon",
"capabilities": ["onoff"]
},
{
"id": "toggle",
"capabilities": ["onoff"],
"options": { "showTitle": true }
},
{
"id": "battery",
"capabilities": ["measure_battery" ],
"options": { "showTitle": true }
},
{
"id": "sensor",
"capabilities": [ "alarm_smoke", "alarm_tamper", "alarm_battery" ]
}
]
},
"zwave": {
"manufacturerId": [ 340 ],
"productTypeId": [ 256 ],
"productId": [ 513 ],
"learnmode": {
"instruction": {
"en": "To Include, hit the little button on the wireless module for 1 second",
"nl": "Voor opname in Z-Wave netwerk 1 seconden op het kleine knopje drukken"
}
},
"associationGroups": [ 1, 2, 3 ],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "Z-Wave Plus Lifeline"
}
},
"2": {
"hint": {
"en": "Alarm Reports"
}
},
"3": {
"hint": {
"en": "Switch Command when Alarm"
}
}
}
},
"class": "other",
"capabilities": [ "onoff","alarm_smoke","alarm_tamper","measure_battery","alarm_battery" ],
"images": {
"large": "/drivers/004001/assets/images/large.jpg",
"small": "/drivers/004001/assets/images/small.jpg"
},
"settings": [
{
"id": 1,
"value": 10,
"label": {
"en": "Siren alarm sequence interval",
"nl": "Sirene alarm opeenvolging interval"
},
"hint": {
"en": "The additional siren is creating a different acoustic signal differentiate from the smoke alarm. This sound is partly on and partly off. This parameter defines the total length of the interval in seconds.",
"nl": "De extra sirene maakt een ander akoestisch signaal te onderscheiden van de rookmelder. Dit geluid is deels op en deels uit. Deze parameter definieert de totale lengte van het interval in seconden."
},
"type": "number"
},
{
"id": 2,
"value": 8,
"label": {
"en": "Siren alarm tone length",
"nl": "Sirene alarmtoon lengte"
},
"hint": {
"en": "The additional siren is creating a different acoustic signal differentiate from the smoke alarm. This sound is partly on and partly off. This parameter defines the total length of the sound versus silence within this interval.",
"nl": "De extra sirene maakt een ander akoestisch signaal te onderscheiden van de rookmelder. Dit geluid is deels op en deels uit. Deze parameter definieert de totale lengte van het geluid versus stilte binnen dit interval."
},
"type": "number"
},
{
"id": 3,
"value": 99,
"label": {
"en": "Value of BASIC On-Command",
"nl": "Waarde van Basic On-Commando"
},
"hint": {
"en": "This defines what command is sent into association group 2",
"nl": "Dit definieerd welk commando wordt verzonden naar association group 2"
},
"type": "number"
},
{
"id": 4,
"value": 0,
"label": {
"en": "Value of BASIC Off-Command",
"nl": "Waarde van Basic Off-Commando"
},
"hint": {
"en": "This defines what command is sent into association group 2",
"nl": "Dit definieerd welk commando wordt verzonden naar association group 2"
},
"type": "number"
}
]
},
{
"id": "009402",
"name": {
"en": "10 Year Smoke Detector and Siren",
"nl": "10 Year Smoke Detector and Siren"
},
"mobile": {
"components":[
{
"id": "icon",
"capabilities": ["onoff"]
},
{
"id": "toggle",
"capabilities": ["onoff"],
"options": { "showTitle": true }
},
{
"id": "battery",
"capabilities": ["measure_battery" ],
"options": { "showTitle": true }
},
{
"id": "sensor",
"capabilities": [ "alarm_smoke", "alarm_tamper", "alarm_battery" ]
}
]
},
"zwave": {
"manufacturerId": [340],
"productTypeId": [4],
"productId": [4],
"learnmode": {
"instruction": {
"en": "To include the device start the inclusion on your controller and then hit the little button on the wireless module for 1 second",
"nl": "Om het apparaat op te nemen start het inclusion proces op uw controller en druk dan de kleine knop op de draadloze module gedurende 1 seconde"
}
},
"associationGroups": [ 1, 2, 3 ],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "Z-Wave Plus Lifeline",
"nl": "Z-Wave Plus Lifeline"
}
},
"2": {
"hint": {
"en": "Alarm Reports. All devices in this group will receive Alarm notifications (Smoke , Battery Low, Tamper)",
"nl": "Alarmrapporten. Alle apparaten in deze groep ontvangen alarmmeldingen (Rook, Lage Accu, Sabotage"
}
},
"3": {
"hint": {
"en": "Switching Command. All devices in this group will receive a BASIC SET command on Smoke Alarms. Configuration parameter 3 and 4 will define when ON and when OFF is sent.",
"nl": "Switching Command. Alle apparaten in deze groep krijgen een BASIC SET commando op smoke alarms. Configuratieparameters 3 en 4 zullen bepalen wanneer ON en wanneer OFF is verzonden."
}
}
}
},
"defaultConfiguration": [
{
"id": 1,
"size": 1,
"value": 10
},
{
"id": 2,
"size": 1,
"value": 8
},
{
"id": 3,
"size": 1,
"value": 99
},
{
"id": 3,
"size": 1,
"value": 0
}
],
"class": "other",
"capabilities": [ "onoff","alarm_smoke","alarm_tamper","measure_battery","alarm_battery" ],
"images": {
"large": "/drivers/009402/assets/images/large.jpg",
"small": "/drivers/009402/assets/images/small.jpg"
},
"settings": [
{
"id": 1,
"value": 10,
"label": {
"en": "Siren alarm sequence interval",
"nl": "Siren alarm sequence interval"
},
"hint": {
"en": "The additional siren is creating a different acoustic signal differentiate from the smoke alarm. This sound is partly on and partly off. This parameter defines the total length of the interval in seconds.",
"nl": "De extra sirene zorgt voor een ander akoestisch signaal dat onderscheidt van het rookalarm. Dit geluid is gedeeltelijk aan en gedeeltelijk af. Deze parameter definieert de totale lengte van het interval in seconden."
},
"_size": 1,
"type": "number"
},
{
"id": 2,
"value": 8,
"label": {
"en": "Siren alarm tone length",
"nl": "Siren alarm toon lengte"
},
"hint": {
"en": "The additional siren is creating a different acoustic signal differentiate from the smoke alarm. This sound is partly on and partly off. This parameter defines the total length of the sound versus silence within this interval. Please make sure this value is always smaller (shorter time) than parameter 1 that defines the whole sequence.",
"nl": "De extra sirene zorgt voor een ander akoestisch signaal dat onderscheidt van het rookalarm. Dit geluid is gedeeltelijk aan en gedeeltelijk af. Deze parameter bepaalt de totale lengte van het geluid versus stilte binnen dit interval. Zorg ervoor dat deze waarde altijd kleiner is (kortere tijd) dan parameter 1 die de hele volgorde definieert."
},
"_size": 1,
"type": "number"
},
{
"id": 3,
"value": true,
"label": {
"en": "Value of On-Command",
"nl": "Waarde van On-Commando"
},
"hint": {
"en": "This value is sent as BASIC Set to Association Group 3 when an Smoke Alarm occurs. If 255 can not be entered in your gateway use -1.",
"nl": "Deze waarde wordt verzonden als BASIC Set to Association Group 3 als er een rookmelder optreedt. Als 255 niet in uw gateway kan worden ingevoerd, gebruikt u -1."
},
"_size": 1,
"type": "checkbox"
},
{
"id": 4,
"value": true,
"label": {
"en": "Value of Off-Command",
"nl": "Waarde van Off-Commando"
},
"hint": {
"en": "This value is sent as BASIC Set to Association Group 3 when an Smoke Alarm is cleared. If 255 can not be entered in your gateway use -1.",
"nl": "Deze waarde wordt verzonden als BASIC Set to Association Group 3 als een rookmelder is gewist. Als 255 niet in uw gateway kan worden ingevoerd, gebruikt u -1."
},
"_size": 1,
"type": "checkbox"
}
]
},
{
"id": "010101",
"name": {
"en": "Wireless Thermo Valve",
"nl": "Draadloze Thermostaat Kraan"
},
"zwave": {
"manufacturerId": 2,
"productTypeId": 277,
"productId": 40976,
"wakeUpInterval": 1800,
"learnmode": {
"instruction": {
"en": "Press the middle button on your POPP Valve",
"nl": "Druk op de middelste knop van de POPP Thermostaatkraan"
}
},
"associationGroups": [ 1 ]
},
"class": "thermostat",
"capabilities": [
"target_temperature",
"measure_temperature",
"measure_battery",
"alarm_battery"
],
"capabilitiesOptions": {
"target_temperature": {
"min": 4,
"max": 28
}
},
"images": {
"large": "/drivers/010101/assets/images/large.jpg",
"small": "/drivers/010101/assets/images/small.jpg"
}
},
{
"id": "009006",
"name": {
"en": "Wall Plug Switch Indoor",
"nl": "Wall Plug Switch Indoor"
},
"zwave": {
"manufacturerId": 100,
"productTypeId": 12289,
"productId": 0,
"learnmode": {
"image": "/drivers/009006/assets/learnmode.svg",
"instruction": {
"en": "Press button three times",
"nl": "Druk driemaal op knop"
}
},
"associationGroups": [1,1]
},
"class": "socket",
"capabilities": [ "onoff" ],
"images": {
"large": "/drivers/009006/assets/images/large.png",
"small": "/drivers/009006/assets/images/small.png"
},
"settings": [
{
"id": "auto_switch_off",
"type": "number",
"attr": {
"min": 0,
"max": 65535
},
"value": 0,
"label": {
"en": "Auto switch off after (0 - 65535 sec)",
"nl": "Automatisch uitschakelen na (0 - 65535 sec)"
},
"hint": {
"en": "If not zero, automatically switch off after a user defined time in seconds.",
"nl": "Indien niet nul, automatisch uitschakelen na de ingestelde tijd in seconden."
}
},
{
"id": "led_indication_mode",
"type": "checkbox",
"label": {
"en": "LED Mode",
"nl": "LED Modus"
},
"value": true,
"hint": {
"en": "Led Switch Status indication. Default: enabled",
"nl": "Led Status Light indicatie. Standaard: ingeschakeld"
}
},
{
"id": "state_after_powerloss",
"type": "checkbox",
"label": {
"en": "Restore state after power loss",
"nl": "Herstel toestand bij spanningsuitval"
},
"value": true,
"hint": {
"en": "After power loss the relay will switch to last known state if enabled (checked) or remain off if disabled (unchecked).\nDefault: enabled = checked)",
"nl": "Schakel terug naar laatst bekende schakelstand na spanningsuitval wanneer ingeschakeld (checked) of uit wanneer niet ingeschakeld (unchecked).\nStandaard: uitgeschakeld = unchecked)"
}
},
{
"id": "led_off_color",
"type": "dropdown",
"label": {
"en": "Color of Led when turned off",
"nl": "Kleur Led wanneer uitgeschakeld"
},
"value": "0",
"hint": {
"en": "Choose youre off color",
"nl": "Kies u kleur bij uitstand"
},
"values": [
{
"id": "0",
"label": {
"en": "Off (default)",
"nl": "Uit (standaard)"
}
},
{
"id": "1",
"label": {
"en": "Red",
"nl": "Rood"
}
},
{
"id": "2",
"label": {
"en": "Green",
"nl": "Groen"
}
},
{
"id": "3",
"label": {
"en": "Blue",
"nl": "Blauw"
}
},
{
"id": "4",
"label": {
"en": "Yellow",
"nl": "Geel"
}
}
]
},
{
"id": "led_on_color",
"type": "dropdown",
"label": {
"en": "Color of Led when turned On",
"nl": "Kleur Led wanneer Ingeschakeld"
},
"value": "3",
"hint": {
"en": "Choose youre On color",
"nl": "Kies u kleur wanneer Ingeschakeld"
},
"values": [
{
"id": "0",
"label": {
"en": "Off",
"nl": "Uit"
}
},
{
"id": "1",
"label": {
"en": "Red",
"nl": "Rood"
}
},
{
"id": "2",
"label": {
"en": "Green",
"nl": "Groen"
}
},
{
"id": "3",
"label": {
"en": "Blue (default)",
"nl": "Blauw (standaard)"
}
},
{
"id": "4",
"label": {
"en": "Yellow",
"nl": "Geel"
}
}
]
}
]
},
{
"id": "009105",
"name": {
"en": "Wall Plug Switch Outdoor",
"nl": "Wall Plug Switch Outdoor"
},
"zwave": {
"manufacturerId": [100 , 340],
"productTypeId": [ 0 , 3 ],
"productId": [ 0 , 1 ],
"learnmode": {
"image": "/drivers/009105/assets/learnmode.svg",
"instruction": {
"en": "Press button three times",
"nl": "Druk driemaal op knop"
}
},
"associationGroups": [1,1]
},
"class": "socket",
"capabilities": [ "onoff" ],
"images": {
"large": "/drivers/009105/assets/images/large.png",
"small": "/drivers/009105/assets/images/small.png"
},
"settings": [
{
"id": "auto_switch_off",
"type": "number",
"attr": {
"min": 0,
"max": 65535
},
"value": 0,
"label": {
"en": "Auto switch off after (1 - 65535 sec)",
"nl": "Automatisch uitschakelen na (1 - 65535 sec)"
},
"hint": {
"en": "If not zero, automatically switch off after a user defined time in seconds.",
"nl": "Indien niet nul, automatisch uitschakelen na de ingestelde tijd in seconden."
}
},
{
"id": "led_indication_mode",
"type": "checkbox",
"label": {
"en": "LED Mode",
"nl": "LED Modus"
},
"value": true,
"hint": {
"en": "Led Switch Status indication. Default: enabled",
"nl": "Led Status Light indicatie. Standaard: ingeschakeld"
}
},
{
"id": "state_after_powerloss",
"type": "checkbox",
"label": {
"en": "Restore state after power loss",
"nl": "Herstel toestand bij spanningsuitval"
},
"value": true,
"hint": {
"en": "After power loss the relay will switch to last known state if enabled (checked) or remain off if disabled (unchecked).\nDefault: enabled = checked)",
"nl": "Schakel terug naar laatst bekende schakelstand na spanningsuitval wanneer ingeschakeld (checked) of uit wanneer niet ingeschakeld (unchecked).\nStandaard: uitgeschakeld = unchecked)"
}
},
{
"id": "led_off_color",
"type": "dropdown",
"label": {
"en": "Color of Led when turned off",
"nl": "Kleur Led wanneer uitgeschakeld"
},
"value": "0",
"hint": {
"en": "Choose youre off color",
"nl": "Kies u kleur bij uitstand"
},
"values": [
{
"id": "0",
"label": {
"en": "Off (default)",
"nl": "Uit (standaard)"
}
},
{
"id": "1",
"label": {
"en": "Red",
"nl": "Rood"
}
},
{
"id": "2",
"label": {
"en": "Green",
"nl": "Groen"
}
},
{
"id": "3",
"label": {
"en": "Blue",
"nl": "Blauw"
}
},
{
"id": "4",
"label": {
"en": "Yellow",
"nl": "Geel"
}
}
]
},
{
"id": "led_on_color",
"type": "dropdown",
"label": {
"en": "Color of Led when turned On",
"nl": "Kleur Led wanneer Ingeschakeld"
},
"value": "3",
"hint": {
"en": "Choose youre On color",
"nl": "Kies u kleur wanneer Ingeschakeld"
},
"values": [
{
"id": "0",
"label": {
"en": "Off",
"nl": "Uit"
}
},
{
"id": "1",
"label": {
"en": "Red",
"nl": "Rood"
}
},
{
"id": "2",
"label": {
"en": "Green",
"nl": "Groen"
}
},
{
"id": "3",
"label": {
"en": "Blue (default)",
"nl": "Blauw (standaard)"
}
},
{
"id": "4",
"label": {
"en": "Yellow",
"nl": "Geel"
}
}
]
}
]
},
{
"id": "123610",
"name": { "en": "Switch 68G" },
"zwave": {
"manufacturerId": 340,
"productTypeId": 514,
"productId": 1297,
"learnmode": {
"image": "/drivers/123610/assets/learnmode.svg",
"instruction": {
"en": "Press the (action) button three times on the Smart Switch to enter learn mode",
"nl": "Druk drie keer op de (actie) knop op de Smart Switch om de leer modus te activeren"
}
},
"associationGroups": [ 1 ]
},
"class": "socket",
"capabilities": [ "onoff" ],
"images": {
"large": "/drivers/123610/assets/images/large.png",
"small": "/drivers/123610/assets/images/small.png"
},
"settings": [
{
"id": 1,
"type": "dropdown",
"label": {
"en": "Led mode",
"nl": "Led mode"
},
"value": "3",
"hint": {
"en": "Set LED indication mode",
"nl": "Configureer de LED indicatie mode"
},
"values": [
{
"id": "0",
"label": {
"en": "Disabled",
"nl": "Uitgeschakeld"
}
},
{
"id": "1",
"label": {
"en": "Show switch state",
"nl": "Toon de status (aan/uit)"
}
},
{
"id": "2",
"label": {
"en": "Night mode (inverted switch state)",
"nl": "Nacht modes (omgekeerde status)"
}
},
{
"id": "3",
"label": {
"en": "Operated by Indicator Command Class (Default)",
"nl": "Werking volgens de configuratie van de Command Class (Standaard)"
}
}
]
},
{
"id": 2,
"type": "number",
"label": {
"en": "Automatically switch off after",
"nl": "Automatisch uitschakelen na"
},
"value": 0,
"attr": {
"min": 0,
"max": 65535
},