-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathapp.json
executable file
·1503 lines (1503 loc) · 42.3 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.everspring",
"version": "2.1.5",
"compatibility": ">=5.0.0",
"sdk": 3,
"name": {
"en": "Everspring"
},
"description": {
"en": "Adds support for Everspring devices"
},
"category": [
"climate",
"security",
"appliances",
"lights"
],
"permissions": [],
"images": {
"large": "/assets/images/large.jpg",
"small": "/assets/images/small.jpg"
},
"author": {
"name": "Ralf van Dooren",
"email": "[email protected]"
},
"contributing": {
"donate": {
"paypal": {
"username": "ralfvd"
}
}
},
"homeyCommunityTopicId": 30094,
"source": "https://github.com/ralfvd/com.everspring",
"drivers": [
{
"id": "AD146",
"name": {
"en": "AD146 EVERSPRING Wall Plug"
},
"zwave": {
"manufacturerId": 96,
"productTypeId": 3,
"productId": 2,
"learnmode": {
"image": "/drivers/AD146/assets/learnmode.svg",
"instruction": {
"en": "Press the link key three times within 1.5 seconds to put the unit into inclusion mode.",
"nl": "Klik de link knop 3 keer binnen 1.5 sec om de unit in autoinclusion mode te zetten"
}
},
"associationGroups": [
1
]
},
"class": "socket",
"capabilities": [
"dim",
"onoff"
],
"images": {
"large": "/drivers/AD146/assets/images/large.png",
"small": "/drivers/AD146/assets/images/small.png"
},
"settings": [
{
"id": "basic_set_value",
"type": "number",
"attr": {
"min": 1,
"max": 255
},
"value": 255,
"label": {
"en": "Basic Set Command Value",
"nl": "Basic Set Command Value"
},
"hint": {
"en": "The value which is sent over Basic Set",
"nl": "Translate me"
}
},
{
"id": "meter_report_interval",
"type": "number",
"attr": {
"min": 3,
"max": 25
},
"value": 3,
"label": {
"en": "Meter Report Interval (s)",
"nl": "Meter Report Interval (s)"
},
"hint": {
"en": "The amount of seconds between a Meter Report being send to controller.",
"nl": "De tijd in seconden tussen de Meter rapportages die naar de controller worden verzonden."
}
},
{
"id": "remember_state",
"type": "checkbox",
"label": {
"en": "Return to last known state after power loss",
"nl": "Keer terug naar laatst bekende status bij spanningsuitval"
},
"value": true,
"hint": {
"en": "After power loss the state of the relay will switch to last known.",
"nl": "Schakel terug naar laatst bekende schakelstand na spanningsuitval"
}
},
{
"id": "switch_type",
"type": "dropdown",
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "Single Pole Double Throw",
"nl": "Single Pole Double Throw"
}
},
{
"id": "1",
"label": {
"en": "Toggle Switch",
"nl": "Toggle Switch"
}
}
],
"label": {
"en": "Switch type",
"nl": "Translate"
},
"hint": {
"en": "Specify which type of switch that is connected to the module.",
"nl": "Translate me"
}
},
{
"id": "dimming_onoff",
"type": "checkbox",
"label": {
"en": "Dimming of on/off functionality",
"nl": "Dimming of aan/uit functionaliteit"
},
"value": false,
"hint": {
"en": "When set to 1, the operation mode is not changed; only the light will be 100% immediately.",
"nl": "Als gezet wordt de mode niet aangepast, alleen zal de dimmer direct op 100% staan"
}
}
]
},
{
"id": "AD1422",
"name": {
"en": "AD1422 EVERSPRING Wall Plug"
},
"zwave": {
"manufacturerId": 96,
"productTypeId": 3,
"productId": 1,
"learnmode": {
"image": "/drivers/AD1422/assets/learnmode.svg",
"instruction": {
"en": "Press the link key to put the unit into inclusion mode.",
"nl": "Klik de link knop om de unit in autoinclusion mode te zetten"
}
},
"associationGroups": [
1
]
},
"class": "socket",
"capabilities": [
"dim",
"onoff"
],
"images": {
"large": "/drivers/AD1422/assets/images/large.png",
"small": "/drivers/AD1422/assets/images/small.png"
},
"settings": [
{
"id": "poll_interval",
"type": "text",
"attr": {
"min": 60,
"max": 3600
},
"value": "300",
"label": {
"en": "Poll Interval",
"nl": "Poll Interval"
},
"hint": {
"en": "The amount of seconds between asking the device for a status update (60-3600 s).",
"nl": "Aantal seconden tussen het opvragen van een status update aan het apparaat (60-3600 s)."
}
}
]
},
{
"id": "AD147",
"name": {
"en": "AD147 EVERSPRING Wall Plug"
},
"zwave": {
"manufacturerId": 96,
"productTypeId": 3,
"productId": 3,
"learnmode": {
"image": "/drivers/AD147/assets/learnmode.svg",
"instruction": {
"en": "Press the link key three times within 1.5 seconds to put the unit into inclusion mode.",
"nl": "Klik de link knop 3 keer binnen 1.5 sec om de unit in autoinclusion mode te zetten"
}
},
"associationGroups": [
1
]
},
"class": "socket",
"capabilities": [
"dim",
"onoff"
],
"images": {
"large": "/drivers/AD147/assets/images/large.jpg",
"small": "/drivers/AD147/assets/images/small.jpg"
},
"settings": [
{
"id": "meter_report_interval",
"type": "number",
"attr": {
"min": 3,
"max": 25
},
"value": 3,
"label": {
"en": "Meter Report Interval (s)",
"nl": "Meter Report Interval (s)"
},
"hint": {
"en": "The amount of seconds between a Meter Report being send to controller.",
"nl": "De tijd in seconden tussen de Meter rapportages die naar de controller worden verzonden."
}
},
{
"id": "remember_state",
"type": "checkbox",
"label": {
"en": "Return to last known state after power loss",
"nl": "Keer terug naar laatst bekende status bij spanningsuitval"
},
"value": true,
"hint": {
"en": "After power loss the state of the relay will switch to last known.",
"nl": "Schakel terug naar laatst bekende schakelstand na spanningsuitval"
}
},
{
"id": "dimming_onoff",
"type": "checkbox",
"label": {
"en": "Dimming of on/off functionality",
"nl": "Dimming of aan/uit functionaliteit"
},
"value": false,
"hint": {
"en": "When set to 1, the operation mode is not changed; only the light will be 100% immediately.",
"nl": "Als gezet wordt de mode niet aangepast, alleen zal de dimmer direct op 100% staan"
}
}
]
},
{
"id": "AN145",
"name": {
"en": "AN145 Lamp holder"
},
"zwave": {
"manufacturerId": 96,
"productTypeId": 4,
"productId": 1,
"learnmode": {
"image": "/drivers/AN145/assets/learnmode.svg",
"instruction": {
"en": "Press the link key one time to put the unit into inclusion mode.",
"nl": "Klik de link knop 1 keer om de unit in autoinclusion mode te zetten"
}
},
"associationGroups": [
1
]
},
"class": "socket",
"capabilities": [
"onoff"
],
"images": {
"large": "/drivers/AN145/assets/images/large.png",
"small": "/drivers/AN145/assets/images/small.png"
},
"settings": [
{
"id": "meter_report_interval",
"type": "number",
"attr": {
"min": 3,
"max": 25
},
"value": 3,
"label": {
"en": "Meter Report Interval (s)",
"nl": "Meter Report Interval (s)"
},
"hint": {
"en": "The amount of seconds between a Meter Report being send to controller.",
"nl": "De tijd in seconden tussen de Meter rapportages die naar de controller worden verzonden."
}
},
{
"id": "remember_state",
"type": "checkbox",
"label": {
"en": "Return to last known state after power loss",
"nl": "Keer terug naar laatst bekende status bij spanningsuitval"
},
"value": true,
"hint": {
"en": "After power loss the state of the relay will switch to last known.",
"nl": "Schakel terug naar laatst bekende schakelstand na spanningsuitval"
}
}
]
},
{
"id": "AN157",
"name": {
"en": "AN157 EVERSPRING Wall Plug"
},
"zwave": {
"manufacturerId": 96,
"productTypeId": 4,
"productId": 1,
"learnmode": {
"image": "/drivers/AN157/assets/learnmode.svg",
"instruction": {
"en": "Make sure device is off, then press the link key three times within 1.5 seconds.",
"nl": "Zorg dat device af staat, dan druk 3 keer op de link knop binnen 1.5 sec."
}
},
"associationGroups": [
1
]
},
"class": "socket",
"capabilities": [
"onoff"
],
"images": {
"large": "/drivers/AN157/assets/images/large.jpg",
"small": "/drivers/AN157/assets/images/small.jpg"
}
},
{
"id": "AN158",
"name": {
"en": "AN158 EVERSPRING Wall Plug"
},
"zwave": {
"manufacturerId": 96,
"productTypeId": 4,
"productId": 2,
"learnmode": {
"image": "/drivers/AN158/assets/learnmode.svg",
"instruction": {
"en": "Make sure device is off, then press the link key three times within 1.5 seconds.",
"nl": "Zorg dat device af staat, dan druk 3 keer op de link knop binnen 1.5 sec."
}
},
"associationGroups": [
1
]
},
"class": "socket",
"capabilities": [
"onoff",
"measure_power"
],
"images": {
"large": "/drivers/AN158/assets/images/large.jpg",
"small": "/drivers/AN158/assets/images/small.jpg"
},
"settings": [
{
"id": "meter_report_interval",
"type": "number",
"attr": {
"min": 0,
"max": 255
},
"value": 3,
"label": {
"en": "Meter Report Interval (10s)",
"nl": "Meter Report Interval (10s)"
},
"hint": {
"en": "The amount of seconds (times 10: e.g. 3 = 30s) between a Meter Report being send to controller.",
"nl": "De tijd in seconden (x 10: bv 3 = 30s) tussen de Meter rapportages die naar de controller worden verzonden."
}
}
]
},
{
"id": "AN179",
"name": {
"en": "AN179 Everspring In-Wall plug"
},
"zwave": {
"manufacturerId": 96,
"productTypeId": 4,
"productId": 8,
"learnmode": {
"image": "/drivers/AN179/assets/learnmode.svg",
"instruction": {
"en": "Press the link key three times within 1.5 seconds to put the unit into inclusion mode.",
"nl": "Klik de link knop 3 keer binnen 1.5 sec om de unit in autoinclusion mode te zetten"
}
},
"associationGroups": [
1
]
},
"class": "socket",
"capabilities": [
"onoff"
],
"images": {
"large": "/drivers/AN179/assets/images/large.png",
"small": "/drivers/AN179/assets/images/small.png"
},
"settings": [
{
"id": "remember_state",
"type": "checkbox",
"label": {
"en": "Return to last known state after power loss",
"nl": "Keer terug naar laatst bekende status bij spanningsuitval"
},
"value": true,
"hint": {
"en": "After power loss the state of the relay will switch to last known.",
"nl": "Schakel terug naar laatst bekende schakelstand na spanningsuitval"
}
},
{
"id": "switching_type",
"type": "dropdown",
"label": {
"en": "Switch 1 switching type",
"nl": "Schakelaar 1 type"
},
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "Single Pole Double Throw",
"nl": "Single Pole Double Throw"
}
},
{
"id": "1",
"label": {
"en": "Toggle switch",
"nl": "Toggle switch"
}
}
]
}
]
},
{
"id": "AN180",
"name": {
"en": "AN180 EVERSPRING Wall Plug"
},
"zwave": {
"manufacturerId": 96,
"productTypeId": 4,
"productId": 7,
"learnmode": {
"image": "/drivers/AN180/assets/learnmode.svg",
"instruction": {
"en": "Press the link key three times within 1.5 seconds to put the unit into inclusion mode.",
"nl": "Klik de link knop 3 keer binnen 1.5 sec om de unit in autoinclusion mode te zetten"
}
},
"associationGroups": [
1
]
},
"class": "socket",
"capabilities": [
"onoff"
],
"images": {
"large": "/drivers/AN180/assets/images/large.jpg",
"small": "/drivers/AN180/assets/images/small.jpg"
},
"settings": [
{
"id": "meter_report_interval",
"type": "number",
"attr": {
"min": 3,
"max": 25
},
"value": 3,
"label": {
"en": "Meter Report Interval (s)",
"nl": "Meter Report Interval (s)"
},
"hint": {
"en": "The amount of seconds between a Meter Report being send to controller.",
"nl": "De tijd in seconden tussen de Meter rapportages die naar de controller worden verzonden."
}
},
{
"id": "remember_state",
"type": "checkbox",
"label": {
"en": "Return to last known state after power loss",
"nl": "Keer terug naar laatst bekende status bij spanningsuitval"
},
"value": true,
"hint": {
"en": "After power loss the state of the relay will switch to last known.",
"nl": "Schakel terug naar laatst bekende schakelstand na spanningsuitval"
}
}
]
},
{
"id": "AN181",
"name": {
"en": "AN181 EVERSPRING Wall Plug"
},
"zwave": {
"manufacturerId": 96,
"productTypeId": 4,
"productId": 6,
"learnmode": {
"image": "/drivers/AN181/assets/learnmode.svg",
"instruction": {
"en": "Press the link key three times within 1.5 seconds to put the unit into inclusion mode.",
"nl": "Klik de link knop 3 keer binnen 1.5 sec om de unit in autoinclusion mode te zetten"
}
},
"associationGroups": [
1
]
},
"class": "socket",
"capabilities": [
"onoff",
"measure_power"
],
"images": {
"large": "/drivers/AN181/assets/images/large.jpg",
"small": "/drivers/AN181/assets/images/small.jpg"
},
"settings": [
{
"id": "meter_report_interval",
"type": "number",
"attr": {
"min": 3,
"max": 25
},
"value": 3,
"label": {
"en": "Meter Report Interval (s)",
"nl": "Meter Report Interval (s)"
},
"hint": {
"en": "The amount of seconds between a Meter Report being send to controller.",
"nl": "De tijd in seconden tussen de Meter rapportages die naar de controller worden verzonden."
}
},
{
"id": "remember_state",
"type": "checkbox",
"label": {
"en": "Return to last known state after power loss",
"nl": "Keer terug naar laatst bekende status bij spanningsuitval"
},
"value": true,
"hint": {
"en": "After power loss the state of the relay will switch to last known.",
"nl": "Schakel terug naar laatst bekende schakelstand na spanningsuitval"
}
}
]
},
{
"id": "HSP02",
"name": {
"en": "HSP02 Everspring",
"nl": "HSP02 Everspring"
},
"energy": {
"batteries": [
"CR123A"
]
},
"zwave": {
"manufacturerId": 278,
"productTypeId": 1,
"productId": 1,
"learnmode": {
"image": "/drivers/HSP02/assets/learnmode.svg",
"instruction": {
"en": "Triple click the little button behind the battery cover",
"nl": "Driemaal drukken op de knop achter de batterij klep"
}
},
"associationGroups": [
1,
2
],
"defaultConfiguration": [
{
"id": 1,
"size": 1,
"value": 99
},
{
"id": 2,
"size": 1,
"value": 1
},
{
"id": 3,
"size": 1,
"value": 6
},
{
"id": 4,
"size": 2,
"value": 180
},
{
"id": 5,
"size": 1,
"value": 10
},
{
"id": 6,
"size": 2,
"value": 15
}
]
},
"class": "sensor",
"capabilities": [
"alarm_motion",
"measure_battery"
],
"images": {
"large": "/drivers/HSP02/assets/images/large.png",
"small": "/drivers/HSP02/assets/images/small.png"
},
"settings": [
{
"id": "basic_set_level",
"type": "text",
"label": {
"en": "Basic set level",
"nl": "Basis inschakel instelling"
},
"value": "99",
"hint": {
"en": "Value to be sent with a BASIC SET command.",
"nl": "Waarde welke meegestuurd wordt met het BASIC SET commando."
},
"attr": {
"min": 1,
"max": 99
}
},
{
"id": "enable_disable_sensor_detection",
"type": "number",
"label": {
"en": "Set motion detection function for groups",
"nl": "Schakel bewegingsmelding in voor groepen"
},
"value": 1,
"hint": {
"en": "Groups to send motion detection to",
"nl": "Bepaald voor welke groepen de bewegingsmelding verstuurd wordt"
},
"values": [
{
"id": "1",
"label": {
"en": "Group 1 enabled / group 2 enabled (default)",
"nl": "Groep 1 ingeschakeld / groep 2 ingeschakeld (standaard)"
}
},
{
"id": "2",
"label": {
"en": "Group 1 enabled / group 2 disabled",
"nl": "Groep 1 ingeschakeld / groep 2 uitgeschakeld"
}
},
{
"id": "3",
"label": {
"en": "Group 1 disabled / group 2 disabled",
"nl": "Groep 1 uitgeschakeld / groep 2 uitgeschakeld"
}
}
]
},
{
"id": "sensitivity_level",
"type": "number",
"label": {
"en": "Sensitivity level",
"nl": "Gevoeligheid"
},
"value": 6,
"hint": {
"en": "Sensitivity level of the sensor.",
"nl": "Gevoeligheid van de sensor."
},
"attr": {
"min": 1,
"max": 10
}
},
{
"id": "re-trigger_interval",
"type": "number",
"label": {
"en": "Re-trigger interval (s)",
"nl": "Tijd voor opnieuw verzenden (s)"
},
"value": 180,
"hint": {
"en": "The configuration parameter that can be used to adjust the interval of being re-triggered after the detector has been triggered. No response will be made during this interval if a movement is presented. The time interval can be set between 5 secs to 3600 secs.",
"nl": "Deze waarde kan gebruikt worden om de interval voor opnieuw verzenden van beweging. Geen melding zal gedaan worden tijdens deze periode als er beweging is. De tijd kan ingesteld worden tussen 5 en 3600 seconden."
},
"attr": {
"min": 5,
"max": 3600
}
},
{
"id": "lux_level",
"type": "number",
"label": {
"en": "Light level threshold (%)",
"nl": "Drempelwaarde lichtsterkte (%)"
},
"value": 10,
"hint": {
"en": "A detecting percentage of lux level which determines when the motion sensor will be activated. If percentage of lux level of ambient illumination falls below this percentage, and a person moves across or within the protected area, the detector will emit that there is a motion detected to the controller and activate connected modules and lighting. Percentage can be set between 1% to 100%.",
"nl": "Minimale percentage lux (lichtsterkte) welke bepaald wanneer the bewegingssensor wordt geactiveerd. Als het percentage van de omgevingslichtsterkte beneden dit percentage valt, en er beweegt een persoon binnen of door het beschermde gebied, zal de detector beweging melden aan de controller en verbonden modules en lampen inschakelen. Het percentage kan ingesteld worden tussen 1% en 100%."
},
"attr": {
"min": 1,
"max": 100
}
},
{
"id": "on_off_duration",
"type": "number",
"label": {
"en": "On-off duration (s)",
"nl": "Aan-uit duur (s)"
},
"value": 15,
"hint": {
"en": "On-off duration setting will be useful if the detector is connected to a module or lighting. The duration determines how long the module/lighting should stay ON. Default setting will turn off the module/light after 15 seconds, after it has been turned on. This parameter can be configured with the value of 5 through 3600, where 5 means 5 second delay and 3600 for 3600 seconds (1 hour) delay.",
"nl": "Aan-uit duur instelling is handig als de bewegingsmelder verbonden is met een module of lamp. De tijdsduur bepaald hoe lang de module/lamp ingeschakeld moet blijven. Standaard instelling zal de module/lamp na 15 seconden uitschakelen, nadat het is ingeschakeld. Deze parameter kan geconfigureerd worden met een waarde tussen 5 en 3600 waar 5 staat voor 5 seconden en 3600 voor 3600 seconden (1 uur) vertraging."
},
"attr": {
"min": 1,
"max": 3600
}
}
]
},
{
"id": "SF812",
"name": {
"en": "SF812 Smoke sensor",
"nl": "SF812 Rook detector"
},
"energy": {
"batteries": [
"PP3"
]
},
"zwave": {
"manufacturerId": 96,
"productTypeId": 13,
"productId": 1,
"learnmode": {
"image": "/drivers/SF812/assets/learnmode.svg",
"instruction": {
"en": "Click the bindings switch ",
"nl": "Druk op de bindings knop "
}
},
"associationGroups": [
1
]
},
"class": "sensor",
"capabilities": [
"measure_battery",
"alarm_smoke"
],
"images": {
"large": "/drivers/SF812/assets/images/large.png",
"small": "/drivers/SF812/assets/images/small.png"
},
"settings": []
},
{
"id": "SP103",
"name": {
"en": "SP103 Motion sensor",
"nl": "SP103 Motion sensor"
},
"energy": {
"batteries": [
"AA",
"AA",
"AA"
]
},
"zwave": {
"manufacturerId": 96,
"productTypeId": 257,
"productId": 1,
"learnmode": {
"image": "/drivers/SP103/assets/learnmode.svg",
"instruction": {
"en": "Click the tamper switch behind the battery cover",
"nl": "Druk op de tamper knop achter de batterij klep"
}
},
"associationGroups": [
1
]
},
"class": "sensor",
"capabilities": [
"alarm_motion",
"measure_battery"
],
"images": {
"large": "/drivers/SP103/assets/images/large.jpg",
"small": "/drivers/SP103/assets/images/small.jpg"
},
"settings": [
{
"id": "phase_on",
"type": "number",
"label": {
"en": "Phase on level",
"nl": "Phase on level"
},
"value": 99,
"hint": {
"en": "Phase on level command",
"nl": "Phase on level command"
},
"attr": {
"min": 0,
"max": 127
}
}
]
},
{
"id": "SP814",
"name": {
"en": "SP814 Motion sensor",
"nl": "SP814 Motion sensor"
},
"zwave": {
"manufacturerId": 96,
"productTypeId": 1,
"productId": 2,
"learnmode": {
"image": "/drivers/SP814/assets/learnmode.svg",
"instruction": {
"en": "Press the inclusion link (marked 5) 3 times behind the battery cover",
"nl": "Druk 3-maal op de knop (nummer 5) achter de batterij klep"
}
},
"associationGroups": [
1
]
},
"class": "sensor",
"capabilities": [
"alarm_motion"
],
"images": {
"large": "/drivers/SP814/assets/images/large.jpg",
"small": "/drivers/SP814/assets/images/small.jpg"
},
"settings": [
{
"id": "sensitivity_level",
"type": "number",
"label": {
"en": "Sensitivity level",
"nl": "Gevoeligheidsniveau"
},
"value": 6,
"hint": {
"en": "1 Means lowest sensitivity and 10 means highest.",
"nl": "1 Is laagste gevoeligheid, 10 hoogste."
},
"attr": {
"min": 1,
"max": 10
}
},
{
"id": "on_off_duration",
"type": "number",
"label": {
"en": "On-off duration (s)",
"nl": "Aan-uit duur (s)"
},
"value": 5,
"hint": {
"en": "How long before device sends Off after being triggered",
"nl": "Vertraging voordat 'Uit' commando verstuurd wordt"
},
"attr": {
"min": 5,
"max": 127
}
}
]
},
{
"id": "SP816",
"name": {
"en": "SP816 Motion sensor",
"nl": "SP816 Motion sensor"
},
"energy": {
"batteries": [
"AAA",
"AAA",
"AAA"
]
},
"zwave": {
"manufacturerId": 96,
"productId": 5,
"productTypeId": 1,
"learnmode": {
"image": "/drivers/SP816/assets/learnmode.svg",
"instruction": {
"en": "Click the tamper switch behind the battery cover 3 times",
"nl": "Druk 3x op de tamper knop achter de batterij klep"
}
},
"associationGroups": [
1
]
},
"class": "sensor",
"capabilities": [
"alarm_motion",
"measure_battery"
],
"images": {
"large": "/drivers/SP816/assets/images/large.jpg",
"small": "/drivers/SP816/assets/images/small.jpg"