forked from swttt/com.fibaro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
2104 lines (2104 loc) · 52.5 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.fibaro",
"name": {
"en": "Fibaro"
},
"version": "1.0.6",
"compatibility": ">=0.9.0",
"description": {
"en": "Fibaro devices for Homey"
},
"category": [
"appliances",
"lights",
"security",
"climate"
],
"images": {
"large": "/assets/images/large.png",
"small": "/assets/images/small.png"
},
"author": {
"name": "Athom B.V.",
"email": "[email protected]"
},
"contributors": {
"developers": [
{
"name": "Ralf van Dooren",
"email": "[email protected]"
}
]
},
"flow": {
"triggers": [
{
"id": "fgwpe-101_nif",
"title": {
"en": "Button pressed three times"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=FGWPE-101"
}
]
},
{
"id": "fggc-001_up",
"title": {
"en": "Swiped up"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=FGGC-001"
}
]
},
{
"id": "fggc-001_down",
"title": {
"en": "Swiped down"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=FGGC-001"
}
]
},
{
"id": "fggc-001_left",
"title": {
"en": "Swiped left"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=FGGC-001"
}
]
},
{
"id": "fggc-001_right",
"title": {
"en": "Swiped right"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=FGGC-001"
}
]
}
]
},
"drivers": [
{
"id": "FGD-211",
"name": {
"en": "Fibaro Dimmer"
},
"zwave": {
"manufacturerId": 271,
"productTypeId": 256,
"productId": 4106,
"learnmode": {
"image": "/drivers/FGD-211/assets/learnmode.svg",
"instruction": {
"en": "Press the button on your Fibaro Dimmer three times",
"nl": "Druk driemaal op de knop op de Fibaro Dimmer"
}
},
"associationGroups": [
3
]
},
"class": "light",
"capabilities": [
"dim",
"onoff"
],
"images": {
"large": "/drivers/FGD-211/assets/images/large.png",
"small": "/drivers/FGD-211/assets/images/small.png"
},
"settings": [
{
"id": "switch_type",
"type": "dropdown",
"label": {
"en": "Switch type",
"nl": "Schakelaar type"
},
"value": "0",
"hint": {
"en": "Choose between momentary switch and toggle switch",
"nl": "Kies tussen kortstondige schakelaar en tuimelschakelaar"
},
"values": [
{
"id": "0",
"label": {
"en": "Momentary switch",
"nl": "Korstondige schakelaar"
}
},
{
"id": "1",
"label": {
"en": "Toggle switch",
"nl": "Tuimelschakelaar"
}
},
{
"id": "2",
"label": {
"en": "Roller blind switch (UP / DOWN) - two switch keys operate the Dimmer",
"nl": "Hotelschakeling - twee schakelaars bedienen de dimmer"
}
}
]
},
{
"id": "scene_activation",
"type": "dropdown",
"label": {
"en": "Scene activation",
"nl": "Scene activatie"
},
"value": "0",
"hint": {
"en": "The device offers the possibility of sending commands compatible with Command class scene activation. Information is sent to devices assigned to association group no. 3. Controllers such as Home Center 2 are able to interpret such commands and based on these commands they activate scenes, to which specific scene IDs have been assigned. The user may expand the functionality of the button connected to inputs S1 and S2 by distinguishing the actions of keys connected to those inputs. For example: double click would activate the scene Goodmorning.",
"nl": "De Dimmer biedt de mogelijkheid voor het versturen van commando's van de CC Scene Activation, informatie wordt verstuurd naar apparaten in associate groep 3."
},
"values": [
{
"id": "0",
"label": {
"en": "Functionality deactivated",
"nl": "Functionaliteit gedeactiveerd"
}
},
{
"id": "1",
"label": {
"en": "Functionality activated",
"nl": "Functionaliteit geactiveerd"
}
}
]
}
]
},
{
"id": "FGD-212",
"name": {
"en": "Fibaro Dimmer 2"
},
"zwave": {
"manufacturerId": 271,
"productTypeId": 258,
"productId": 4096,
"learnmode": {
"image": "/drivers/FGD-212/assets/learnmode.svg",
"instruction": {
"en": "Press the button on your Fibaro Dimmer three times",
"nl": "Druk driemaal op de knop op de Fibaro Dimmer"
}
},
"associationGroups": [
1
]
},
"class": "light",
"capabilities": [
"dim",
"onoff",
"measure_power"
],
"images": {
"large": "/drivers/FGD-212/assets/images/large.png",
"small": "/drivers/FGD-212/assets/images/small.png"
},
"settings": [
{
"id": "switch_type",
"type": "dropdown",
"label": {
"en": "Switch type",
"nl": "Schakelaar type"
},
"value": "0",
"hint": {
"en": "Choose between momentary switch and toggle switch",
"nl": "Kies tussen kortstondige schakelaar en tuimelschakelaar"
},
"values": [
{
"id": "0",
"label": {
"en": "Momentary switch",
"nl": "Korstondige schakelaar"
}
},
{
"id": "1",
"label": {
"en": "Toggle switch",
"nl": "Tuimelschakelaar"
}
},
{
"id": "2",
"label": {
"en": "Roller blind switch (UP / DOWN) - two switch keys operate the Dimmer",
"nl": "Hotelschakeling - twee schakelaars bedienen de dimmer"
}
}
]
},
{
"id": "forced_switch_on_brightness_level",
"type": "number",
"label": {
"en": "Brightness level forced",
"nl": "Helderheid niveau geforceerd"
},
"value": 0,
"attr": {
"min": 0,
"max": 99
},
"hint": {
"en": "If the parameter is active, switching on the Dimmer 2 (S1 single click) will always set this brightness level",
"nl": "Wanneer deze parameter is ingesteld zal het aanzetten van de Dimmer 2 (S1 enkele klik) altijd dit helderheidsniveau hanteren"
}
},
{
"id": "timer_functionality",
"type": "number",
"label": {
"en": "Timer functionality (auto - off) in seconds",
"nl": "Automatisch uitschakelen na (seconden)"
},
"value": 0,
"attr": {
"min": 0,
"max": 32767
},
"hint": {
"en": "This parameter allows to automatically switch off the device after specified time from switching on the light source. It may be useful when the Dimmer 2 is installed in the stairway. 0 - Function disabled (default) 1-32767 - time to turn off measured in seconds (1s-9.1h)",
"nl": "Deze parameter laat de schakelaar automatisch uitschakelen na de ingestelde tijd, stel 0 in om dit uit te schakelen"
}
},
{
"id": "soft_start_functionality",
"type": "dropdown",
"label": {
"en": "Soft-start functionality",
"nl": "Soft-start functionaliteit"
},
"value": "1",
"hint": {
"en": "Time required to warm up the filament of halogen bulb",
"nl": "Tijd nodig vor het opwarmen van het filament van een halogeen lamp"
},
"values": [
{
"id": "0",
"label": {
"en": "No soft-start",
"nl": "Geen soft-start"
}
},
{
"id": "1",
"label": {
"en": "Short soft-start (0.1s) (default)",
"nl": "Korte soft-start (0.1s) (standaard)"
}
},
{
"id": "2",
"label": {
"en": "Long soft-start (0.5s)",
"nl": "Lange soft-start (0.5s)"
}
}
]
},
{
"id": "the_function_of_3_way_switch",
"type": "dropdown",
"label": {
"en": "The function of 3-way switch",
"nl": "De functie van de hotelschakeling"
},
"value": "0",
"hint": {
"en": "Switch no. 2 controls the Dimmer 2 additionally (in 3-way switch mode), function disabled for parameter 20 set to 2 (roller blind switch)",
"nl": "Schakelaar 2 schakelt ook Dimmer 2, functie uitgeschakeld voor parameter 20 = 2"
},
"values": [
{
"id": "0",
"label": {
"en": "3-way switch function for S2 disabled (default)",
"nl": "Hotelschakelaar functie voor S2 uitgeschakeld"
}
},
{
"id": "1",
"label": {
"en": "3-way switch function for S2 enabled",
"nl": "Hotelschakelaar functie voor S2 ingeschakeld"
}
}
]
}
]
},
{
"id": "FGWPE-101",
"name": {
"en": "Fibaro Wall Plug"
},
"zwave": {
"manufacturerId": 271,
"productTypeId": 1536,
"productId": 4096,
"learnmode": {
"image": "/drivers/FGWPE-101/assets/learnmode.svg",
"instruction": {
"en": "Press the button on your Fibaro Wall Plug three times",
"nl": "Druk driemaal op de knop op de Fibaro Wall Plug"
}
},
"associationGroups": [
3
]
},
"class": "socket",
"capabilities": [
"onoff",
"measure_power"
],
"images": {
"large": "/drivers/FGWPE-101/assets/images/large.png",
"small": "/drivers/FGWPE-101/assets/images/small.png"
},
"settings": [
{
"id": "always_on",
"type": "checkbox",
"label": {
"en": "Always on",
"nl": "Altijd aan"
},
"value": false,
"hint": {
"en": "Once activated, will keep a connected device constantly on, will stop reacting to alarm frames and B-button push",
"nl": "Wanneer geactiveerd zal de plug constant aan zijn, en niet meer reageren op de B-knop en alarm frames"
}
},
{
"id": "led_ring_color_on",
"type": "dropdown",
"label": {
"en": "Color when on",
"nl": "Kleur wanneer aan"
},
"value": "0",
"hint": {
"en": "Defines the color of the LED ring in on state",
"nl": "De kleur van de LED ring wanneer aan"
},
"values": [
{
"id": "0",
"label": {
"en": "Changes in predefined steps according to power load",
"nl": "Verandert in stappen afhankelijk van het stroom verbuik"
}
},
{
"id": "1",
"label": {
"en": "Changes continuously according to power load using full spectrum of LED color",
"nl": "Verandert continu afhankelijk van het stroom verbruik"
}
},
{
"id": "2",
"label": {
"en": "White",
"nl": "Wit"
}
},
{
"id": "3",
"label": {
"en": "Red",
"nl": "Rood"
}
},
{
"id": "4",
"label": {
"en": "Green",
"nl": "Groen"
}
},
{
"id": "5",
"label": {
"en": "Blue",
"nl": "Blauw"
}
},
{
"id": "6",
"label": {
"en": "Yellow",
"nl": "Geel"
}
},
{
"id": "7",
"label": {
"en": "Cyan",
"nl": "Cyaan"
}
},
{
"id": "8",
"label": {
"en": "Magenta",
"nl": "Magenta"
}
},
{
"id": "9",
"label": {
"en": "Off",
"nl": "Uit"
}
}
]
},
{
"id": "led_ring_color_off",
"type": "dropdown",
"label": {
"en": "Color when off",
"nl": "Kleur wanneer uit"
},
"value": "0",
"hint": {
"en": "Defines the color of the LED ring in off state",
"nl": "Kleur van de LED ring wanneer uit"
},
"values": [
{
"id": "0",
"label": {
"en": "LED ring is illuminated with a color corresponding to the last measured power, before the controlled device was turned off",
"nl": "LED ring is verlicht met een kleur die bij het laatst gemeten stroom verbruik hoort"
}
},
{
"id": "1",
"label": {
"en": "White",
"nl": "Wit"
}
},
{
"id": "2",
"label": {
"en": "Red",
"nl": "Rood"
}
},
{
"id": "3",
"label": {
"en": "Green",
"nl": "Groen"
}
},
{
"id": "4",
"label": {
"en": "Blue",
"nl": "Blauw"
}
},
{
"id": "5",
"label": {
"en": "Yellow",
"nl": "Geel"
}
},
{
"id": "6",
"label": {
"en": "Cyan",
"nl": "Cyaan"
}
},
{
"id": "7",
"label": {
"en": "Magenta",
"nl": "Magenta"
}
},
{
"id": "8",
"label": {
"en": "Off",
"nl": "Uit"
}
}
]
}
]
},
{
"id": "FGK-101",
"name": {
"en": "Fibaro Door/Window Sensor"
},
"zwave": {
"manufacturerId": 271,
"productTypeId": 1792,
"productId": 4096,
"learnmode": {
"image": "/drivers/FGK-101/assets/learnmode.svg",
"instruction": {
"en": "Press the button on your Fibaro Door/Window Sensor three times",
"nl": "Druk driemaal op de knop op de Fibaro Door/Window Sensor"
}
},
"associationGroups": [
3
]
},
"class": "sensor",
"capabilities": [
"alarm_contact",
"measure_battery"
],
"images": {
"large": "/drivers/FGK-101/assets/images/large.png",
"small": "/drivers/FGK-101/assets/images/small.png"
}
},
{
"id": "FGK-10x",
"name": {
"en": "Fibaro Door/Window Sensor (Z-Wave Plus)"
},
"zwave": {
"manufacturerId": 271,
"productTypeId": 1793,
"productId": 4097,
"learnmode": {
"image": "/drivers/FGK-10x/assets/learnmode.svg",
"instruction": {
"en": "Press the button on your Fibaro Door/Window Sensor three times",
"nl": "Druk driemaal op de knop op de Fibaro Door/Window Sensor"
}
},
"associationGroups": [
3
]
},
"class": "sensor",
"capabilities": [
"alarm_contact",
"measure_battery"
],
"images": {
"large": "/drivers/FGK-10x/assets/images/large.png",
"small": "/drivers/FGK-10x/assets/images/small.png"
}
},
{
"id": "FGMS-001",
"name": {
"en": "Fibaro Motion Sensor"
},
"zwave": {
"manufacturerId": 271,
"productTypeId": 2048,
"productId": 4097,
"learnmode": {
"image": "/drivers/FGMS-001/assets/learnmode.svg",
"instruction": {
"en": "Press the button on your Fibaro Motion Sensor three times",
"nl": "Druk driemaal op de knop op de Fibaro Motion Sensor"
}
},
"associationGroups": [
1,
2,
3
],
"defaultConfiguration": [
{
"id": "tamper_operating_mode",
"size": 1,
"value": 1
}
]
},
"class": "sensor",
"capabilities": [
"alarm_motion",
"alarm_tamper",
"measure_temperature",
"measure_luminance",
"measure_battery"
],
"images": {
"large": "/drivers/FGMS-001/assets/images/large.png",
"small": "/drivers/FGMS-001/assets/images/small.png"
},
"settings": [
{
"id": "motion_sensor_sensitivity",
"type": "number",
"label": {
"en": "Motion sensor sensitivity",
"nl": "Bewegingssensor gevoeligheid"
},
"value": 10,
"attr": {
"min": 8,
"max": 255
},
"hint": {
"en": "The lower the value, the more sensitive the PIR sensor",
"nl": "Een lagere waarde betekent een gevoeligere sensor"
}
},
{
"id": "motion_sensor_blindtime",
"type": "number",
"label": {
"en": "Motion sensor blindtime (seconds)",
"nl": "Bewegingssensor blindtime (seconden)"
},
"value": 8,
"attr": {
"min": 8,
"max": 15
},
"hint": {
"en": "Period of time through which the PIR sensor is “blind” (insensitive) to motion",
"nl": "Periode na detecteren van beweging gedurende de sensor ongevoelig is voor nieuwe bewegingsdetectie"
}
},
{
"id": "motion_cancellation_delay",
"type": "number",
"label": {
"en": "Motion alarm cancellation delay (seconds)",
"nl": "Bewegingsalarm annuleringsperiode (seconden)"
},
"value": 30,
"hint": {
"en": "Motion alarm will be cancelled in the main controller and the associated devices after the period of time set in this parameter",
"nl": "Bewegingsalarm zal worden geannuleerd na het vertrijken van de periode in deze parameter"
}
},
{
"id": "tamper_operating_mode",
"type": "dropdown",
"label": {
"en": "Tamper operation mode",
"nl": "Trilling operatie modus"
},
"value": "1",
"hint": {
"en": "The parameter determines the behaviour of tamper and how it reports",
"nl": "Deze paramter bepaald het gedrag van het trillingsalarm en hoe het rapporteert"
},
"values": [
{
"id": "0",
"label": {
"en": "Tamper alarm is reported in Sensor Alarm CC / Cancellation is not reported",
"nl": "Trillingsalarm wordt gerapporteerd in Sensor Alarm CC / Annulering wordt niet gerapporteerd"
}
},
{
"id": "1",
"label": {
"en": "Tamper alarm is reported in Sensor Alarm CC / Cancellation is reported in Sensor Alarm CC after the tamper alarm cancellation delay",
"nl": "Trillingsalarm wordt gerapporteerd in Sensor Alarm CC / Annulering wordt gerapporteerd in Sensor Alarm CC na de trilling annulering periode"
}
},
{
"id": "2",
"label": {
"en": "Tamper alarm is reported in Sensor Alarm CC / Cancellation is not reported",
"nl": "Trillingsalarm wordt gerapporteerd in Sensor Alarm CC / Annulering wordt niet gerapporteerd"
}
},
{
"id": "3",
"label": {
"en": "Tamper alarm is reported in Sensor Alarm CC / Cancellation is reported in Sensor Alarm CC",
"nl": "Trillingsalarm wordt gerapporteerd in Sensor Alarm CC / Annulering wordt gerapporteerd in Sensor Alarm CC"
}
},
{
"id": "4",
"label": {
"en": "The maximum level of vibrations recorded in the time period set in parameter 22 is reported",
"nl": "Het maximale niveau van de trillingen gedetecteerd in de annulerings periode wordt gerapporteerd"
}
}
]
},
{
"id": "tamper_cancellation_delay",
"type": "number",
"value": 30,
"attr": {
"min": 1,
"max": 32767
},
"label": {
"en": "Tamper alarm cancellation delay (seconds)",
"nl": "Trillingsalarm annulering periode (seconden)"
},
"hint": {
"en": "Another tampering detected during the cancellation delay will not extend the delay",
"nl": "Nog een trilling binnen deze periode zal de periode niet verlengen"
}
},
{
"id": "illumination_report_threshold",
"type": "number",
"label": {
"en": "Illumination report threshold (lux)",
"nl": "Lichtsterkte rapportage grens (lux)"
},
"value": 200,
"attr": {
"min": 1,
"max": 32767
},
"hint": {
"en": "The parameter determines the change in light intensity level resulting in illumination report being sent to the main controller",
"nl": "Bij het overschrijden van deze grens zal de sensor een rapport naar Homey sturen"
}
},
{
"id": "illumination_report_interval",
"type": "number",
"label": {
"en": "Illumination report interval (seconds)",
"nl": "Lichtsterkte rapportage interval (seconden)"
},
"value": 0,
"attr": {
"min": 1,
"max": 32767
},
"hint": {
"en": "Time interval between consecutive illumination reports, the reports are sent even if there are no changes in the light intensity",
"nl": "Tijdsinterval tussen lichtsterkte rapportages, de rapportages worden verstuurd ook als er geen verandering van waarde is"
}
},
{
"id": "temperature_report_threshold",
"type": "number",
"label": {
"en": "Temperature report threshold (value times 0.1ºC)",
"nl": "Temperatuur rapportage grens (waarde keer 0,1ºC)"
},
"value": 10,
"attr": {
"min": 1
},
"hint": {
"en": "The parameter determines the change in level of temperature resulting in temperature report being sent to the main controller",
"nl": "Deze parameter bepaald de veranding in temperatuur die nodig is voor het versturen van een temperatuur rapport naar homey"
}
},
{
"id": "temperature_measuring_interval",
"type": "number",
"label": {
"en": "Temperature measuring interval (seconds)",
"nl": "Temperatuur meet interval (seconden)"
},
"value": 900,
"attr": {
"min": 1,
"max": 32767
},
"hint": {
"en": "The parameter determines how often the temperature will be measured",
"nl": "Deze parameter bepaald hoe vaak de temperatuur wordt gemeter"
}
},
{
"id": "temperature_report_interval",
"type": "number",
"label": {
"en": "Temperature report interval (seconds)",
"nl": "Temperatuur rapportage interval (seconden)"
},
"value": 0,
"attr": {
"min": 1,
"max": 32767
},
"hint": {
"en": "The parameter determines how often the temperature reports will be sent to the main controller",
"nl": "Tijdsinterval tussen temperatuur rapportages, de rapportages worden verstuurd ook als er geen verandering van waarde is"
}
},
{
"id": "temperature_offset",
"type": "number",
"label": {
"en": "Temperature offset",
"nl": "Temperatuur correctie"
},
"value": 0,
"attr": {
"min": -1000,
"max": 1000
},
"hint": {
"en": "The value to be added to the actual temperature, measured by the sensor (temperature compensation), 100ºC = 1000, -50ºC = -500",
"nl": "De waarde die wordt toegevoegd aan de gemeten temperatuur waarde, 1000 = 100ºC, -500 = -50ºC"
}
},
{
"id": "led_signaling_mode",
"type": "dropdown",
"label": {
"en": "LED signaling mode",
"nl": "LED kleur modus"
},
"value": "10",
"hint": {
"en": "The parameter determines the way in which LED diode behaves after motion has been detected",
"nl": "Deze parameter bepaald het gedrag van de LED wanneer beweging is gedetecteerd"
},
"values": [
{
"id": "0",
"label": {
"en": "Inactive",
"nl": "Inactief"
}
},
{
"id": "1",
"label": {
"en": "Depends on the temperature (short)",
"nl": "Kleur op basis van de temperatuur (kort)"
}
},
{
"id": "2",
"label": {
"en": "Flashlight mode - 10 seconds",
"nl": "Zaklamp modus - 10 seconden"
}
},
{
"id": "3",
"label": {
"en": "White",
"nl": "wit"
}
},
{
"id": "4",
"label": {
"en": "Red",
"nl": "Rood"
}
},
{
"id": "5",
"label": {
"en": "Green",
"nl": "Groen"
}
},
{
"id": "6",
"label": {
"en": "Blue",
"nl": "Blauw"
}
},
{
"id": "7",
"label": {
"en": "Yellow",
"nl": "Geel"
}
},
{
"id": "8",
"label": {
"en": "Cyan",
"nl": "Cyaan"
}
},
{
"id": "9",
"label": {
"en": "Magenta",
"nl": "Magenta"
}
},
{
"id": "10",
"label": {
"en": "Colour depends on the temperature",
"nl": "Kleur op basis van de temperatuur"
}
},
{
"id": "11",
"label": {
"en": "Flashlight mode (long)",
"nl": "Zaklamp modus (lang)"
}
},
{
"id": "12",
"label": {
"en": "White",
"nl": "Wit"
}
},
{
"id": "13",
"label": {
"en": "Red",