-
Notifications
You must be signed in to change notification settings - Fork 13
/
app.json
1464 lines (1464 loc) · 42.4 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": "eu.benext",
"name": {
"en": "BeNext"
},
"brandColor": "#a6ce3f",
"sdk": 2,
"version": "1.1.0",
"compatibility": ">=3.0.0",
"description": {
"en": "BeNext devices for Homey",
"nl": "BeNext apparaten voor Homey"
},
"category": [
"security",
"lights",
"appliances",
"climate",
"energy"
],
"images": {
"large": "/assets/images/large.png",
"small": "/assets/images/small.png"
},
"author": {
"name": "Robin van Kekem",
"email": "[email protected]"
},
"contributors": {
"developers": [
{
"name": "Robin van Kekem",
"email": "[email protected]"
},
{
"name": "Martin P",
"email": "[email protected]"
}
]
},
"drivers": [
{
"id": "alarm_sound",
"name": {
"en": "Alarm Sound",
"nl": "Alarm Sound"
},
"zwave": {
"manufacturerId": 138,
"productTypeId": 5,
"productId": 257,
"learnmode": {
"image": "/drivers/alarm_sound/assets/learnmode.svg",
"instruction": {
"en": "Press and hold the button until the red light starts blinking, then release to start inclusion.",
"nl": "Houd de knop ingedrukt tot het rode lampje begint te knipperen, laat vervolgens los om het apparaat toe te voegen."
}
},
"unlearnmode": {
"image": "/drivers/alarm_sound/assets/learnmode.svg",
"instruction": {
"en": "Press and hold the button until the red light starts blinking, then release to start exclusion.",
"nl": "Houd de knop ingedrukt tot het rode lampje begint te knipperen, laat vervolgens los om het apparaat te verwijderen."
}
},
"associationGroups": [
1,
2
]
},
"class": "homealarm",
"capabilities": [
"onoff"
],
"images": {
"large": "/drivers/alarm_sound/assets/images/large.png",
"small": "/drivers/alarm_sound/assets/images/small.png"
},
"settings": [
{
"id": "destination_routine_enabled",
"zwave": {
"index": 2,
"size": 1,
"signed": false
},
"type": "dropdown",
"label": {
"en": "Destination routine enabled",
"nl": "Bestemming routine ingeschakeld"
},
"value": "255",
"hint": {
"en": "Enables an internal routine that periodically checks the Z-Wave device in association group 2 by sending a test message. If transmission fails, the Alarm Sound will notify the user with a sound.",
"nl": "Schakelt een interne routine in die periodiek het Z-Wave apparaat controleert in associatie groep 2 door het verzenden van een test bericht. Als de transmissie mislukt, zal de Alarm Sound de gebruiker informeren door middel van geluid."
},
"values": [
{
"id": "0",
"label": {
"en": "Routine is disabled",
"nl": "Routine is uitgeschakeld"
}
},
{
"id": "255",
"label": {
"en": "Routine is enabled",
"nl": "Routine is ingeschakeld"
}
}
]
},
{
"id": "sound_light_mode_index",
"zwave": {
"index": 7,
"size": 1
},
"type": "number",
"label": {
"en": "Select index sound/light mode",
"nl": "Selecteer index geluid/licht modus"
},
"value": 1,
"attr": {
"min": 0,
"max": 6
},
"hint": {
"en": "The index of the sound mode when a switch binary/basic set frame is received.",
"nl": "De index van de geluid modus wanneer een switch binary/basic set frame is ontvangen."
}
},
{
"id": "power_offline_sound_light_mode",
"zwave": {
"index": 8,
"size": 1
},
"type": "number",
"label": {
"en": "Power offline sound/light mode",
"nl": "Power offline geluid/licht modus"
},
"value": 1,
"attr": {
"min": 0,
"max": 6
},
"hint": {
"en": "The index of the sound mode the Alarm Sound will start when it is unplugged.",
"nl": "De index van de geluidsmodus van de Alarm Sound die zal starten wanneer de stroom wordt onderbroken."
}
},
{
"id": "destination_route_failed_sound_light_mode",
"zwave": {
"index": 9,
"size": 1
},
"type": "number",
"label": {
"en": "Error (destination routine failed) sound/light mode",
"nl": "Error (destination routine failed) geluid/licht modus"
},
"value": 1,
"attr": {
"min": 0,
"max": 6
},
"hint": {
"en": "The index of the sound mode the Alarm Sound will play when it is unable to reach the device in association group 2.",
"nl": "De index van de geluidsmodus van de Alarm Sound zal afspelen waneer deze onbereikbaar is geworden voor in associatie groep 2."
}
}
]
},
{
"id": "built_in_dimmer",
"name": {
"en": "Built-in Dimmer",
"nl": "Built-in Dimmer"
},
"zwave": {
"manufacturerId": 138,
"productTypeId": 13,
"productId": 256,
"learnmode": {
"image": "/drivers/built_in_dimmer/assets/learnmode.svg",
"instruction": {
"en": "When the light is off switch the wall switch once, after two seconds switch back the wall switch to start the inclusion process.",
"nl": "Zet het licht uit met de schakelaar, schakel het licht vervolgens in met de schakelaar en na 2 seconden weer uit om het apparaat toe te voegen."
}
},
"unlearnmode": {
"image": "/drivers/built_in_dimmer/assets/learnmode.svg",
"instruction": {
"en": "When the light is off switch the wall switch once, after two seconds switch back the wall switch to start the exclusion process.",
"nl": "Zet het licht uit met de schakelaar, schakel het licht vervolgens in met de schakelaar en na 2 seconden weer uit om het apparaat te verwijderen."
}
},
"associationGroups": [
1,
2
],
"defaultConfiguration": [
{
"id": 11,
"size": 1,
"value": 20
}
]
},
"class": "light",
"capabilities": [
"onoff",
"dim",
"measure_power",
"meter_power"
],
"images": {
"large": "/drivers/built_in_dimmer/assets/images/large.png",
"small": "/drivers/built_in_dimmer/assets/images/small.png"
},
"settings": [
{
"id": "meter_report_percentage",
"zwave": {
"index": 11,
"size": 1
},
"type": "number",
"label": {
"en": "Wattage report threshold (%)",
"nl": "Wattage verzending drempel (%)"
},
"hint": {
"en": "How much must the Wattage change (in percentage) before the value is being send. Range: 1 - 100",
"nl": "Hoeveel moet de Wattage zijn veranderd (in percentage) voor de waarde wordt verzonden. Bereik: 1 - 100"
},
"attr": {
"min": 1,
"max": 100
},
"value": 20
},
{
"id": "meter_report_watt",
"zwave": {
"index": 12,
"size": 1,
"signed": false
},
"type": "number",
"label": {
"en": "Wattage report threshold (W)",
"nl": "Wattage verzending drempel (W)"
},
"hint": {
"en": "How much must the Wattage change (in Watt) before the value is being send. Range: 5 - 255",
"nl": "Hoeveel moet de Wattage zijn veranderd (in Watt) voor de waarde wordt verzonden. Bereik: 5 - 255"
},
"attr": {
"min": 5,
"max": 255
},
"value": 5
},
{
"id": "save_state",
"zwave": {
"index": 14,
"size": 1
},
"type": "dropdown",
"label": {
"en": "Save power-off state",
"nl": "Onthoud status na stroomonderbreking"
},
"hint": {
"en": "State after power disruption.",
"nl": "Status na stroomonderbreking"
},
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "Always off",
"nl": "Altijd uit"
}
},
{
"id": "1",
"label": {
"en": "Restore previous state",
"nl": "Herstel vorige status"
}
}
]
}
]
},
{
"id": "energy_switch_plus",
"name": {
"en": "Energy Switch+",
"nl": "Energy Switch+"
},
"zwave": {
"manufacturerId": 138,
"productTypeId": [
32,
6
],
"productId": [
1,
512
],
"learnmode": {
"image": "/drivers/energy_switch_plus/assets/learnmode.svg",
"instruction": {
"en": "Press and hold the button on the front of the device until the LED starts to blink. Release the button to start inclusion.",
"nl": "Houd de druk-knop ingedrukt totdat het indicatielampje knippert. Laat de knop vervolgens los om het installatie proces te starten."
}
},
"unlearnmode": {
"image": "/drivers/energy_switch_plus/assets/learnmode.svg",
"instruction": {
"en": "Press and hold the button on the front of the device until the LED starts to blink. Release the button to start exclusion.",
"nl": "Houd de druk-knop ingedrukt totdat het indicatielampje knippert. Laat de knop vervolgens los om het verwijder proces te starten."
}
},
"associationGroups": [
1,
2
]
},
"class": "socket",
"capabilities": [
"onoff",
"measure_power",
"meter_power"
],
"images": {
"large": "/drivers/energy_switch_plus/assets/images/large.png",
"small": "/drivers/energy_switch_plus/assets/images/small.png"
},
"settings": [
{
"id": "meter_report_percentage",
"zwave": {
"index": 6,
"size": 1
},
"type": "number",
"label": {
"en": "Wattage report threshold (%)",
"nl": "Wattage verzending drempel (%)"
},
"hint": {
"en": "How much must the Wattage change (in percentage) before the value is being send. Range: 10 - 100",
"nl": "Hoeveel moet de Wattage zijn veranderd (in percentage) voor de waarde wordt verzonden. Bereik: 10 - 100"
},
"attr": {
"min": 10,
"max": 100
},
"value": 20
},
{
"id": "meter_report_watt",
"zwave": {
"index": 7,
"size": 1,
"signed": false
},
"type": "number",
"label": {
"en": "Wattage report threshold (W)",
"nl": "Wattage verzending drempel (W)"
},
"hint": {
"en": "How much must the Wattage change (in Watt) before the value is being send. Range: 5 - 255",
"nl": "Hoeveel moet de Wattage zijn veranderd (in Watt) voor de waarde wordt verzonden. Bereik: 5 - 255"
},
"attr": {
"min": 10,
"max": 255
},
"value": 5
},
{
"id": "save_state",
"zwave": {
"index": 4,
"size": 1
},
"type": "dropdown",
"label": {
"en": "Save power-off state",
"nl": "Onthoud status na stroomonderbreking"
},
"hint": {
"en": "State after power disruption.",
"nl": "Status na stroomonderbreking"
},
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "Always off",
"nl": "Altijd uit"
}
},
{
"id": "1",
"label": {
"en": "Restore previous state",
"nl": "Herstel vorige status"
}
}
]
}
]
},
{
"id": "heating_control",
"name": {
"en": "Heating Control",
"nl": "Heating Control"
},
"zwave": {
"manufacturerId": 138,
"productTypeId": 33,
"productId": [
256,
258
],
"learnmode": {
"image": "/drivers/heating_control/assets/learnmode.svg",
"instruction": {
"en": "Press and hold the button on the front of the device until the LED starts to blink. Release the button to start inclusion.",
"nl": "Houd de druk-knop ingedrukt totdat het indicatielampje knippert. Laat de knop vervolgens los om het installatie proces te starten."
}
},
"unlearnmode": {
"image": "/drivers/heating_control/assets/learnmode.svg",
"instruction": {
"en": "Press and hold the button on the front of the device until the LED starts to blink. Release the button to start exclusion.",
"nl": "Houd de druk-knop ingedrukt totdat het indicatielampje knippert. Laat de knop vervolgens los om het verwijder proces te starten."
}
},
"associationGroups": [
1,
2
],
"defaultConfiguration": [
{
"id": 7,
"size": 1,
"value": 1
}
]
},
"class": "thermostat",
"capabilities": [
"measure_temperature",
"target_temperature",
"measure_pressure",
"measure_temperature.outside"
],
"capabilitiesOptions": {
"target_temperature": {
"min": 7.5,
"max": 32.5
}
},
"images": {
"large": "/drivers/heating_control/assets/images/large.png",
"small": "/drivers/heating_control/assets/images/small.png"
},
"settings": [
{
"id": "override_mode",
"type": "dropdown",
"label": {
"en": "Temperature schedule override",
"nl": "Temperatuur schema overschrijven"
},
"value": "1",
"values": [
{
"id": "1",
"label": {
"en": "Temporary",
"nl": "Tijdelijk"
}
},
{
"id": "2",
"label": {
"en": "Permanently",
"nl": "Permanent"
}
}
]
}
]
},
{
"id": "molite_sensor",
"name": {
"en": "MoLiTe Sensor",
"nl": "MoLiTe Sensor"
},
"zwave": {
"manufacturerId": 138,
"productTypeId": 3,
"productId": 257,
"learnmode": {
"image": "/drivers/molite_sensor/assets/learnmode.svg",
"instruction": {
"en": "Remove the backplate of the device and hold the tamper button for 2 seconds.",
"nl": "Verwijder de achterkant van het apparaat en houd de knop ongeveer 2 seconden ingedrukt."
}
},
"unlearnmode": {
"image": "/drivers/molite_sensor/assets/learnmode.svg",
"instruction": {
"en": "Remove the backplate of the device and hold the tamper button for 2 seconds.",
"nl": "Verwijder de achterkant van het apparaat en houd de knop ongeveer 2 seconden ingedrukt."
}
},
"associationGroups": [
1,
2
]
},
"class": "sensor",
"capabilities": [
"alarm_motion",
"alarm_tamper",
"measure_luminance",
"measure_temperature",
"measure_battery"
],
"energy": {
"batteries": [
"AA",
"AA"
]
},
"images": {
"large": "/drivers/molite_sensor/assets/images/large.png",
"small": "/drivers/molite_sensor/assets/images/small.png"
}
},
{
"id": "p1_dongle",
"name": {
"en": "P1 Dongle",
"nl": "P1 Dongle"
},
"zwave": {
"manufacturerId": 138,
"productTypeId": 47,
"productId": 256,
"learnmode": {
"image": "/drivers/p1_dongle/assets/learnmode.svg",
"instruction": {
"en": "Press and hold the button on your P1 Dongle for three seconds, release to include the device.",
"nl": "Houd de knop op de P1 Dongle drie seconden vast, laat los om het apparaat toe te voegen."
}
},
"associationGroups": [
1
]
},
"class": "sensor",
"capabilities": [
"measure_power",
"meter_power.normal",
"meter_power.low",
"meter_gas"
],
"energy": {
"cumulative": true
},
"capabilitiesOptions": {
"meter_power.normal": {
"title": {
"en": "Power Meter Normal",
"nl": "Stroommeter Normaal"
}
},
"meter_power.low": {
"title": {
"en": "Power Meter Low",
"nl": "Stroommeter Laag"
}
}
},
"images": {
"large": "/drivers/p1_dongle/assets/images/large.png",
"small": "/drivers/p1_dongle/assets/images/small.png"
},
"settings": [
{
"id": "hw_pullup",
"zwave": {
"index": 3,
"size": 1
},
"type": "checkbox",
"label": {
"en": "Enable HW pullup",
"nl": "Bied HW pullup aan"
},
"hint": {
"en": "It is possible to provide a pullup to your smart meter.",
"nl": "Het is mogelijk om een pullup aan te bieden aan uw slimme meter."
},
"value": false
},
{
"id": "baud_rate",
"zwave": {
"index": 4,
"size": 2
},
"type": "dropdown",
"label": {
"en": "Default Baud rate",
"nl": "Standaard Baud rate"
},
"hint": {
"en": "The speed of the communication between de P1 and your smart meter. Kamstrup and Iskra = Baud rate 9600, aifa, Landis, Gyr = Baud rate 115200.",
"nl": "De snelheid van de P1 communicatie tussen slimme meter en de P1 to Z-Wave. Kamstrup en Iskra = Baud rate 9600, Kaifa, Landis, Gyr = Baud rate 115200."
},
"value": "1152",
"values": [
{
"id": "1152",
"label": {
"en": "115200 (DSMR 4.0)"
}
},
{
"id": "96",
"label": {
"en": "9600 (DMSR 2.2)"
}
}
]
},
{
"id": "poll_interval_channel_1",
"type": "number",
"attr": {
"min": 0,
"max": 86400
},
"value": 36000,
"label": {
"en": "Poll interval channel 1",
"nl": "Poll interval channel 1"
},
"hint": {
"en": "The amount of seconds between asking the device for a status update, 0 will disable polling. \nRange: 0 - 86400.\nDefault: 3600 seconds.",
"nl": "Aantal seconden tussen het opvragen van een status update aan het apparaat, 0 zal polling uitschakelen. \nBereik: 0 - 86400.\nStandaard waarde: 3600 seconden."
}
},
{
"id": "poll_interval_channel_2",
"type": "number",
"attr": {
"min": 0,
"max": 86400
},
"value": 36000,
"label": {
"en": "Poll interval channel 2",
"nl": "Poll interval channel 2"
},
"hint": {
"en": "The amount of seconds between asking the device for a status update, 0 will disable polling. \nRange: 0 - 86400.\nDefault: 3600 seconds.",
"nl": "Aantal seconden tussen het opvragen van een status update aan het apparaat, 0 zal polling uitschakelen. \nBereik: 0 - 86400.\nStandaard waarde: 3600 seconden."
}
},
{
"id": "poll_interval_channel_3",
"type": "number",
"attr": {
"min": 0,
"max": 86400
},
"value": 36000,
"label": {
"en": "Poll interval channel 3",
"nl": "Poll interval channel 3"
},
"hint": {
"en": "The amount of seconds between asking the device for a status update, 0 will disable polling. \nRange: 0 - 86400.\nDefault: 3600 seconds.",
"nl": "Aantal seconden tussen het opvragen van een status update aan het apparaat, 0 zal polling uitschakelen. \nBereik: 0 - 86400.\nStandaard waarde: 3600 seconden."
}
}
]
},
{
"id": "plug_in_dimmer",
"name": {
"en": "Plug-in Dimmer",
"nl": "Plug-in Dimmer"
},
"zwave": {
"manufacturerId": 138,
"productTypeId": 24,
"productId": 256,
"learnmode": {
"image": "/drivers/plug_in_dimmer/assets/learnmode.svg",
"instruction": {
"en": "Press and hold the button on the device for a few seconds and then let go.",
"nl": "Houd de knop op het apparaat een paar seconden ingedrukt en laat vervolgens los."
}
},
"associationGroups": [
1,
2
],
"defaultConfiguration": [
{
"id": 11,
"size": 1,
"value": 20
}
]
},
"class": "light",
"capabilities": [
"onoff",
"dim",
"measure_power",
"meter_power"
],
"images": {
"large": "/drivers/plug_in_dimmer/assets/images/large.png",
"small": "/drivers/plug_in_dimmer/assets/images/small.png"
},
"settings": [
{
"id": "meter_report_percentage",
"zwave": {
"index": 11,
"size": 1
},
"type": "number",
"label": {
"en": "Wattage report threshold (%)",
"nl": "Wattage verzending drempel (%)"
},
"hint": {
"en": "How much must the Wattage change (in percentage) before the value is being send. Range: 1 - 100",
"nl": "Hoeveel moet de Wattage zijn veranderd (in percentage) voor de waarde wordt verzonden. Bereik: 1 - 100"
},
"attr": {
"min": 1,
"max": 100
},
"value": 20
},
{
"id": "meter_report_watt",
"zwave": {
"index": 12,
"size": 1,
"signed": false
},
"type": "number",
"label": {
"en": "Wattage report threshold (W)",
"nl": "Wattage verzending drempel (W)"
},
"hint": {
"en": "How much must the Wattage change (in Watt) before the value is being send. Range: 5 - 255.",
"nl": "Hoeveel moet de Wattage zijn veranderd (in Watt) voor de waarde wordt verzonden."
},
"attr": {
"min": 5,
"max": 255
},
"value": 5
},
{
"id": "save_state",
"zwave": {
"index": 14,
"size": 1
},
"type": "dropdown",
"label": {
"en": "Save power-off state",
"nl": "Onthoud status na stroomonderbreking"
},
"hint": {
"en": "State after power disruption.",
"nl": "Status na stroomonderbreking"
},
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "Always off",
"nl": "Altijd uit"
}
},
{
"id": "1",
"label": {
"en": "Restore previous state",
"nl": "Herstel vorige status"
}
}
]
}
]
},
{
"id": "tag_reader_500",
"name": {
"en": "Tag Reader (500)",
"nl": "Tag Reader (500)"
},
"zwave": {
"manufacturerId": 138,
"productTypeId": 7,
"productId": [
512,
256,
257
],
"learnmode": {
"image": "/drivers/tag_reader_500/assets/learnmode.svg",
"instruction": {
"en": "For Tag Reader: Press and hold the tamper switch about a second until indication LED blinks once per second, then release. For Tag Reader 500 (Z-Wave Plus): Press and hold the enter button for two seconds (indication LED blinks shortly). Release the enter button.",
"nl": "For Tag Reader: Press and hold the tamper switch about a second until indication LED blinks once per second, then release. For Tag Reader 500 (Z-Wave Plus): Press and hold the enter button for two seconds (indication LED blinks shortly). Release the enter button."
}
},
"associationGroups": [
1
],
"associationGroupsOptions": {},
"wakeUpInterval": 900,
"defaultConfiguration": [
{
"id": 7,
"size": 1,
"value": 1
}
]
},
"class": "homealarm",
"capabilities": [
"measure_battery",
"alarm_tamper",
"user_code_report",
"homealarm_state",
"my_gateway_control"
],
"energy": {
"batteries": [
"AA",
"AA"
]
},
"images": {
"large": "/drivers/tag_reader_500/assets/images/large.png",
"small": "/drivers/tag_reader_500/assets/images/small.png"
},
"settings": [
{
"id": "set_to_default",
"zwave": {
"index": 1,
"size": 1
},
"type": "dropdown",
"label": {
"en": "Reset to factory settings",
"nl": "Fabrieksinstellingen terugzetten"
},
"hint": {
"en": "Set all configuration values to default values (factory settings).",
"nl": "Zet alle configuratie waarden terug naar de standaard instellingen."
},
"value": "170",
"values": [
{
"id": "170",
"label": {
"en": "Don't reset settings",
"nl": "Wis gegevens niet"
}
},
{
"id": "3",
"label": {
"en": "Reset to factory settings",
"nl": "Fabrieksinstellingen terugzetten"
}
}
]
},
{
"id": "feedback_time",
"zwave": {
"index": 2,
"size": 1,
"signed": false
},
"type": "number",
"label": {
"en": "Feedback time",
"nl": "Terugkoppel tijd"
},
"hint": {
"en": "To configure the time the beep is automatically turned off in seconds (0 = off, 1 - 244 = value in seconds, 255 = not turned off, default 15).",
"nl": "De tijd waarna de piep automatisch uitgezet wordt. (0 = uit, 1 - 244 = waarde in seconden, 255 = nooit, standaard: 15)."
},
"attr": {
"min": 0,
"max": 255
},
"value": 15
},
{
"id": "feedback_timeout",
"zwave": {
"index": 3,
"size": 1,
"signed": false
},
"type": "number",
"label": {
"en": "Feedback timeout",
"nl": "Terugkoppel timeout"
},
"hint": {
"en": "To configure the timeout to wait for a WAKEUP_NO_MORE_INFORMATION before the error beep is automatically sound. The error beeps are fixed 8 beeps shortly after each other (0 = off, 1 - 255 = value in seconds. Default 0).",
"nl": "Tijd waarna, bij het niet ontvangen van een WAKEUP_NO_MORE_INFORMATION frame van Homey, het apparaat error geluiden laad horen. De error piep is altijd 8 piepjes kort na elkaar (0 = uit, 1 - 255 = waarde in seconden, standaard: 0)."
},
"attr": {
"min": 0,
"max": 255
},
"value": 0
},
{
"id": "feedback_beeps_per_second",
"zwave": {
"index": 4,
"size": 1,
"signed": false
},
"type": "number",
"label": {
"en": "Feedback beeps per second",
"nl": "Terugekoppeling piepjes per seconde"
},
"hint": {
"en": "To configure the number of beeps per second. Every beep is fixed about 10ms (0 = off, 1 - 255 = number of beeps per second. Default: 2)",
"nl": "Het aantal piepjes per seconde. Elke piep duurt 10ms (0 = uit, 1 - 255 = aantal piepjes per seconde. Standaard: 2)."
},
"attr": {
"min": 0,
"max": 255
},
"value": 2
},
{
"id": "always_awake_mode",
"zwave": {
"index": 5,
"size": 1
},
"type": "dropdown",
"label": {
"en": "Always awake mode",
"nl": "Altijd wakker modus"
},
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "Mode 1, normal operating mode",
"nl": "Mode 1, normale modus"