-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.json
2040 lines (2040 loc) · 72.9 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
{
"_comment": "This file is generated. Please edit .homeycompose/app.json instead.",
"id": "com.hank-tech",
"sdk": 2,
"name": {
"en": "Hank tech Z-wave"
},
"version": "1.2.0",
"compatibility": ">=4.0.0",
"athomForumDiscussionId": 3708,
"homeyCommunityTopicId": 162,
"author": {
"name": "Ted Tolboom",
"email": "[email protected]"
},
"contributing": {
"donate": {
"paypal": {
"username": "TedTolboom"
}
}
},
"contributors": {
"developers": [
{
"name": "Remco Mengers",
"email": "[email protected]"
},
{
"name": "Ted Tolboom",
"email": "[email protected]"
}
]
},
"description": {
"en": "Support for Hank Z-wave devices",
"nl": "Ondersteuning voor Hank Z-wave apparaten"
},
"images": {
"large": "/assets/images/large.jpg",
"small": "/assets/images/small.jpg"
},
"tags": {
"en": [
"scene controller",
"remote",
"remote control",
"central scene",
"scenes",
"motion detection",
"motion",
"alarm",
"door",
"window",
"sensor",
"switch",
"smart plug",
"USB"
],
"nl": [
"scene controller",
"afstandsbediening",
"central scene",
"scenes",
"bewegingsdetectie",
"beweging",
"alarm",
"deur",
"raam",
"sensor",
"schakelaar",
"USB"
]
},
"category": [
"appliances",
"lights",
"security"
],
"flow": {
"triggers": [
{
"id": "battery_alarm",
"title": {
"en": "The battery alarm turned on",
"nl": "De batterijwaarschuwing gaat aan"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=HKZW-SCN01|HKZW-SCN04"
}
]
},
{
"id": "SCN_button",
"title": {
"en": "A button has been pressed",
"nl": "Een knop is ingedrukt"
},
"hint": {
"en": "This card will trigger on any button pressed and provides the button and scene tokens.",
"nl": "Deze kaart wordt geactiveerd bij iedere knop die ingedrukt wordt en biedt de knop en scene tokens aan."
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=HKZW-SCN01|HKZW-SCN04"
}
],
"tokens": [
{
"name": "button",
"type": "string",
"title": {
"en": "button",
"nl": "knop"
},
"example": "0"
},
{
"name": "scene",
"type": "string",
"title": {
"en": "scene",
"nl": "scene"
},
"example": "Button pressed (test)"
}
]
},
{
"id": "SCN01_scene",
"title": {
"en": "Scene is activated",
"nl": "Scene is geactiveerd"
},
"hint": {
"en": "This card will only get triggered if the button and scene match the state of the dropdown fields.",
"nl": "Deze kaart wordt alleen geactiveerd wanneer de knop en scene overeenkomen met de toestand van de gekozen opties."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=HKZW-SCN01"
},
{
"name": "button",
"type": "dropdown",
"values": [
{
"id": "1",
"label": {
"en": "Button 1 (Night)",
"nl": "Knop 1 (Nacht)"
}
}
]
},
{
"name": "scene",
"type": "dropdown",
"values": [
{
"id": "Key Pressed 1 time",
"label": {
"en": "Pressed 1x",
"nl": "1x ingedrukt"
}
},
{
"id": "Key Held Down",
"label": {
"en": "Held Down",
"nl": "Lang ingedrukt"
}
},
{
"id": "Key Released",
"label": {
"en": "Released",
"nl": "Losgelaten"
}
}
]
}
]
},
{
"id": "SCN04_scene",
"title": {
"en": "Scene is activated",
"nl": "Scene is geactiveerd"
},
"hint": {
"en": "This card will only get triggered if the button and scene match the state of the dropdown fields.",
"nl": "Deze kaart wordt alleen geactiveerd wanneer de knop en scene overeenkomen met de toestand van de gekozen opties."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=HKZW-SCN04"
},
{
"name": "button",
"type": "dropdown",
"values": [
{
"id": "1",
"label": {
"en": "Button 1 (Night)",
"nl": "Knop 1 (Nacht)"
}
},
{
"id": "2",
"label": {
"en": "Button 2 (People)",
"nl": "Knop 2 (Mensen)"
}
},
{
"id": "3",
"label": {
"en": "Button 3 (Circle)",
"nl": "Knop 3 (Cirkel)"
}
},
{
"id": "4",
"label": {
"en": "Button 4 (Power)",
"nl": "Knop 4 (Power)"
}
}
]
},
{
"name": "scene",
"type": "dropdown",
"values": [
{
"id": "Key Pressed 1 time",
"label": {
"en": "Pressed 1x",
"nl": "1x ingedrukt"
}
},
{
"id": "Key Held Down",
"label": {
"en": "Held Down",
"nl": "Lang ingedrukt"
}
},
{
"id": "Key Released",
"label": {
"en": "Released",
"nl": "Losgelaten"
}
}
]
}
]
}
],
"actions": [
{
"id": "action_dim_startLevelChange",
"title": {
"en": "Start dim level change",
"nl": "Start helderheid transitie"
},
"hint": {
"en": "This action card will trigger the start of a dim level change in the set direction. \nDuration (for the change in dim-level from 0-100%) can be set by using the transition symbol. \nIf not set, factory default duration is used.",
"nl": "Deze actie kaart start een helderheids transitie in de ingestelde richting. \nTransitie duur (voor de transitie in helderheid van 0-100%) kan ingesteld worden met behulp van de transitie symbool. \nWanneer niet ingesteld, dan wordt de standaard duur gebruikt."
},
"duration": true,
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=HKZW-RGB01"
},
{
"name": "direction",
"type": "dropdown",
"values": [
{
"id": "0",
"label": {
"en": "Increase dim level",
"nl": "Toenemende helderheid"
}
},
{
"id": "1",
"label": {
"en": "Decrease dim level",
"nl": "Afnemende helderheid"
}
}
]
}
]
},
{
"id": "action_dim_stopLevelChange",
"title": {
"en": "Stop dim level change",
"nl": "Stop helderheid transitie"
},
"hint": {
"en": "This action card will trigger the stop of a dim level change.",
"nl": "Deze actie kaart start een helderheids transitie in de ingestelde richting."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=HKZW-RGB01"
}
]
},
{
"id": "SO0x_reset_meter",
"title": {
"en": "Reset meter values",
"nl": "Meter waarden resetten"
},
"hint": {
"en": "Reset the accumulated power usage (kWh). Can not be reversed.",
"nl": "Reset de stroomverbruik (kWh) waarden. Kan niet ongedaan gemaakt worden. "
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=HKZW-SO0x"
}
]
}
]
},
"drivers": [
{
"name": {
"en": "Door/Window Sensor"
},
"zwave": {
"manufacturerId": [
520
],
"productTypeId": [
512,
513
],
"productId": [
8
],
"productDocumentation": "http://products.z-wavealliance.org/ProductManual/File?folder=&filename=Manuals/1896/HKZW-DWS01_Product%20Manual%20.pdf",
"pid": 1896,
"imageRemotePath": "http://products.z-wavealliance.org/ProductImages/Index?productName=ZC10-16085158",
"learnmode": {
"image": "/drivers/HKZW-DWS01/assets/learnmode.svg",
"instruction": {
"en": "1.\tPress and hold the Z-button for 3 seconds to add the device in secure mode.\n2.\tIf the inclusion is successful, the LED will blink less than 5 seconds and then keep on 3 seconds.\n\tOtherwise, the LED will blink 5 seconds and then turn off",
"nl": "1.\tHou de Z-knop ingedrukt voor 3 seconden om het apparaat in secure modus toe te voegen\n2.\tWanneer het toevoegen succesvol is, zal de LED minder dan 5 seconds knipperen en daarna aanblijven voor 3 seconden.\n\tIndien niet succesvol zal de LED 5 seconden knipperen en daarna uitblijven"
}
},
"unlearnmode": {
"image": "/drivers/HKZW-DWS01/assets/learnmode.svg",
"instruction": {
"en": "1.\tTriple clicking the Z-button.\n2.\tIf successful excluded, the LED will turn off within 1 second.\n\tOtherwise, the LED will blink 5 seconds and then turn off.",
"nl": "1.\tDruk de Z-button drie kee in.\n2.\tWanneer succesvol verwijderd zal zal de LED uit gaan binnen 1 seconde\n\tWanneer niet succesvol, zal de LED 5 seconden knipperen en daarna uitblijven."
}
},
"associationGroups": [
1
],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "Door/Window Sensor will send notification report and battery report to the associated nodes. (Z-wave lifeline)",
"nl": "Door/Window Sensor stuurt notification report en battery report naar de gekoppelde nodes. (Z-wave lifeline)"
}
},
"2": {
"hint": {
"en": "Door/Window Sensor will send Basic Set command to the associated nodes when the sensor body and magnet removed or combined.",
"nl": "Door/Window Sensor stuurt Basic Set commando naar de gekoppelde nodes wanneer het contact alarm af gaat of reset."
}
}
}
},
"class": "sensor",
"capabilities": [
"alarm_contact",
"alarm_tamper",
"alarm_battery",
"measure_battery"
],
"energy": {
"batteries": [
"AA",
"AA"
]
},
"images": {
"large": "/drivers/HKZW-DWS01/assets/images/large.png",
"small": "/drivers/HKZW-DWS01/assets/images/small.png"
},
"id": "HKZW-DWS01",
"settings": [
{
"id": "BASIC_SET_command",
"zwave": {
"index": 14,
"size": 1
},
"type": "dropdown",
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "BASIC_SET is not send during alarm (default)",
"nl": "BASIC_SET wordt niet gestuurd tijdens een alarm (standaard)"
}
},
{
"id": "1",
"label": {
"en": "BASIC_SET is send during alarm",
"nl": "BASIC_SET wordt gestuurd tijdens een alarm"
}
}
],
"label": {
"en": "Enable BASIC SET command",
"nl": "BASIC SET command inschakelen"
},
"hint": {
"en": "Door/Window Sensor can send BASIC SET command to nodes associated with group 2.",
"nl": "Door/Window Sensor kan BASIC SET commando's versturen naar nodes gekoppeld aan groep 2."
}
},
{
"id": "BASIC_SET_reversed",
"zwave": {
"index": 15,
"size": 1
},
"type": "dropdown",
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "ON when contact opened, OFF when closed (default)",
"nl": "AAN bij open contact, UIT bij gesloten (standaard)"
}
},
{
"id": "1",
"label": {
"en": "OFF when contact opened, ON when closed",
"nl": "UIT bij open contact, AAN bij gesloten"
}
}
],
"label": {
"en": "Reverse BASIC SET command",
"nl": "BASIC SET command logica"
},
"hint": {
"en": "Door/Window Sensor can reverse its value of BASIC SET when the alarm is triggered.",
"nl": "Door/Window Sensor kan de waarde van het BASIC SET commando omwisselen wanneer een alarm geactiveerd wordt."
}
},
{
"id": "low_battery",
"zwave": {
"index": 32,
"size": 1
},
"type": "number",
"value": 20,
"attr": {
"min": 10,
"max": 50
},
"label": {
"en": "Low battery warning level",
"nl": "Waarschuwingsniveau batterij"
},
"hint": {
"en": "This parameter defines a battery level to trigger the battery alarm.\nDefault: 20 %, Range: 10 - 50 %",
"nl": "Deze parameter bepaald het batterijniveau waarop het batterij alarm ingeschakeld wordt.\nStandaard: 20 %, Bereik: 10 - 50 %"
}
}
]
},
{
"name": {
"en": "Flood Sensor"
},
"zwave": {
"manufacturerId": [
520
],
"productTypeId": [
512,
513
],
"productId": [
15
],
"productDocumentation": "https://products.z-wavealliance.org/ProductManual/File?folder=&filename=Manuals/2649/Flood%20Sensor%20Specification%20zwave%20authentication.pdf",
"pid": 2641,
"imageRemotePath": "https://products.z-wavealliance.org/ProductImages/Index?productName=ZC10-17125902",
"learnmode": {
"image": "/drivers/HKZW-FLD01/assets/learnmode.svg",
"instruction": {
"en": "1.\tTo add the device secure (S0 or S2), *triple click* the Z-button.\n\t2.To add the device non-secure, *hold* the Z-button for 3 seconds, the led will turn green.\n\tIf the inclusion mode is successfully activated, the LED will blink fast.",
"nl": "1.\tOm de sensor beveiligd (S0 of S2) toe te voegen, druk de Z-button *drie keer snel* in\n\t2.Om de sensor niet beveiligd toe te voegen, houdt de Z-button ingedrukt voor 3 seconden. Tijdens het indrukken wordt de LED groen.\n\tWanneer de toevoegmodus succesvol geactiveerd is, zal de LED snel knipperen."
}
},
"unlearnmode": {
"image": "/drivers/HKZW-FLD01/assets/learnmode.svg",
"instruction": {
"en": "1.\tClick the Z-button triple click the Z-button quickly to remove the device.\n2. \tIf the removal is successful, the LED will blink fast in orange.",
"nl": "1.\tDruk de Z-knop snel drie keep in om het apparaat te verwijderen\n2.\tWanneer het verwijderen succesvol is, zal de LED snel in het oranje knipperen."
}
},
"wakeUpInterval": 0,
"associationGroups": [
1
],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "1. Z-wave lifeline.\n\n2. Notification Report.\r\nSensor will send Notification Report to the associated nodes when Flood Sensor is removed or/and sensor is triggered.\r\n3. Sensor Multilevel Report.\r\nFlood Sensor will send Sensor Multilevel Report to the associated nodes at setting interval.\r\n4. Battery Report.\r\nFlood Sensor will send Battery Report when the battery level is low and the battery report’s value is 0xFF.\r\n5. Device Reset Locally Notification.\r\n",
"nl": "1. Z-wave lifeline.\n\n2. Notification Report.\r\nSensor stuurt het Notification report naar de gekoppelde nodes wanneer de Flood Sensor verplaatst wordt en of de sensor geactiveerd wordt.\r\n3. Sensor Multilevel Report.\r\nFlood Sensor stuur het Sensor Multilevel Report naar de gekoppelde nodes op de ingestelde intervallen.\r\n4. Battery Report.\r\nFlood Sensor stuurt het Battery Report wanneer het battery niveau te laag is.\r\n5. Device Reset Locally Notification.\r\n"
}
},
"2": {
"hint": {
"en": "1. Basic Set\r\nFlood Sensor will send Basic Set to associated nodes when the sensor is triggered.",
"nl": "1. Basic Set\r\nFlood Sensor stuurt Basic Set commando naar de gekoppelde nodes wanneer de sensor geactiveerd is."
}
}
}
},
"class": "sensor",
"capabilities": [
"measure_temperature",
"alarm_water",
"alarm_heat",
"alarm_tamper",
"alarm_battery",
"measure_battery"
],
"energy": {
"batteries": [
"LS14250"
]
},
"images": {
"large": "/drivers/HKZW-FLD01/assets/images/large.png",
"small": "/drivers/HKZW-FLD01/assets/images/small.png"
},
"id": "HKZW-FLD01",
"settings": [
{
"id": "BASIC_SET_command",
"zwave": {
"index": 14,
"size": 1
},
"type": "checkbox",
"value": false,
"label": {
"en": "Enable BASIC_SET command",
"nl": "BASIC SET command inschakelen"
},
"hint": {
"en": "Flood Sensor can send BASIC ON/OFF COMMAND CLASS to nodes associated with group 2.",
"nl": "Flood Sensor kan BASIC SET commando's versturen naar nodes gekoppeld aan groep 2."
}
},
{
"id": "BASIC_SET_reversed",
"zwave": {
"index": 15,
"size": 1
},
"type": "dropdown",
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "ON when motion alarm triggered, OFF when canceled (default)",
"nl": "AAN bij bewegingsdetectie, UIT bij annulering (standaard)"
}
},
{
"id": "1",
"label": {
"en": "OFF when motion alarm triggered, ON when canceled (default)",
"nl": "UIT bij bewegingsdetectie, AAN bij annulering (standaard)"
}
}
],
"label": {
"en": "Reverse BASIC SET command",
"nl": "BASIC SET command logica"
},
"hint": {
"en": "Flood Sensor can reverse its value of BASIC SET when the alarm is triggered.",
"nl": "Flood Sensor kan de waarde van het BASIC SET commando omwisselen wanneer een alarm geactiveerd wordt."
}
},
{
"id": "flooding_alarm_interval",
"zwave": {
"index": 17,
"size": 1,
"signed": false
},
"type": "number",
"value": 5,
"attr": {
"min": 1,
"max": 255
},
"label": {
"en": " Overstromings alarm rapportage interval (min)"
},
"hint": {
"en": "The interval of sending flooding alarm report to association device (Group Lifeline). \nDefault: 5 min, Range: 1 - 255 min",
"nl": "Het interval waarop het overstromings alarm naar de gekoppelde nodes wordt gestuurd (Group Lifeline). \nStandaard: 5 min, Bereik: 1 - 255 min"
}
},
{
"id": "Enable_tamper_alarm",
"zwave": {
"index": 18,
"size": 1
},
"type": "checkbox",
"value": true,
"label": {
"en": "Enable Tamper alarm",
"nl": "Trillingsalarm inschakelen"
},
"hint": {
"en": "Motion sensor can send a tamper alarm when a vibration / shock is detected.",
"nl": "Motion sensor kan een trillingsalarm versturen wanneer een trilling / schok gedetecteerd wordt."
}
},
{
"id": "temperature_interval",
"zwave": {
"index": 19,
"size": 1,
"signed": false
},
"type": "number",
"value": 144,
"attr": {
"min": 3,
"max": 240
},
"label": {
"en": "Temperature report interval (min)",
"nl": "Temperature rapportage interval (min)"
},
"hint": {
"en": "The interval of sending temperature report to association device (Group Lifeline). \r\nThe reports are sent even if there are no changes in the temperature level.\nDefault: 10 min, Range: 1 - 255 min",
"nl": "Het interval waarop temperatuur reports naar de gekoppelde nodes wordt gestuurd (Group Lifeline). \r\nDe reports worden ook gestuurd wanneer de temperatuur ongewijzigd is.\nStandaard: 10 min, Bereik: 1 - 255 min"
}
},
{
"id": "temperature_alarm_high",
"zwave": {
"index": 19,
"size": 2
},
"type": "number",
"value": 40,
"attr": {
"min": -55,
"max": 125
},
"label": {
"en": "Temperature alarm high threshold",
"nl": "Temperature alarm hoge grenswaarde"
},
"hint": {
"en": "The high threshold of sending temperature alarm to association device (Group Lifeline). \nDefault: 40 degrees, Range: -55 - 125 degrees",
"nl": "Het hoge grenswaarde waarop temperatuur alarm naar de gekoppelde nodes wordt gestuurd (Group Lifeline). \nStandaard: 40 graden, Bereik: -55 - 125 graden"
}
},
{
"id": "temperature_alarm_low",
"zwave": {
"index": 20,
"size": 2
},
"type": "number",
"value": 0,
"attr": {
"min": -55,
"max": 125
},
"label": {
"en": "Temperature alarm lower threshold",
"nl": "Temperature alarm lage grenswaarde"
},
"hint": {
"en": "The lower threshold of sending temperature alarm to association device (Group Lifeline). \nDefault: 0 degrees, \nRange: -55 - 125 degrees",
"nl": "Het lage grenswaarde waarop temperatuur alarm naar de gekoppelde nodes wordt gestuurd (Group Lifeline). \nStandaard: 0 graden, \nBereik: -55 - 125 graden"
}
},
{
"id": "Enable_LED_alarm",
"zwave": {
"index": 24,
"size": 1
},
"type": "checkbox",
"value": true,
"label": {
"en": "Enable LED on alarm",
"nl": "LED inschakelen bij alarm"
},
"hint": {
"en": "Enable the LED when an alarm is activated.",
"nl": "Schakel de LED in wanneer een alarm geactiveerd is."
}
},
{
"id": "low_battery",
"zwave": {
"index": 32,
"size": 1
},
"type": "number",
"value": 20,
"attr": {
"min": 10,
"max": 50
},
"label": {
"en": "LOW Battery level",
"nl": "Waarschuwingsniveau batterij"
},
"hint": {
"en": "Define a battery level as the “low battery”.",
"nl": "Deze parameter bepaald het batterijniveau waarop het batterij alarm ingeschakeld wordt."
}
}
]
},
{
"name": {
"en": "Multisensor"
},
"zwave": {
"manufacturerId": [
520
],
"productTypeId": [
512,
513
],
"productId": [
6
],
"productDocumentation": "http://products.z-wavealliance.org/ProductManual/File?folder=&filename=Manuals/1891/HKZW-SO05%20Manual.pdf",
"pid": 2305,
"imageRemotePath": "http://products.z-wavealliance.org/ProductManual/File?folder=&filename=Manuals/2305/HKZW-MS01%20MANUL.pdf",
"learnmode": {
"image": "/drivers/HKZW-MS01/assets/learnmode.svg",
"instruction": {
"en": "1.\tPress and hold the Z-button for 3 seconds to add the device in secure mode.\n2. \tIf the inclusion is successful, the LED will blink fast for less than 5 seconds and then keep on for 3 seconds. \n\totherwise the LED will blink fast for 5 seconds and then turn off",
"nl": "1.\tHou de Z-knop ingedrukt voor 3 seconden om het apparaat in secure modus toe te voegen\n2.\tWanneer het toevoegen succesvol is, zal de LED minder dan 5 seconds knipperen en daarna aanblijven voor 3 seconden.\n\tIndien niet succesvol zal de LED 5 seconden knipperen en daarna uitblijven"
}
},
"unlearnmode": {
"image": "/drivers/HKZW-MS01/assets/learnmode.svg",
"instruction": {
"en": "1.\tTriple clicking the Z-button.\n2.\tIf successful excluded, the LED will turn off within 1 second.\n\tOtherwise, the LED will blink 5 seconds and then turn off.",
"nl": "1.\tDruk de Z-button drie kee in.\n2.\tWanneer succesvol verwijderd zal zal de LED uit gaan binnen 1 seconde\n\tWanneer niet succesvol, zal de LED 5 seconden knipperen en daarna uitblijven."
}
},
"wakeUpInterval": 0,
"associationGroups": [
1
],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "1. Z-wave lifeline.\n\n2. Notification Report.\r\nSensor will send Notification Report to the associated nodes when Multisensor is removed or/and PIR is triggered.\r\n3. Sensor Multilevel Report.\r\nMultisensor will send Sensor Multilevel Report to the associated nodes at setting interval.\r\n4. Battery Report.\r\nMultisensor will send Battery Report when the battery level is low and the battery report’s value is 0xFF.\r\n5. Device Reset Locally Notification.\r\n",
"nl": "1. Z-wave lifeline.\n\n2. Notification Report.\r\nSensor stuurt het Notification report naar de gekoppelde nodes wanneer de Multisensor verplaatst wordt en or de PIR geactiveerd wordt.\r\n3. Sensor Multilevel Report.\r\nMultisensor stuur het Sensor Multilevel Report naar de gekoppelde nodes op de ingestelde intervallen.\r\n4. Battery Report.\r\nMultisensor stuurt het Battery Report wanneer het battery niveau te laag is.\r\n5. Device Reset Locally Notification.\r\n"
}
},
"2": {
"hint": {
"en": "1. Basic Set\r\nMultisensor will send Basic Set to associated nodes when the PIR is triggered.",
"nl": "1. Basic Set\r\nMultisensor stuurt Basic Set commando naar de gekoppelde nodes wanneer de PIR geactiveerd is."
}
}
}
},
"class": "sensor",
"capabilities": [
"alarm_motion",
"measure_luminance",
"measure_temperature",
"measure_humidity",
"alarm_tamper",
"alarm_battery",
"measure_battery"
],
"energy": {
"batteries": [
"CR123A"
]
},
"images": {
"large": "/drivers/HKZW-MS01/assets/images/large.png",
"small": "/drivers/HKZW-MS01/assets/images/small.png"
},
"id": "HKZW-MS01",
"settings": [
{
"id": "PIR_sensitivity",
"zwave": {
"index": 12,
"size": 1
},
"type": "number",
"value": 8,
"attr": {
"min": 0,
"max": 8
},
"label": {
"en": "Motion sensor sensitivity.",
"nl": "Motion sensor gevoeligheid."
},
"hint": {
"en": "Hoe hoger de waarde is, hoe gevoeliger de PIR sensor reageert.\nStandaard: 8\nBereik: 0 (uitgeschakeld), 1 - 8"
},
"_size": 1
},
{
"id": "blind_time",
"zwave": {
"index": 13,
"size": 2
},
"value": 30,
"attr": {
"min": 3,
"max": 28800
},
"label": {
"en": "Motion sensor blinde tijd (s)"
},
"hint": {
"en": "Period of time through which the PIR sensor is “blind” (insensitive) to motion. After this time period the PIR sensor will be again able to detect motion. \nThe longer the insensitivity period, the longer the battery life. If the sensor is required to detect motion quickly, the time period may be shortened.\ntime (seconds) = value (3-60), time (minutes) = value/60 (61-28800)",
"nl": "Tijdsperiode waarin de PIR 'blind' (ongevoelig) is voor beweging. Na deze tijdsperiode is de PIR sensor weer in staat om beweging te detecteren. \nDe levensduur van de batterij neemt toe bij een hogere ongevoeligheid. Wanneer het nodig is dat de sensor beweging snel detecteert kan de tijdsperiode verkort worden\ntime (seconds) = value (3-60), time (minutes) = value/60 (61-28800)"
},
"_size": 2,
"type": "number"
},
{
"id": "BASIC_SET_command",
"zwave": {
"index": 14,
"size": 1
},
"type": "checkbox",
"value": false,
"label": {
"en": "Enable BASIC_SET command",
"nl": "BASIC SET command inschakelen"
},
"hint": {
"en": "Multisensor can send BASIC ON/OFF COMMAND CLASS to nodes associated with group 2.",
"nl": "Multisensor kan BASIC SET commando's versturen naar nodes gekoppeld aan groep 2."
}
},
{
"id": "BASIC_SET_reversed",
"zwave": {
"index": 15,
"size": 1
},
"type": "dropdown",
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "ON when motion alarm triggered, OFF when canceled (default)",
"nl": "AAN bij bewegingsdetectie, UIT bij annulering (standaard)"
}
},
{
"id": "1",
"label": {
"en": "OFF when motion alarm triggered, ON when canceled (default)",
"nl": "UIT bij bewegingsdetectie, AAN bij annulering (standaard)"
}
}
],
"label": {
"en": "Reverse BASIC SET command",
"nl": "BASIC SET command logica"
},
"hint": {
"en": "Multisensor can reverse its value of BASIC SET when the alarm is triggered.",
"nl": "Multisensor kan de waarde van het BASIC SET commando omwisselen wanneer een alarm geactiveerd wordt."
}
},
{
"id": "low_battery",
"zwave": {
"index": 32,
"size": 1
},
"type": "number",
"value": 20,
"attr": {
"min": 10,
"max": 50
},
"label": {
"en": "LOW Battery level",
"nl": "Waarschuwingsniveau batterij"
},
"hint": {
"en": "Define a battery level as the “low battery”.",
"nl": "Deze parameter bepaald het batterijniveau waarop het batterij alarm ingeschakeld wordt."
}
},
{
"id": "battery_interval",
"zwave": {
"index": 171,
"size": 4
},
"type": "number",
"value": 1800,
"attr": {
"min": 5,
"max": 2678400
},
"label": {
"en": " Batterij rapportage interval (s)"
},
"hint": {
"en": "The interval of sending battery report to association device (Group Lifeline). \r\nThe reports are sent even if there are no changes in the battery level.\nDefault: 1800 s, Range: 0 = disabled, 5 - 2678400 s",
"nl": "Het interval waarop batterij reports naar de gekoppelde nodes wordt gestuurd (Group Lifeline). \r\nDe reports worden ook gestuurd wanneer het batterijniveau ongewijzigd is.\nStandaard: 1800 s, Bereik: 0 = uitgeschakeld, 5 - 2678400 s"
}
},
{
"id": "temperature_interval",
"zwave": {
"index": 172,
"size": 4
},
"type": "number",
"value": 1800,
"attr": {
"min": 5,
"max": 2678400
},
"label": {
"en": "Temperature report interval (s)",
"nl": "Temperature rapportage interval (s)"
},
"hint": {
"en": "The interval of sending temperature report to association device (Group Lifeline). \r\nThe reports are sent even if there are no changes in the temperature level.\nDefault: 1800 s, Range: 0 = disabled, 5 - 2678400 s",
"nl": "Het interval waarop temperatuur reports naar de gekoppelde nodes wordt gestuurd (Group Lifeline). \r\nDe reports worden ook gestuurd wanneer de temperatuur ongewijzigd is.\nStandaard: 1800 s, Bereik: 0 = uitgeschakeld, 5 - 2678400 s"
}
},
{
"id": "humidity_interval",
"zwave": {