This repository has been archived by the owner on Sep 30, 2021. It is now read-only.
forked from hfaas/nl.ROBBshop.ROBB-smarrt
-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
1368 lines (1368 loc) · 51.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
{
"id": "net.filllip-namron",
"version": "1.4.0",
"compatibility": ">=1.5.13",
"sdk": 2,
"brandColor": "#aac655",
"name": {
"en": "Namron"
},
"description": {
"en": "Adds support for Namron Z-wave devices"
},
"category": [
"lights"
],
"tags": {
"en": [
"Namron",
"Z-wave",
"remote",
"dimmer"
]
},
"permissions": [],
"images": {
"large": "/assets/images/large.png",
"small": "/assets/images/small.png"
},
"author": {
"name": "Filip Andre Larsen Tomren",
"email": "[email protected]"
},
"contributors": {
"developers": [
{
"name": "Filip Andre Larsen Tomren",
"email": "[email protected]"
},
{
"name": "Åsmund Bakke Bø",
"email": "[email protected]"
}
]
},
"bugs": {
"url": "https://github.com/fiLLLip/namron-homey/issues"
},
"source": "https://github.com/fiLLLip/namron-homey",
"contributing": {
"donate": {
"paypal": {
"username": "fiLLLipnet"
}
}
},
"flow": {
"triggers": [
{
"id": "wall_controller_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 scene tokens.",
"nl": "Deze kaart wordt geactiveerd bij iedere knop die ingedrukt wordt en biedt de scene tokens aan."
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=ZW_Remote_4|ZW_WallController_2|ZW_WallController_4|ZW_WallController_8"
}
],
"tokens": [
{
"name": "button",
"type": "string",
"title": {
"en": "button",
"nl": "knop"
},
"example": {
"en": "0"
}
},
{
"name": "scene",
"type": "string",
"title": {
"en": "scene",
"nl": "scene"
},
"example": {
"en": "Button pressed (test)"
}
}
]
},
{
"id": "wall_controller_scene",
"title": {
"en": "A scene has been activated",
"nl": "Een scene is geactiveerd"
},
"hint": {
"en": "This card will only get triggered if the scene matches the state of the dropdown fields.",
"nl": "Deze kaart wordt alleen geactiveerd wanneer de scene overeenkomt met de toestand van de gekozen opties."
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=ZW_Remote_4|ZW_WallController_2|ZW_WallController_4|ZW_WallController_8"
},
{
"name": "button",
"type": "autocomplete"
},
{
"name": "scene",
"type": "autocomplete"
}
]
}
],
"actions": [
{
"title": {
"en": "Set forced brightness",
"nl": "Stel geforceerde helderheid in"
},
"hint": {
"en": "Change the \"set forced brightness\" parameter of your dimmer. If this parameter is active, switching on the Dimmer 2 (S1 single click) will always set this brightness level, 0 will disable this function.",
"nl": "Stel de \"geforceerde helderheid\" parameter van een dimmer in. Wanneer deze parameter actief is, zal bij het inschakelen van Dimmer 2 (S1 single click) altijd naar deze helderheid inschakelen, 0 schakelt deze functie uit."
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=ZB_Dimmer_3wire"
},
{
"type": "dropdown",
"name": "enable_set_forced_brightness",
"values": [
{
"id": "enabled",
"label": {
"en": "Enabled",
"nl": "Ingeschakeld"
}
},
{
"id": "disabled",
"label": {
"en": "Disabled",
"nl": "Uitgeschakeld"
}
}
]
},
{
"name": "set_forced_brightness_level",
"type": "range",
"min": 0,
"max": 1,
"step": 0.01,
"label": "%",
"labelMultiplier": 100
}
],
"id": "ZB_dim_set_forced_brightness"
}
]
},
"drivers": [
{
"id": "ZW_Dimmer_3wire",
"name": {
"en": "Dimmer - 3 wire (Z-wave)",
"nl": "Inbouwdimmer 3-draads (Z-wave)"
},
"class": "light",
"capabilities": [
"dim",
"onoff"
],
"capabilitiesOptions": {
"onoff": {
"setOnDim": false
},
"dim": {
"opts": {
"duration": true
}
}
},
"energy": {
"approximation": {
"usageOn": 400,
"usageOff": 0
}
},
"icon": "/drivers/ZW_Dimmer_3wire/assets/icon.svg",
"images": {
"large": "/drivers/ZW_Dimmer_3wire/assets/images/large.png",
"small": "/drivers/ZW_Dimmer_3wire/assets/images/small.png"
},
"zwave": {
"manufacturerId": [
816,
1080
],
"productTypeId": [
512
],
"productId": [
53253
],
"zwaveAllianceProductId": 3641,
"zwaveAllianceProductDocumentation": "https://products.z-wavealliance.org/ProductManual/File?folder=&filename=product_documents/3641/4512710%20INSTRUCTION%20MANUAL.pdf",
"learnmode": {
"image": "/drivers/ZW_Dimmer_3wire/assets/learnmode.svg",
"instruction": {
"en": "1. Power on the in-wall dimmer and set it into inclusion mode. \nThere are two methods to set the in-wall dimmer into inclusion mode:\n1)Repower on the dimmer, it will be set into inclusion mode automatically, and waiting to be included.\n2)Triple press the reset button on the dimmer, it will set the plug into inclusion mode.\nThe connected light will stay solid on for 3 seconds to indicate successful inclusion.",
"nl": "1. Schakel de inbouwdimmer in en activeer de inclusion modus. \nDe inclusion modus wordt geactiveerd op de volgende twee mmanieren:\n1)Stroom opnieuw inschakelen op de dimmer, waarna de dimmer automatisch de inclusion mode activeerd en wacht om toegevoegd te worden. \n2)Drie keer de reset knop op de dimmer indrukken activeert de inclusion modus.\nDe aangesloten lamp brand gedurende 3 seconden wanneer het toevoegen succesvol afgerond is."
}
},
"unlearnmode": {
"image": "/drivers/ZW_Dimmer_3wire/assets/learnmode.svg",
"instruction": {
"en": "To remove the dimmer, triple press the reset button. \nThe dimmer will be set to exclusion mode, and waiting to be excluded, then the dimmer will be excluded to the network.",
"nl": "Om de dimmer te verwijderen, druk drie keer de reset knop op de dimmer in. \n De exclusion modus van de dimmer wordt geactiveerd en de dimmer wordt verwijdert uit het netwerk."
}
},
"associationGroups": [
1
],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "Lifeline association group (do not change)",
"nl": "Lifeline association group (niet aanpassen)"
}
}
}
},
"settings": [
{
"type": "group",
"label": {
"en": "Button behaviour",
"nl": "Gedrag knoppen"
},
"collapsed": false,
"children": [
{
"id": "external_switch_inclusion",
"value": true,
"label": {
"en": "Enable external switch",
"nl": "External schakelaar gebruiken"
},
"hint": {
"en": "This parameter (7) determines the option to use an external switch to include or exclude the device from the network.",
"nl": "Deze parameter (7) schakelt de optie in om een externe schakelaar te gebruiken om de dimmer toe te voegen of te verwijderen uit het netwerk."
},
"zwave": {
"index": 7,
"size": 1
},
"type": "checkbox"
}
]
},
{
"type": "group",
"label": {
"en": "Dimming",
"nl": "Dimmen"
},
"collapsed": true,
"children": [
{
"id": "dim_duration",
"label": {
"en": "Dim duration",
"nl": "Dim transitietijd"
},
"hint": {
"en": "This parameter (4) determines the default dim duration. Values: 1 - 127 seconds, 0: Instantly. Default: 1 second",
"nl": "Deze parameter (4) bepaalt de standaard dim transitietijd in seconden. Waardes: 1 - 127 seconden, 0: Instantaan. Standaard: 1 seconde"
},
"zwave": {
"index": 4,
"size": 1,
"signed": false
},
"type": "number",
"value": 1,
"attr": {
"min": 0,
"max": 127
}
},
{
"id": "minimum_brightness",
"value": 0,
"label": {
"en": "Minimum brightness value",
"nl": "Laagste dim niveau"
},
"hint": {
"en": "This parameter (5) determines the minimum brightness level. Default: 0 %",
"nl": "Deze parameter (5) bepaalt het laagste dim niveau. Standaard: 0 %"
},
"zwave": {
"index": 5,
"size": 1
},
"attr": {
"min": 0,
"max": 50
},
"type": "number"
}
]
},
{
"type": "group",
"label": {
"en": "Other",
"nl": "Overige"
},
"collapsed": true,
"children": [
{
"id": "save_state",
"value": "0",
"label": {
"en": "Restore state after power failure",
"nl": "Herstel status na stroomonderbreking"
},
"hint": {
"en": "This parameter (2) determines whether after a power failure the device should be restored to the state it had before the power failure.",
"nl": "Deze parameter (2) bepaalt of het apparaat na een stroomonderbreking moet worden ingesteld zoals deze voor de stroomonderbreking stond ingesteld."
},
"zwave": {
"index": 2,
"size": 1
},
"values": [
{
"id": "0",
"label": {
"en": "Turn off load (default)",
"nl": "Schakel de lamp uit (standaard)"
}
},
{
"id": "1",
"label": {
"en": "Turn on load",
"nl": "Schakel de lamp in"
}
},
{
"id": "2",
"label": {
"en": "Restore state",
"nl": "Herstel toestand"
}
}
],
"type": "dropdown"
},
{
"id": "send_basic_report",
"value": true,
"label": {
"en": "Send `BASIC report`",
"nl": "Stuur `BASIC report`"
},
"hint": {
"en": "This parameter (3) determines whether the `BASIC report` is send to the Lifeline when the load state changed. Default: activated",
"nl": "Deze parameter (3) bepaalt of het `BASIC report` wordt verstuurd naar de controller wanneer de toestand van de dimmer verandert. Standaard: ingeschakeld"
},
"zwave": {
"index": 3,
"size": 1
},
"type": "checkbox"
},
{
"id": "driving_type",
"value": "0",
"label": {
"en": "MOSFET driving type"
},
"hint": {
"en": "This parameter (6) determines the used MOSFET driving type. Default: Leading edge",
"nl": "Deze parameter (6) bepaalt de gebruikte MOSFET driving type. Standaard: Fase aansnijding"
},
"zwave": {
"index": 6,
"size": 1
},
"values": [
{
"id": "0",
"label": {
"en": "Leading edge (default)",
"nl": "Fase aansnijding (standaard)"
}
},
{
"id": "1",
"label": {
"en": "Trailing edge",
"nl": "Fase afsnijding"
}
}
],
"type": "dropdown"
}
]
}
]
},
{
"id": "ZW_Dimmer_Rotary",
"name": {
"en": "Dimmer - Rotary (Z-wave)"
},
"class": "light",
"capabilities": [
"dim",
"onoff"
],
"capabilitiesOptions": {
"onoff": {
"setOnDim": false
},
"dim": {
"opts": {
"duration": true
}
}
},
"energy": {
"approximation": {
"usageOn": 200,
"usageOff": 0
}
},
"icon": "/drivers/ZW_Dimmer_Rotary/assets/icon.svg",
"images": {
"large": "/drivers/ZW_Dimmer_Rotary/assets/images/large.png",
"small": "/drivers/ZW_Dimmer_Rotary/assets/images/small.png"
},
"zwave": {
"manufacturerId": 1080,
"productTypeId": [
514
],
"productId": [
2
],
"learnmode": {
"image": "/drivers/ZW_Dimmer_Rotary/assets/learnmode.svg",
"instruction": {
"en": "1. Power on the in-wall dimmer and set it into inclusion mode. \nTriple press the reset button on the dimmer, it willset the dimmer to inclusion mode. A purple light will show for 10 seconds while the device is in inclusion mode"
}
},
"unlearnmode": {
"image": "/drivers/ZW_Dimmer_Rotary/assets/learnmode.svg",
"instruction": {
"en": "To remove the dimmer, triple press the reset button. \nThe dimmer will be set to exclusion mode, and waiting to be excluded, then the dimmer will be excluded to the network."
}
},
"associationGroups": [
1
],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "Lifeline association group (do not change)"
}
}
}
},
"settings": [
{
"type": "group",
"label": {
"en": "Button behaviour",
"nl": "Gedrag knoppen"
},
"collapsed": false,
"children": [
{
"id": "external_switch_inclusion",
"value": false,
"label": {
"en": "Enable external switch",
"nl": "External schakelaar gebruiken"
},
"hint": {
"en": "This parameter (5) determines the option to use an external switch to include or exclude the device from the network. Default: Disabled",
"nl": "Deze parameter (5) schakelt de optie in om een externe schakelaar te gebruiken om de dimmer toe te voegen of te verwijderen uit het netwerk."
},
"zwave": {
"index": 5,
"size": 1
},
"type": "checkbox"
}
]
},
{
"type": "group",
"label": {
"en": "Dimming",
"nl": "Dimmen"
},
"collapsed": true,
"children": [
{
"id": "dim_duration",
"label": {
"en": "Dim duration",
"nl": "Dim transitietijd"
},
"hint": {
"en": "This parameter (3) determines the default dim duration. Values: 0 - 100. 0: Instantly. 100: Slow. Default: 5"
},
"zwave": {
"index": 3,
"size": 1,
"signed": false
},
"type": "number",
"value": 5,
"attr": {
"min": 0,
"max": 100
}
},
{
"id": "on_off_dim_duration",
"label": {
"en": "On/off fade duration"
},
"hint": {
"en": "This parameter (8) determines the fade duration when turning dimmer on and off. Values: 0-60 seconds. Default: 0"
},
"zwave": {
"index": 8,
"size": 1,
"signed": false
},
"type": "number",
"value": 0,
"attr": {
"min": 0,
"max": 60
}
},
{
"id": "dim_method",
"value": "0",
"label": {
"en": "Dim method"
},
"hint": {
"en": "This parameter (6) determines if the dimmer uses linear or logarithmic dimming."
},
"zwave": {
"index": 6,
"size": 1
},
"values": [
{
"id": "0",
"label": {
"en": "Linear (default)"
}
},
{
"id": "1",
"label": {
"en": "Logarithmic"
}
}
],
"type": "dropdown"
}
]
},
{
"type": "group",
"label": {
"en": "Other",
"nl": "Overige"
},
"collapsed": true,
"children": [
{
"id": "default_brightness",
"label": {
"en": "Default brightness"
},
"hint": {
"en": "This parameter (7) determines the default brightness when turned on. 0: Dimmer will use state after power is restored (parameter 1). Values: 0 - 99. Default: 0"
},
"zwave": {
"index": 7,
"size": 1,
"signed": false
},
"type": "number",
"value": 0,
"attr": {
"min": 0,
"max": 99
}
},
{
"id": "save_state",
"value": "0",
"label": {
"en": "Restore state after power failure",
"nl": "Herstel status na stroomonderbreking"
},
"hint": {
"en": "This parameter (1) determines whether after a power failure the device should be restored to the state it had before the power failure.",
"nl": "Deze parameter (1) bepaalt of het apparaat na een stroomonderbreking moet worden ingesteld zoals deze voor de stroomonderbreking stond ingesteld."
},
"zwave": {
"index": 1,
"size": 1
},
"values": [
{
"id": "0",
"label": {
"en": "Turn off light (default)",
"nl": "Schakel de lamp uit (standaard)"
}
},
{
"id": "1",
"label": {
"en": "Turn on light",
"nl": "Schakel de lamp in"
}
},
{
"id": "2",
"label": {
"en": "Restore state",
"nl": "Herstel toestand"
}
}
],
"type": "dropdown"
},
{
"id": "send_basic_report",
"value": true,
"label": {
"en": "Send `BASIC report`",
"nl": "Stuur `BASIC report`"
},
"hint": {
"en": "This parameter (2) determines whether the `BASIC report` is sent to the Lifeline when the load state changed. Default: activated",
"nl": "Deze parameter (2) bepaalt of het `BASIC report` wordt verstuurd naar de controller wanneer de toestand van de dimmer verandert. Standaard: ingeschakeld"
},
"zwave": {
"index": 2,
"size": 1
},
"type": "checkbox"
}
]
}
]
},
{
"id": "ZW_InWallSwitch",
"name": {
"en": "Switch (Z-wave)"
},
"class": "light",
"capabilities": [
"onoff"
],
"energy": {
"approximation": {
"usageOn": 400,
"usageOff": 0
}
},
"icon": "/drivers/ZW_InWallSwitch/assets/icon.svg",
"images": {
"large": "/drivers/ZW_InWallSwitch/assets/images/large.png",
"small": "/drivers/ZW_InWallSwitch/assets/images/small.png"
},
"zwave": {
"manufacturerId": [
816,
1080
],
"productTypeId": [
512
],
"productId": [
53254
],
"learnmode": {
"image": "/drivers/ZW_InWallSwitch/assets/learnmode.svg",
"instruction": {
"en": "1. Power on the in-wall switch and set it into inclusion mode. \nThere are two methods to set the in-wall switch into inclusion mode:\n1)Repower on the switch, it will be set into inclusion mode automatically, and waiting to be included.\n2)Triple press the reset button on the switch, it will set the plug into inclusion mode.\nThe connected light will stay solid on for 3 seconds to indicate successful inclusion."
}
},
"unlearnmode": {
"image": "/drivers/ZW_InWallSwitch/assets/learnmode.svg",
"instruction": {
"en": "To remove the switch, triple press the reset button. \nThe switch will be set to exclusion mode, and waiting to be excluded, then the switch will be excluded to the network."
}
},
"associationGroups": [
1
],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "Lifeline association group (do not change)",
"nl": "Lifeline association group (niet aanpassen)"
}
}
}
},
"settings": [
{
"type": "group",
"label": {
"en": "Button behaviour",
"nl": "Gedrag knoppen"
},
"collapsed": false,
"children": [
{
"id": "external_switch_inclusion",
"value": true,
"label": {
"en": "Enable external switch",
"nl": "External schakelaar gebruiken"
},
"hint": {
"en": "This parameter (7) determines the option to use an external switch to include or exclude the device from the network.",
"nl": "Deze parameter (7) schakelt de optie in om een externe schakelaar te gebruiken om de dimmer toe te voegen of te verwijderen uit het netwerk."
},
"zwave": {
"index": 7,
"size": 1
},
"type": "checkbox"
}
]
},
{
"type": "group",
"label": {
"en": "Other",
"nl": "Overige"
},
"collapsed": true,
"children": [
{
"id": "save_state",
"value": "0",
"label": {
"en": "Restore state after power failure",
"nl": "Herstel status na stroomonderbreking"
},
"hint": {
"en": "This parameter (2) determines whether after a power failure the device should be restored to the state it had before the power failure.",
"nl": "Deze parameter (2) bepaalt of het apparaat na een stroomonderbreking moet worden ingesteld zoals deze voor de stroomonderbreking stond ingesteld."
},
"zwave": {
"index": 2,
"size": 1
},
"values": [
{
"id": "0",
"label": {
"en": "Turn off load (default)",
"nl": "Schakel de lamp uit (standaard)"
}
},
{
"id": "1",
"label": {
"en": "Turn on load",
"nl": "Schakel de lamp in"
}
},
{
"id": "2",
"label": {
"en": "Restore state",
"nl": "Herstel toestand"
}
}
],
"type": "dropdown"
},
{
"id": "send_basic_report",
"value": true,
"label": {
"en": "Send `BASIC report`",
"nl": "Stuur `BASIC report`"
},
"hint": {
"en": "This parameter (3) determines whether the `BASIC report` is send to the Lifeline when the load state changed. Default: activated",
"nl": "Deze parameter (3) bepaalt of het `BASIC report` wordt verstuurd naar de controller wanneer de toestand van de dimmer verandert. Standaard: ingeschakeld"
},
"zwave": {
"index": 3,
"size": 1
},
"type": "checkbox"
},
{
"id": "driving_type",
"value": "0",
"label": {
"en": "MOSFET driving type"
},
"hint": {
"en": "This parameter (6) determines the used MOSFET driving type. Default: Leading edge",
"nl": "Deze parameter (6) bepaalt de gebruikte MOSFET driving type. Standaard: Fase aansnijding"
},
"zwave": {
"index": 6,
"size": 1
},
"values": [
{
"id": "0",
"label": {
"en": "Leading edge (default)",
"nl": "Fase aansnijding (standaard)"
}
},
{
"id": "1",
"label": {
"en": "Trailing edge",
"nl": "Fase afsnijding"
}
}
],
"type": "dropdown"
}
]
}
]
},
{
"id": "ZW_Remote_4",
"name": {
"en": "Remote - 4 channel (Z-wave)",
"nl": "Afstandsbediening - 4 kanaals (Z-wave)"
},
"icon": "/drivers/ZW_Remote_4/assets/icon.svg",
"images": {
"large": "/drivers/ZW_Remote_4/assets/images/large.png",
"small": "/drivers/ZW_Remote_4/assets/images/small.png"
},
"class": "sensor",
"capabilities": [
"measure_battery",
"alarm_battery"
],
"energy": {
"batteries": [
"CR2450"
]
},
"mobile": {
"components": [
{
"id": "icon"
},
{
"id": "battery",
"capabilities": [
"measure_battery"
],
"options": {
"showTitle": true
}
}
]
},
"zwave": {
"manufacturerId": [
816,
1080
],
"productTypeId": 768,
"productId": 45826,
"zwaveAllianceProductId": 3334,
"zwaveAllianceProductDocumentation": "https://products.z-wavealliance.org/ProductManual/File?folder=&filename=Manuals/3334/SR-ZV9001K8-DIM-G4%20Instruction%2020190314.pdf",
"imageRemotePath": "",
"learnmode": {
"image": "/drivers/ZW_Remote_4/assets/learnmode.svg",
"instruction": {
"en": "To include the remote to Homey: \nPress and hold down both I and O (upper rockers) over 3 seconds. \nThe red LED indicator will turn on and the remote will be set to adding mode. \nThe red LED indicator blinking 6 times will indicate successful inclusion.",
"nl": "Om de afstandsbediening aan Homey toe te voegen: \n1. Hou beide knoppen I en O (bovenste knoppen) ingedrukt voor 3 seconden. \nDe rode LED indicator gaat aan en de wall controller is in toevoegmodus gezet. \nDe rode LED indicator knippert 6 keer wanneer het toevoegen succesvol is."
}
},
"unlearnmode": {
"image": "/drivers/ZW_Remote_4/assets/learnmode.svg",
"instruction": {
"en": "To remove the remote from Homey: \nPress and hold down both buttons I and O (upper rockers) over 3 seconds. \nThe red LED indicator will turn on and the remote will be set to adding mode. \nThe red LED indicator blinking 4 times will indicate successful inclusion.",
"nl": "Om de afstandsbediening van Homey te verwijderen: \n1. Hou beide knoppen I en O (bovenste knoppen) ingedrukt voor 3 seconden. \nDe rode LED indicator gaat aan en de wall controller is in toevoegmodus gezet. \nDe rode LED indicator knippert 4 keer wanneer het toevoegen succesvol is."
}
},
"associationGroups": [
1
],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "Lifeline. Scene Notification and battery reporting is addressed to this group. Only one node can be assigned to this association group. \nDefault: 1 (Homey's ID)",
"nl": "Lifeline: Association Groep 1 wordt gebruikt om alle rapportages door te geven. Slechts een node kan toegevoegd worden aan deze associatie groep. \nStandaard: 1 (Homey's ID)"
}
},
"2": {
"hint": {
"en": "Group 1 (upper rockers): Adding other Z-wave devices to this group will enable direct control from Wall controller to that device:\nShort press: on/off (BASIC_SET) command \nLong press: increase / decrease dim-level command (SWITCH_MULTILEVEL).",
"nl": "Groep 1 (bovenste knoppen): Het toevoegen van andere Z-wave devices aan deze groep zal directe controle van de Wall controller over deze devices toevoegen:\nKort ingedrukt: on/off (BASIC_SET) commando\nLang ingedrukt: verhoog / verlaag dim-level commando (SWITCH_MULTILEVEL)."
}
},
"3": {
"hint": {
"en": "Group 2: Adding other Z-wave devices to this group will enable direct control from Wall controller to that device:\nShort press: on/off (BASIC_SET) command \nLong press: increase / decrease dim-level command (SWITCH_MULTILEVEL).",
"nl": "Groep 2: Het toevoegen van andere Z-wave devices aan deze groep zal directe controle van de Wall controller over deze devices toevoegen:\nKort ingedrukt: on/off (BASIC_SET) commando\nLang ingedrukt: verhoog / verlaag dim-level commando (SWITCH_MULTILEVEL)."
}
},
"4": {
"hint": {
"en": "Group 3: Adding other Z-wave devices to this group will enable direct control from Wall controller to that device:\nShort press: on/off (BASIC_SET) command \nLong press: increase / decrease dim-level command (SWITCH_MULTILEVEL).",
"nl": "Groep 3: Het toevoegen van andere Z-wave devices aan deze groep zal directe controle van de Wall controller over deze devices toevoegen:\nKort ingedrukt: on/off (BASIC_SET) commando\nLang ingedrukt: verhoog / verlaag dim-level commando (SWITCH_MULTILEVEL)."
}
},
"5": {
"hint": {
"en": "Group 4 (bottom rockers): Adding other Z-wave devices to this group will enable direct control from Wall controller to that device:\nShort press: on/off (BASIC_SET) command \nLong press: increase / decrease dim-level command (SWITCH_MULTILEVEL).",
"nl": "Groep 4 (onderste knoppen): Het toevoegen van andere Z-wave devices aan deze groep zal directe controle van de Wall controller over deze devices toevoegen:\nKort ingedrukt: on/off (BASIC_SET) commando\nLang ingedrukt: verhoog / verlaag dim-level commando (SWITCH_MULTILEVEL)."
}
}
}
},
"settings": [
{
"id": "Wake-up_notification",
"value": "Wake up Wall controller before save",
"type": "label",
"label": {
"en": "Note:"
},
"hint": {
"en": "Short press a button to wake-up the Wall controller for 3 seconds, then press and hold I and O together over one second to wake-up the wall switch for 7 seconds.\nThen press save.",
"nl": "Druk kort op een knop om de wand controller te activeren, houdt daarna I en O tegelijkertijd ingedrukt om de Z-push voor 7 seconden wakker te houden.\nDruk daarna op save."
}
}
]
},
{
"id": "ZW_WallController_2",
"name": {
"en": "Wall controller - 2 button (Z-wave)"
},
"icon": "/drivers/ZW_WallController_2/assets/icon.svg",
"images": {
"large": "/drivers/ZW_WallController_2/assets/images/large.png",
"small": "/drivers/ZW_WallController_2/assets/images/small.png"
},
"class": "sensor",
"capabilities": [
"measure_battery",
"alarm_battery"
],