This repository has been archived by the owner on Apr 12, 2020. It is now read-only.
forked from caseda/com.tkbhome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
1430 lines (1430 loc) · 41.8 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.tkbhome",
"name": {
"en": "TKB Home"
},
"version": "1.0.5",
"compatibility": ">=1.1.5",
"description": {
"en": "TKB Home devices for Homey"
},
"category": [
"appliances",
"lights",
"security"
],
"images": {
"large": "/assets/images/large.png",
"small": "/assets/images/small.png"
},
"author": {
"name": "Remco Mengers",
"email": "[email protected]"
},
"contributors": {
"developers": [
{
"name": "Michel Nederlof",
"email": ""
}
]
},
"capabilities": {
"measure_luminance_level": {
"type": "number",
"title": {
"en": "Luminance Level",
"nl": "Helderheid Niveau"
},
"units": {
"en": "%"
},
"desc": {
"en": "Luminance Level in Percentage (%)",
"nl": "Helderheid Niveau in Percentage (%)"
},
"chartType": "spline",
"decimals": 0,
"getable": true,
"setable": false
}
},
"flow": {
"triggers": [
{
"id": "TSP01_brightness",
"title": {
"en": "The luminance level has changed",
"nl": "Het helderheids niveau is veranderd"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=TSP01"
}
],
"tokens": [
{
"name": "luminance",
"type": "number",
"title": {
"en": "Level",
"nl": "Niveau"
},
"example": 50
}
]
},
{
"id": "TZ36D_s2_single_on",
"title": {
"en": "Right switched on",
"nl": "Rechts aan geschakeld"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=TZ36"
}
]
},
{
"id": "TZ36D_s2_single_off",
"title": {
"en": "Right switched off",
"nl": "Rechts uit geschakeld"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=TZ36"
}
]
},
{
"id": "TZ36D_s2_double_on",
"title": {
"en": "Right switched 2x on",
"nl": "Rechts 2x aan geschakeld"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=TZ36"
}
]
},
{
"id": "TZ36D_s2_double_off",
"title": {
"en": "Right switched 2x off",
"nl": "Rechts 2x uit geschakeld"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=TZ36"
}
]
},
{
"id": "TZ65D_s2_single_on",
"title": {
"en": "Right switched on",
"nl": "Rechts aan geschakeld"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=TZ65"
}
]
},
{
"id": "TZ65D_s2_single_off",
"title": {
"en": "Right switched off",
"nl": "Rechts uit geschakeld"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=TZ65"
}
]
},
{
"id": "TZ65D_s2_double_on",
"title": {
"en": "Right switched 2x on",
"nl": "Rechts 2x aan geschakeld"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=TZ65"
}
]
},
{
"id": "TZ65D_s2_double_off",
"title": {
"en": "Right switched 2x off",
"nl": "Rechts 2x uit geschakeld"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=TZ65"
}
]
},
{
"id": "TZ66D_s2_single_on",
"title": {
"en": "Right switched on",
"nl": "Rechts aan geschakeld"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=TZ66"
}
]
},
{
"id": "TZ66D_s2_single_off",
"title": {
"en": "Right switched off",
"nl": "Rechts uit geschakeld"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=TZ66"
}
]
},
{
"id": "TZ66D_s2_double_on",
"title": {
"en": "Right switched 2x on",
"nl": "Rechts 2x aan geschakeld"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=TZ66"
}
]
},
{
"id": "TZ66D_s2_double_off",
"title": {
"en": "Right switched 2x off",
"nl": "Rechts 2x uit geschakeld"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=TZ66"
}
]
}
]
},
"drivers": [
{
"id": "TSP01",
"name": {
"en": "3(4) in 1 Multi Sensor TSP01/TSM02",
"nl": "3(4) in 1 Multi Sensor TSP01/TSM02"
},
"zwave": {
"manufacturerId": 280,
"productTypeId": 2,
"productId": [
2
],
"learnmode": {
"image": "/drivers/TSP01/assets/learnmode.svg",
"instruction": {
"en": "Press the tamper key 3 times, within 1.5 seconds",
"nl": "Druk 3 keer op het sabotage knopje, binnen 1,5 seconden"
}
},
"associationGroups": [
1,
2
],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "This is the controller group, it is not recommended to change this setting.",
"nl": "Dit is de controller groep, het is niet aangeraden deze te wijzigen."
}
},
"2": {
"hint": {
"en": "Light control group, also serves as a motion cancellation (delay)",
"nl": "Dit is de licht controller groep, functioneerd ook als beweging alarm annulering (vertraging)."
}
}
},
"defaultConfiguration": [
{
"id": 5,
"size": 1,
"value": 12
},
{
"id": 12,
"size": 1,
"value": 4
},
{
"id": 13,
"size": 1,
"value": 4
}
]
},
"class": "sensor",
"capabilities": [
"alarm_contact",
"alarm_motion",
"alarm_tamper",
"measure_luminance_level",
"measure_temperature",
"measure_battery"
],
"mobile": {
"compontents": [
{
"id": "icon"
},
{
"id": "battery",
"capabilities": [
"measure_battery"
]
},
{
"id": "sensor",
"capabilities": [
"alarm_contact",
"alarm_motion",
"measure_luminance_level",
"measure_temperature",
"alarm_tamper"
],
"options": {
"icons": {
"measure_luminance_level": "./drivers/TSP01/assets/measure_luminance_level.svg"
}
}
}
]
},
"images": {
"large": "/drivers/TSP01/assets/images/large.png",
"small": "/drivers/TSP01/assets/images/small.png"
},
"settings": [
{
"id": "basic_set_level",
"type": "number",
"attr": {
"min": 0,
"max": 255
},
"label": {
"en": "Basic Set Level",
"nl": "Basic Set waarde"
},
"hint": {
"en": "Setting the BASIC command value to turn on the light(s). The 255 means turn on the light. For dimmer equipment 1 to 99 means the light strength.",
"nl": "De waarde die wordt gestuurd tijdens het BASIC commando om het licht aan te zetten. Waarde 255 is verlichting Aan. Voor dimmers kan het bereik 1 - 99 worden gebruikt om de dim-sterkte in te stellen."
},
"value": 255
},
{
"id": "pir_sensitivity",
"type": "number",
"attr": {
"min": 0,
"max": 99
},
"label": {
"en": "Motion Sensitivity",
"nl": "Beweging Gevoeligheid"
},
"hint": {
"en": "High sensitivity means can detected long distance, but if there is more noise signal in the environment, it will re-trigger too frequency. Range: 0 (Off), 1 - 99.",
"nl": "Hoge sensitivity kan een grotere afstand overbruggen, maar gaat ook vaker af indien er meer ruis in de omgeving is. Bereik: 0 (Uit), 1 - 99."
},
"value": 70
},
{
"id": "turn_off_light_time",
"type": "number",
"attr": {
"min": 24,
"max": 1016,
"step": 8
},
"value": 32,
"label": {
"en": "Motion alarm cancellation delay",
"nl": "Bewegingsalarm annuleringsperiode"
},
"hint": {
"en": "Motion alarm cancellation and Turn lights off (Off command to Association Group 2) after these amount of seconds, in steps of 8 seconds. Range: 24 - 1016",
"nl": "Bewegings alarm annulering and Zet verlichting uit (Uit commando naar Associatie Groep 2) na deze hoeveelheid seconden, in stappen van 8 seconden. Bereik: 24 - 1016"
}
},
{
"id": "light_sensitivity",
"type": "number",
"attr": {
"min": 0,
"max": 100
},
"label": {
"en": "Motion, Brightness Threshold",
"nl": "Beweging, Helderheid Drempel"
},
"hint": {
"en": "The illummination threshold (in percentage) to turn on the light on movement (Association Group 2). Range: 0 (Off, never turn on light), 1 - 99, 100 (Always turn light on). Only in 1 - 99 range it will update lux value",
"nl": "De drempelwaarde (in percentage) voor de lichtsensor om het licht aan te schakelen bij beweging (Associatie Groep 2). Bereik: 0 (Uit, zet nooit licht aan), 1 - 99 , 100 (Zet altijd licht aan). Alleen in het 1 - 99 bereik zal de lux waarde worden geupdate"
},
"value": 99
},
{
"id": "test_mode",
"type": "checkbox",
"value": false,
"label": {
"en": "Test Mode",
"nl": "Test Modus"
},
"hint": {
"en": "Should the sensor be in test mode, or be in operation mode",
"nl": "Moet de sensor in test modus zijn, of in werking modus zijn."
}
},
{
"id": "operation_mode",
"type": "dropdown",
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "Home Automation Mode",
"nl": "Huis Automatisering Modus"
}
},
{
"id": "1",
"label": {
"en": "Security Mode",
"nl": "Beveiliging Modus"
}
}
],
"label": {
"en": "Operation Mode",
"nl": "Werking Modus"
},
"hint": {
"en": "Security = Always send Motion Alarms & Selectable PIR sleep timer. Home Automation = Motion on lux treshold & PIR inactive for 6 seconds.",
"nl": "Beveiliging = Altijd beweging melden & selecteerbare inactieve beweging timer. Huis Automatisering = Beweging onder Lux Drempel & Beweging inactief voor 6 seconden."
}
},
{
"id": "door/window_mode",
"type": "checkbox",
"value": false,
"label": {
"en": "Disable Door/Window Sensor",
"nl": "Deactiveer Deur/Raam Sensor"
},
"hint": {
"en": "Should the sensor have the door/window sensor be disabled. (only used in STM02)",
"nl": "Moet de sensor de deur/raam sensor deactief zijn. (Alleen gebruikt in STM02)"
}
},
{
"id": "temperature_monitoring",
"type": "checkbox",
"value": false,
"label": {
"en": "Enable temperature monitoring",
"nl": "Activeer temperatuur monitoring"
},
"hint": {
"en": "When enabled, it will report whenever the temperature has changed 1.5 degree Celcius. If the temperature is over 60 degrees Celcius, it will report every 64 seconds.",
"nl": "Indien ingeschakeld dan stuurt het een temperatuur rapport als de temperatuur anderhalve graad Celcius wijzigt. Als het warmer is als 60 graden Celcius dan stuurt het iedere 64 seconden een temperatuurrapport."
}
},
{
"id": "pir_redetect_interval_time",
"type": "number",
"attr": {
"min": 24,
"max": 1016,
"step": 8
},
"value": 24,
"label": {
"en": "PIR Re-detect Interval",
"nl": "Beweging Detectie Interval"
},
"hint": {
"en": "Mode: Home Automation always 6 seconds, Security mode: Determain the amount of seconds the PIR sensor will not respond after motion was detected, in steps of 8 seconds. Range: 24 - 1016",
"nl": "Modus: Huis Automatisering altijd 6 seconden, Beveiliging mode: Bepaal het aantal seconden dat de beweging sensor niet reageerd na een beweging detectie, in stappen van 8 seconden. Bereik: 24 - 1016"
}
},
{
"id": "battery_report_time",
"type": "number",
"attr": {
"min": 0.5,
"max": 63.5,
"step": 0.5
},
"label": {
"en": "Battery Level Report Interval",
"nl": "Batterijniveau Verzend Interval"
},
"hint": {
"en": "The interval time (in hours) for auto report the actual battery level. Range: 0.5 - 63.5",
"nl": "Een vast interval (in uren) om een rapport te sturen over het actuele batterij niveau. Bereik: 0,5 - 63,5"
},
"value": 6
},
{
"id": "contact_report_time",
"type": "number",
"attr": {
"min": 0.5,
"max": 63.5,
"step": 0.5
},
"label": {
"en": "Door/Window Report Interval",
"nl": "Deur/Raam Verzend Interval"
},
"hint": {
"en": "The interval time (in hours) for auto report of the actual door/window state. Range: 0.5 - 63.5",
"nl": "Een vast interval (in uren) om een rapport te sturen over de actuele deur/raam status. Bereik: 0,5 - 63,5"
},
"value": 6
},
{
"id": "illumination_report_time",
"type": "number",
"attr": {
"min": 0.5,
"max": 63.5,
"step": 0.5
},
"label": {
"en": "Illumination Report Interval",
"nl": "Helderheid Verzend Interval"
},
"hint": {
"en": "The interval time (in hours) for auto report of the illumination. Range: 0.5 - 63.5",
"nl": "Een vast interval (in uren) om een rapport te sturen over de gemeten helderheid. Bereik: 0,5 - 63,5"
},
"value": 2
},
{
"id": "temperature_report_time",
"type": "number",
"attr": {
"min": 0.5,
"max": 63.5,
"step": 0.5
},
"label": {
"en": "Temperature Report Interval",
"nl": "Temperatuur Verzend Interval"
},
"hint": {
"en": "The interval time (in hours) for auto report of the temperature. Range: 0.5 - 63.5",
"nl": "Een vast interval (in uren) om een rapport te sturen over de temperatuur. Bereik: 0,5 - 63,5"
},
"value": 2
}
]
},
{
"id": "TZ36",
"name": {
"en": "Switch TZ36/TZ56",
"nl": "Schakelaar TZ36/TZ56"
},
"zwave": {
"manufacturerId": 280,
"productTypeId": 3,
"productId": [
3
],
"learnmode": {
"image": "/drivers/TZ36/assets/learnmode.svg",
"instruction": {
"en": "Press an on/off button once",
"nl": "Druk een keer op een aan/uit knop"
}
},
"associationGroups": [
2,
3
],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "Devices that are associated here will toggle their state when you switch with the left switch.",
"nl": "Apparaten die hier zijn geassocieerd zullen hun status schakelen wanneer je schakelt met de linker schakelaar."
}
},
"2": {
"hint": {
"en": "Devices that are associated here will toggle their state when you toggle with the right switch.",
"nl": "Apparaten die hier zijn geassocieerd zullen hun status schakelen wanneer je schakelt met de rechter schakelaar."
}
},
"3": {
"hint": {
"en": "Devices that are associated here will toggle their state when you double pressing the right switch.",
"nl": "Apparaten die hier zijn geassocieerd zullen hun status schakelen wanneer je 2x drukt op de rechter schakelaar."
}
},
"4": {
"hint": {
"en": "Devices that are associated here follow the state of the switch when it is being switched by other devices",
"nl": "Apparaten die hier zijn geassocieerd volgen de status van de schakelaar wanneer het wordt geschakeld door andere apparaten"
}
}
}
},
"class": "light",
"capabilities": [
"onoff"
],
"images": {
"large": "/drivers/TZ36/assets/images/large.png",
"small": "/drivers/TZ36/assets/images/small.png"
},
"settings": [
{
"id": "led_behaviour",
"type": "dropdown",
"label": {
"en": "LED Behaviour",
"nl": "LED Gedrag"
},
"hint": {
"en": "Determine the behaviour of the LED.",
"nl": "Bepaal het gedrag van de LED."
},
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "LED indicates the switch is off.",
"nl": "LED geeft aan het schakelaar uit is."
}
},
{
"id": "1",
"label": {
"en": "LED indicates the switch is on",
"nl": "LED geeft aan het schakelaar aan is"
}
}
]
},
{
"id": "led_behaviour_data",
"type": "dropdown",
"label": {
"en": "LED Behaviour On Data",
"nl": "LED Gedrag Met Data"
},
"hint": {
"en": "Determine the behaviour of the LED when data is being transmitted.",
"nl": "Bepaal het gedrag van de LED wanneer data word verzonden."
},
"value": "2",
"values": [
{
"id": "0",
"label": {
"en": "LED doesn't blink.",
"nl": "LED knipperd niet."
}
},
{
"id": "1",
"label": {
"en": "LED blinks when transmitting data.",
"nl": "LED knipperd wanneer data word verzonden."
}
},
{
"id": "2",
"label": {
"en": "LED blinks for 1 seconds when data is send.",
"nl": "LED knipperd voor 1 seconden als hij data verzend."
}
}
]
},
{
"id": "invert_switch",
"type": "dropdown",
"label": {
"en": "Switch Behaviour",
"nl": "Schakelaar Gedrag"
},
"hint": {
"en": "Determine if the switch sends \"On\" when top or bottom is pressed.",
"nl": "Bepaal of de schakelaar \"Aan\" zend wanneer boven of onder is ingedrukt."
},
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "Top = On",
"nl": "Boven = Aan"
}
},
{
"id": "1",
"label": {
"en": "Bottom = On",
"nl": "Onder = Aan"
}
}
]
}
]
},
{
"id": "TZ65",
"name": {
"en": "Dimmer TZ35/TZ55/TZ65",
"nl": "Dimmer TZ35/TZ55/TZ65"
},
"zwave": {
"manufacturerId": 280,
"productTypeId": 2056,
"productId": [
2056
],
"learnmode": {
"image": "/drivers/TZ65/assets/learnmode.svg",
"instruction": {
"en": "Press an on/off button once",
"nl": "Druk een keer op een aan/uit knop"
}
},
"associationGroups": [
2,
3
],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "Devices that are associated here will toggle their state when you switch with the left switch.",
"nl": "Apparaten die hier zijn geassocieerd zullen hun status schakelen wanneer je schakelt met de linker schakelaar."
}
},
"2": {
"hint": {
"en": "Devices that are associated here will toggle their state when you toggle with the right switch.",
"nl": "Apparaten die hier zijn geassocieerd zullen hun status schakelen wanneer je schakelt met de rechter schakelaar."
}
},
"3": {
"hint": {
"en": "Devices that are associated here will toggle their state when you double pressing the right switch.",
"nl": "Apparaten die hier zijn geassocieerd zullen hun status schakelen wanneer je 2x drukt op de rechter schakelaar."
}
},
"4": {
"hint": {
"en": "Devices that are associated here follow the state of the switch when it is being switched by other devices",
"nl": "Apparaten die hier zijn geassocieerd volgen de status van de schakelaar wanneer het wordt geschakeld door andere apparaten"
}
}
}
},
"class": "light",
"capabilities": [
"onoff",
"dim"
],
"capabilitiesOptions": {
"onoff": {
"setOnDim": false
}
},
"images": {
"large": "/drivers/TZ65/assets/images/large.png",
"small": "/drivers/TZ65/assets/images/small.png"
},
"settings": [
{
"id": "led_behaviour",
"type": "dropdown",
"label": {
"en": "LED Behaviour",
"nl": "LED Gedrag"
},
"hint": {
"en": "Determine the behaviour of the LED.",
"nl": "Bepaal het gedrag van de LED."
},
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "LED indicates the switch is off.",
"nl": "LED geeft aan het schakelaar uit is."
}
},
{
"id": "1",
"label": {
"en": "LED indicates the switch is on",
"nl": "LED geeft aan het schakelaar aan is"
}
}
]
},
{
"id": "led_behaviour_data",
"type": "dropdown",
"label": {
"en": "LED Behaviour On Data",
"nl": "LED Gedrag Met Data"
},
"hint": {
"en": "Determine the behaviour of the LED when data is being transmitted.",
"nl": "Bepaal het gedrag van de LED wanneer data word verzonden."
},
"value": "2",
"values": [
{
"id": "0",
"label": {
"en": "LED doesn't blink.",
"nl": "LED knipperd niet."
}
},
{
"id": "1",
"label": {
"en": "LED blinks when transmitting data.",
"nl": "LED knipperd wanneer data word verzonden."
}
},
{
"id": "2",
"label": {
"en": "LED blinks for 1 seconds when data is send.",
"nl": "LED knipperd voor 1 seconden als hij data verzend."
}
}
]
},
{
"id": "invert_switch",
"type": "dropdown",
"label": {
"en": "Switch Behaviour",
"nl": "Schakelaar Gedrag"
},
"hint": {
"en": "Determine if the switch sends \"On\" when top or bottom is pressed.",
"nl": "Bepaal of de schakelaar \"Aan\" zend wanneer boven of onder is ingedrukt."
},
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "Top = On",
"nl": "Boven = Aan"
}
},
{
"id": "1",
"label": {
"en": "Bottom = On",
"nl": "Onder = Aan"
}
}
]
},
{
"id": "poll_interval",
"type": "number",
"attr": {
"min": 0,
"max": 86400
},
"value": 300,
"label": {
"en": "Poll Status Interval",
"nl": "Poll Status Interval"
},
"hint": {
"en": "The amount of seconds between asking the device for a status update.\nRange: 0 (Off), 60 - 86400 seconds",
"nl": "Aantal seconden tussen het opvragen van een status update aan het apparaat.\nBereik: 0 (Uit), 60 - 86400 seconden"
}
}
]
},
{
"id": "TZ66",
"name": {
"en": "Switch TZ66",
"nl": "Schakelaar TZ66"
},
"zwave": {
"manufacturerId": 280,
"productTypeId": 258,
"productId": [
4128,
4150
],
"learnmode": {
"image": "/drivers/TZ66/assets/learnmode.svg",
"instruction": {
"en": "Press an on/off button once",
"nl": "Druk een keer op een aan/uit knop"
}
},
"associationGroups": [
2,
3
],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "Devices that are associated here will toggle their state when you switch with the left switch.",
"nl": "Apparaten die hier zijn geassocieerd zullen hun status schakelen wanneer je schakelt met de linker schakelaar."
}
},
"2": {
"hint": {
"en": "Devices that are associated here will toggle their state when you toggle with the right switch.",
"nl": "Apparaten die hier zijn geassocieerd zullen hun status schakelen wanneer je schakelt met de rechter schakelaar."
}
},
"3": {
"hint": {
"en": "Devices that are associated here will toggle their state when you double pressing the right switch.",
"nl": "Apparaten die hier zijn geassocieerd zullen hun status schakelen wanneer je 2x drukt op de rechter schakelaar."
}
},
"4": {
"hint": {
"en": "Devices that are associated here follow the state of the switch when it is being switched by other devices",
"nl": "Apparaten die hier zijn geassocieerd volgen de status van de schakelaar wanneer het wordt geschakeld door andere apparaten"
}
}
}
},
"class": "light",
"capabilities": [
"onoff"
],
"images": {
"large": "/drivers/TZ66/assets/images/large.png",
"small": "/drivers/TZ66/assets/images/small.png"
},
"settings": [
{
"id": "led_behaviour",
"type": "dropdown",
"label": {
"en": "LED Behaviour",
"nl": "LED Gedrag"
},
"hint": {
"en": "Determine the behaviour of the LED.",
"nl": "Bepaal het gedrag van de LED."
},
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "LED indicates the switch is off.",
"nl": "LED geeft aan het schakelaar uit is."
}
},
{
"id": "1",
"label": {
"en": "LED indicates the switch is on",
"nl": "LED geeft aan het schakelaar aan is"
}
}
]
},
{
"id": "led_behaviour_data",
"type": "dropdown",