-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathapp.json
1152 lines (1152 loc) · 34.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
{
"_comment": "This file is generated. Please edit .homeycompose/app.json instead.",
"id": "com.telldus",
"sdk": 3,
"name": {
"en": "Telldus Z-wave",
"no": "Telldus Z-wave"
},
"description": {
"en": "Experience the Smart Home",
"no": "Opplev det smarte hjemmet"
},
"category": "appliances",
"version": "1.4.3",
"compatibility": ">=5.0.0",
"brandColor": "#000000",
"author": {
"name": "Yngve Bøe Haugom",
"email": "[email protected]"
},
"contributing": {
"donate": {
"paypal": {
"username": "YHaugom"
}
}
},
"contributors": {
"developers": [
{
"name": "Yngve Bøe Haugom",
"email": "[email protected]"
},
{
"name": "Michael Medin",
"email": "[email protected]"
},
{
"name": "Tobbe Eriksson",
"email": "[email protected]"
},
{
"name": "Kristoffer Sjöberg",
"email": ""
}
]
},
"bugs": {
"url": "https://github.com/yhaugom/com.telldus/issues"
},
"homeyCommunityTopicId": 1548,
"source": "https://github.com/yhaugom/com.telldus",
"images": {
"large": "/assets/images/large.png",
"small": "/assets/images/small.png",
"xlarge": "assets/images/xlarge.png"
},
"tags": {
"en": [
"door sensor",
"window sensor",
"power plug",
"motion sensor"
],
"no": [
"dørsensor",
"vindussensor",
"strømplugg",
"bevegelsessensor"
]
},
"platforms": [
"local"
],
"drivers": [
{
"name": {
"en": "Door/window sensor"
},
"class": "sensor",
"capabilities": [
"alarm_contact",
"measure_battery"
],
"energy": {
"batteries": [
"LS14250"
]
},
"images": {
"large": "/drivers/TZDW-100/assets/images/large.png",
"small": "/drivers/TZDW-100/assets/images/small.png"
},
"tags": {
"en": [
"door sensor",
"window sensor",
"magnet sensor",
"contact alarm"
]
},
"pair": [
{
"id": "list_devices",
"template": "list_devices",
"navigation": {
"next": "add_devices"
},
"options": {
"singular": true
}
},
{
"id": "add_devices",
"template": "add_devices"
}
],
"zwave": {
"manufacturerId": 374,
"productTypeId": [
5
],
"productId": [
1
],
"wakeUpInterval": 21600,
"learnmode": {
"image": "/drivers/TZDW-100/assets/learnmode.svg",
"instruction": {
"en": "Automatic inclusion: \nWhen a battery is inserted, the device is in automatic inclusion mode for one minute (Network Wide Inclusion, NWI).\n For manual inclusion: \nPress the button on the device three times fast."
}
},
"productDocumentation": "https://products.z-wavealliance.org/ProductManual/File?folder=&filename=Manuals/1455/Quickguide_Sensor_Switch_107x153mm_PMS.pdf",
"zwaveAllianceProductId": 1455,
"imageRemotePath": "https://products.z-wavealliance.org/ProductImages/Index?productName=ZC10-15100003",
"associationGroups": [
1,
2,
3
],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "Z-Wave Plus Lifeline"
}
},
"2": {
"hint": {
"en": "Sensor status\nThe sensor will send control commands to nodes in this group when the status of the sensor changes."
}
},
"3": {
"hint": {
"en": "Sensor status\nThe sensor will send control commands to nodes in this group when the sensor is opened only."
}
}
},
"unlearnmode": {
"instruction": {
"en": "Press the button on the device three times fast. The device will be reset/removed from the Z-wave network, and ready for inclusion."
}
}
},
"settings": [
{
"type": "group",
"label": {
"en": "Association group 2"
},
"collapsed": true,
"children": [
{
"id": "command_assoc_group_2",
"type": "dropdown",
"value": "0",
"label": {
"en": "Command sent"
},
"hint": {
"en": "Select what type of command to be sent to nodes in association group 2. Possible values: 0: Basic, 1: Switch Binary, 2: Switch All, 3: Switch Multilevel."
},
"zwave": {
"index": 1,
"size": 1
},
"values": [
{
"id": "0",
"label": {
"en": "Basic"
}
},
{
"id": "1",
"label": {
"en": "Switch Binary"
}
},
{
"id": "2",
"label": {
"en": "Switch All"
}
},
{
"id": "3",
"label": {
"en": "Switch Multilevel"
}
}
]
},
{
"id": "value_assoc_group_2",
"type": "number",
"label": {
"en": "Value sent"
},
"hint": {
"en": "Select the value to be sent to association group 2 when Swith Multilevel is set in above setting.\nUse 1-99 for specific dim-level, -1 return to last value. \nShould only be changed when Switch Multilevel is set in configuration 1."
},
"zwave": {
"index": 2,
"size": 1
},
"value": -1,
"attr": {
"min": -1,
"max": 99
}
},
{
"id": "invert_signal_assoc_group_2",
"type": "checkbox",
"value": false,
"label": {
"en": "Invert signals"
},
"hint": {
"en": "When this configuration is set to inverted, an off-signal will be sent when the sensor is opened and on-signal when it's closed."
},
"zwave": {
"index": 3,
"size": 1
}
}
]
},
{
"type": "group",
"collapsed": true,
"label": {
"en": "Association group 3"
},
"children": [
{
"id": "command_assoc_group_3",
"type": "dropdown",
"label": {
"en": "Command sent"
},
"hint": {
"en": "Select the type of command to be sent to nodes in association group 3. Possible values: 0: Basic, 1: Switch Binary, 2: Switch All, 3: Switch Multilevel."
},
"zwave": {
"index": 4,
"size": 1,
"signed": false
},
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "Basic"
}
},
{
"id": "1",
"label": {
"en": "Switch Binary"
}
},
{
"id": "2",
"label": {
"en": "Switch All"
}
},
{
"id": "3",
"label": {
"en": "Switch Multilevel"
}
}
]
},
{
"id": "value_assoc_group_3",
"type": "number",
"value": -1,
"attr": {
"min": -1,
"max": 99
},
"label": {
"en": "Value sent"
},
"hint": {
"en": "Select the value to be sent to association group 3 when Swith Multilevel is set in above setting.\nUse 1-99 for specific dim-level, -1 return to last value. \nShould only be changed when Swith Multilevel is set in configuration 1."
},
"zwave": {
"index": 5,
"size": 1
}
},
{
"id": "invert_signal_assoc_group_3",
"type": "checkbox",
"label": {
"en": "Invert signals"
},
"hint": {
"en": "When this configuration is set to inverted, an off-signal will be sent when the sensor is opened, and an on-signal when it's closed."
},
"zwave": {
"index": 6,
"size": 1
},
"value": false
}
]
},
{
"id": "led_indicator",
"type": "checkbox",
"value": true,
"label": {
"en": "LED-Indicator"
},
"hint": {
"en": "Select if the LED indicator shold be active or not. Turn it off to reduce the power consumption."
},
"zwave": {
"index": 7,
"size": 1
}
},
{
"id": "command_lifeline_type",
"type": "dropdown",
"label": {
"en": "Command type"
},
"hint": {
"en": "Type of command to be sent in the Lifeline. 0 - Notification, 1 - Sensor binary."
},
"zwave": {
"index": 8,
"size": 1
},
"value": "0",
"values": [
{
"id": "0",
"label": {
"en": "Notification"
}
},
{
"id": "1",
"label": {
"en": "Sensor binary"
}
}
]
}
],
"connectivity": [
"zwave"
],
"platforms": [
"local"
],
"id": "TZDW-100"
},
{
"id": "TZDW-15110",
"name": {
"en": "Door sensor"
},
"class": "sensor",
"capabilities": [
"measure_battery",
"alarm_contact",
"alarm_tamper"
],
"images": {
"small": "/drivers/TZDW-15110/assets/images/small.png",
"large": "/drivers/TZDW-15110/assets/images/large.png",
"xlarge": "/drivers/TZDW-15110/assets/images/xlarge.png"
},
"zwave": {
"manufacturerId": 520,
"productTypeId": [
512
],
"productId": [
8
],
"wakeUpInterval": 43200,
"zwaveAllianceProductId": 2844,
"learnmode": {
"image": "/drivers/TZDW-15110/assets/learnmode.svg",
"instruction": {
"en": "Click the button under the panel three times to enable inclusion mode.",
"no": "Trykk på den lille sorte knappen under batteridekselet tre ganger raskt. Dette klargjør enheten for inkludering."
}
},
"unlearnmode": {
"instruction": {
"en": "Press the button under the battery panel three times fast. The device will be reset/removed from the Z-wave network, and ready for inclusion.",
"no": "Trykk på den lille sorte knappen under batteridekselet tre ganger raskt. Dette nullstiller og eventuelt fjerner enheten."
}
},
"associationGroups": [
1,
2
],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "Door Sensor will send notification report and battery report to the associated nodes (Z-wave lifeline).",
"no": "Dørsensor vil sende en \"notification report\" til assosierte enheter (noder) i gruppe 1 (Z-wave lifeline)."
}
},
"2": {
"hint": {
"en": "Door Sensor will send Basic Set command to the associated nodes (max 5) when the sensor alarm is triggered (open/close).",
"no": "Dørsensor vil sende Basic Set kommando til enheter (maksimalt 5) i assosiasjonsgruppe 2 når sensor åpnes eller lukkes."
}
}
}
},
"connectivity": [
"zwave"
],
"platforms": [
"local"
],
"energy": {
"batteries": [
"AAA",
"AAA"
]
},
"settings": [
{
"id": "BASIC_SET",
"value": false,
"label": {
"en": "BASIC_SET is sent",
"no": "BASIC_SET sendes"
},
"hint": {
"en": "BASIC_SET is sent to nodes in association group 2 when enabled (default is off). When turned on, you can have this sensor trigger lights (or other BASIC_SET compatible devices) when a door/window is opened.",
"no": "BASIC_SET sendes til enheter i assosiasjonsgruppe 2 når på (standardverdi er av). Når denne er aktivert vil f.eks. lys (eller andre BASIC_SET kompatible enheter) i ass.gruppe 2 slås på når en dør eller et vindu åpnes."
},
"zwave": {
"index": 14,
"size": 1
},
"type": "checkbox"
},
{
"id": "BASIC_SET_invert",
"value": false,
"label": {
"en": "Invert BASIC_SET triggering",
"no": "Inverter BASIC_SET virkemåte"
},
"hint": {
"en": "Invert the way the nodes in association group 2 is triggered with the BASIC_SET command. BASIC_SET must be enabled for this setting to have any effect. For example turn off a light in ass. group 2 when a door is opened.",
"no": "Inverter måten enheter i assosiasjonsgruppe 2 blir aktivert med BASIC_SET kommandoen. BASIC_SET må være aktivert for at denne innstillingen skal ha noen effekt. F.eks. slå av et lys i ass.gruppe 2 når en dør åpnes."
},
"zwave": {
"index": 15,
"size": 1
},
"type": "checkbox"
},
{
"id": "low_battery",
"value": 20,
"label": {
"en": "Level of low battery alarm.",
"no": "Nivå for alarm for lavt batteri."
},
"hint": {
"en": "This parameter defines a battery level as the “low battery”.",
"no": "Denne verdien setter et nivå for når batterivarsel skal aktiveres."
},
"zwave": {
"index": 32,
"size": 1
},
"attr": {
"min": 10,
"max": 50
},
"type": "number"
}
]
},
{
"id": "TZPIPIR-14279",
"name": {
"en": "Pet immune PIR motion sensor",
"no": "Kjæledyrimmun bevegelsessensor"
},
"class": "sensor",
"capabilities": [
"measure_humidity",
"measure_temperature",
"alarm_motion",
"alarm_tamper",
"measure_battery"
],
"platforms": [
"local"
],
"connectivity": [
"zwave"
],
"images": {
"small": "/drivers/TZPIPIR-14279/assets/images/small.png",
"large": "/drivers/TZPIPIR-14279/assets/images/large.png",
"xlarge": "/drivers/TZPIPIR-14279/assets/images/xlarge.png"
},
"zwave": {
"manufacturerId": 96,
"productTypeId": [
1
],
"productId": [
4
],
"wakeUpInterval": 14400,
"learnmode": {
"image": "/drivers/TZPIPIR-14279/assets/learnmode.svg",
"instruction": {
"en": "Press the learn key 3 times within 1.5 seconds to put the sensor into inclusion mode.",
"no": "Trykk på inkluderingsknappen 3 ganger innen 1.5 sekunder for å aktivere inkluderingsmodus."
}
},
"unlearnmode": {
"image": "/drivers/TZPIPIR-14279/assets/learnmode.svg",
"instruction": {
"en": "Press the learn key 3 times within 1.5 seconds to reset/remove the sensor from the network.",
"no": "Trykk på inkluderingsknappen 3 ganger innen 1.5 sekunder for å nullstille/fjerne sensoren fra nettverket."
}
},
"zwaveAllianceProductId": 3366,
"productDocumentation": "https://products.z-wavealliance.org/ProductManual/File?folder=&filename=MarketCertificationFiles/3366/SP815%20user%20manual_05102019-A501112752R01.pdf",
"imageRemotePath": "https://products.z-wavealliance.org/ProductImages/ProductImage?prod=3366&which=21",
"associationGroups": [
1,
2
],
"associationGroupsOptions": {
"2": {
"hint": {
"en": "PIR Control - The sensor will send control commands (on/off) to maximum 4 associated devices.",
"no": "PIR-kontroll - Sensoren vil sende kontrollkommandoer (på/av) til maksimalt 4 tilknyttede enheter."
}
}
},
"defaultConfiguration": [
{
"id": 1,
"size": 2,
"value": 1800
},
{
"id": 2,
"size": 2,
"value": 180
},
{
"id": 3,
"size": 2,
"value": 15
}
],
"securityClasses": [
"S2_UNAUTHENTICATED",
"S2_AUTHENTICATED"
]
},
"imageRemotePath": "https://products.z-wavealliance.org/ProductImages/ProductImage?prod=3366&which=21",
"energy": {
"batteries": [
"CR123A"
]
},
"settings": [
{
"id": "TEMP_HUMID_REPORT",
"value": 1800,
"label": {
"en": "Temperature and Humidity Auto Report period setting.",
"no": "Innstilling for automatisk rapporteringsperiode for temperatur og fuktighet."
},
"hint": {
"en": "The parameter adjusts report time, in seconds, of temperature and humidity report. Default value is 1800 seconds (30 min).",
"no": "Parameteren justerer rapporteringstiden, i sekunder, for temperatur- og fuktighetsrapport. Standardverdi er 1800 sekunder (30 min)."
},
"zwave": {
"index": 1,
"size": 2
},
"attr": {
"min": 1,
"max": 14400
},
"type": "number"
},
{
"id": "RE_TRIGGER_INT",
"value": 180,
"label": {
"en": "Re-trigger Interval Setting (for PIR sensor only)",
"no": "Innstilling for re-trigger-intervall (kun for PIR-sensor)"
},
"hint": {
"en": "The parameter adjusts the sleep period in seconds after the detector has been triggered. No response will be made during this interval if a movement is presented. Longer re-trigger interval will result in longer battery life. Default value is 180 seconds.",
"no": "Parameteren justerer søvnperioden i sekunder etter at detektoren har blitt utløst. Det vil ikke bli gitt noe respons i løpet av dette intervallet hvis en bevegelse blir oppdaget. Lengre re-trigger-intervall vil resultere i lengre batterilevetid. Standardverdi er 180 sekunder."
},
"zwave": {
"index": 2,
"size": 2
},
"attr": {
"min": 10,
"max": 3600
},
"type": "number"
},
{
"id": "TRIGGER_OFF_INT",
"value": 15,
"label": {
"en": "Trigger Off Interval Setting",
"no": "Innstilling for Trigger Off-intervall"
},
"hint": {
"en": "This controls how long, in seconds, the connected lighting will stay on after the motion is detected. This is useful for Group 2 associations where the detector is connected directly to another device such as smartplugs. Default value is 15 seconds.",
"no": "Dette kontrollerer hvor lenge, i sekunder, den tilkoblede belysningen vil være på etter at bevegelsen er oppdaget. Dette er nyttig for gruppe 2-assosiasjoner der detektoren er direkte tilkoblet en annen enhet, som for eksempel smartplugger. Standardverdi er 15 sekunder."
},
"zwave": {
"index": 3,
"size": 2
},
"attr": {
"min": 10,
"max": 3600
},
"type": "number"
}
]
},
{
"name": {
"en": "Plug-in Switch"
},
"class": "socket",
"capabilities": [
"onoff"
],
"images": {
"large": "/drivers/TZWP-100/assets/images/large.png",
"small": "/drivers/TZWP-100/assets/images/small.png"
},
"zwave": {
"manufacturerId": 374,
"productTypeId": [
3
],
"productId": [
1,
2
],
"learnmode": {
"image": "/drivers/TZWP-100/assets/learnmode.svg",
"instruction": {
"en": "Automatic inclusion: \nWhen the device is inserted into an electrical outlet, it’s in automatical inclusion mode for four minutes (Network Wide Inclusion, NWI).\nTo manually add device to network: \n Press the button on the device three times fast. \nIf the device is not added to any Z-wave network, the LED will flash red slowly."
}
},
"productDocumentation": "https://products.z-wavealliance.org/ProductManual/File?folder=&filename=Manuals/1536/manual.pdf",
"zwaveAllianceProductId": 1536,
"imageRemotePath": "http://products.z-wavealliance.org/ProductImages/Index?productName=ZC10-15115002",
"associationGroups": [
1,
2
],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "Z-Wave Plus Lifeline - Plug status - Max 1 node"
}
},
"2": {
"hint": {
"en": "The plug will send Basic Set control signals to the nodes in this group whenever the status of the plug changes. This will work like a master/slave solution. Maximum 10 nodes."
}
}
},
"unlearnmode": {
"instruction": {
"en": "Press the button on the device three times fast. The device will be reset/removed from the Z-wave network, and ready for inclusion."
}
}
},
"settings": [
{
"id": "countdown_timer",
"type": "number",
"value": 0,
"attr": {
"min": 0,
"max": 254
},
"zwave": {
"index": 1,
"size": 1,
"signed": false
},
"label": {
"en": "Countdown timer"
},
"hint": {
"en": "Number of minutes before it automatically switches off. Default value: 0 (disabled)."
}
},
{
"id": "state_after_power_failure",
"type": "number",
"value": 1,
"attr": {
"min": 0,
"max": 2
},
"zwave": {
"index": 2,
"size": 1,
"signed": false
},
"label": {
"en": "State after power failure"
},
"hint": {
"en": "Decide what the plug should do after power failure. \nPossible values: 0: Always off, 1: Remember status (Default), 2: Always on."
}
},
{
"id": "led_indicator",
"type": "number",
"value": 0,
"attr": {
"min": 0,
"max": 100
},
"zwave": {
"index": 3,
"size": 1,
"signed": false
},
"label": {
"en": "LED indicator"
},
"hint": {
"en": "Set the intensity of the LED indicator in %. Default value: 100. Possible values: 0-100"
}
}
],
"connectivity": [
"zwave"
],
"platforms": [
"local"
],
"id": "TZWP-100"
},
{
"name": {
"en": "Plug-in Switch Mini"
},
"class": "socket",
"capabilities": [
"onoff",
"meter_power",
"measure_power",
"button.reset_meter"
],
"capabilitiesOptions": {
"button.reset_meter": {
"maintenanceAction": true,
"title": {
"en": "Reset power meter"
},
"desc": {
"en": "Reset the accumulated power usage (kWh), note that this can not be reversed."
}
}
},
"images": {
"large": "/drivers/TZWP-102/assets/images/large.png",
"small": "/drivers/TZWP-102/assets/images/small.png"
},
"zwave": {
"manufacturerId": 374,
"productTypeId": [
3
],
"productId": [
3
],
"learnmode": {
"instruction": {
"en": "Automatic inclusion: \nWhen the device is inserted into an electrical outlet it’s in automatical inclusion mode for four minutes (Network Wide Inclusion, NWI).\nTo manually add device to network: \nPress the button on the device three times fast. \nIf the device is not added to any Z-wave network, the LED will flash red slowly."
}
},
"productDocumentation": "https://products.z-wavealliance.org/ProductManual/File?folder=&filename=Manuals/2892/TZWP-102_technical-manual.pdf",
"zwaveAllianceProductId": 2892,
"imageRemotePath": "http://products.z-wavealliance.org/ProductImages/Index?productName=ZC10-18036072",
"associationGroups": [
1,
2
],
"associationGroupsOptions": {
"1": {
"hint": {
"en": "Z-Wave Plus Lifeline - Plug status - Max 1 node"
}
},
"2": {
"hint": {
"en": "The plug will send Basic Set control signals to the nodes in this group whenever the status of the plug changes. This will work like a master/slave solution. Maximum 10 nodes."
}
}
},
"unlearnmode": {
"instruction": {
"en": "Press the button on the device three times fast. The device will be reset/removed from the Z-wave network, and ready for inclusion."
}
}
},
"settings": [
{
"id": "config_lock",
"type": "number",
"value": 0,
"attr": {
"min": 0,
"max": 1
},
"zwave": {
"index": 254,
"size": 1,
"signed": false
},
"label": {
"en": "Configuration lock"
},
"hint": {
"en": "Enable/disable the configuration command. \n0 = Unlocked (default).\n1 = Locked"
}
},
{
"id": "over_current",
"type": "number",
"value": 1,
"attr": {
"min": 0,
"max": 1
},
"zwave": {
"index": 1,
"size": 1,
"signed": false
},
"label": {
"en": "Overcurrent protection."
},
"hint": {
"en": "Overcurrent protection.\n0 = Disabled.\n1 = Enabled (default)."
}
},
{
"id": "state_after_power_failure",
"type": "number",
"value": 0,
"attr": {
"min": 0,
"max": 2
},
"zwave": {
"index": 2,
"size": 1,
"signed": false
},
"label": {
"en": "State after power failure"
},
"hint": {
"en": "Decide what the plug should do after power failure.\n0 = Remember status (default).\n1 = Always on.\n2 = Always off."
}
},
{
"id": "notify_status_change",
"type": "number",
"value": 1,
"attr": {
"min": 0,
"max": 2
},
"zwave": {
"index": 3,
"size": 1,
"signed": false
},
"label": {
"en": "Notification when load status change"
},
"hint": {
"en": "Decide the behaviour for notification when load status is updated. \n0 = Disabled.\n1 = Send Basic report (ON/OFF). (default)\n2 = Send Basic report (ON/OFF) only when load status is not changed by Z-WAVE command."
}
},
{
"id": "led_status",
"type": "number",
"value": 0,
"attr": {
"min": 0,
"max": 1
},
"zwave": {
"index": 4,
"size": 1,
"signed": false
},
"label": {
"en": "LED load indication"
},
"hint": {
"en": "0 = The LED status follows the load change.\n1 = When operating the load, the LED lights for 5 seconds and then turns off."
}
},
{
"id": "min_watt_change",
"type": "number",
"value": 50,
"attr": {
"min": 1,
"max": 2500
},
"zwave": {
"index": 16,
"size": 2,
"signed": false
},
"label": {
"en": "Wattage report threshold (W)"
},
"hint": {
"en": "The value here represents the minimum change in wattage (W), since the last report, for a new report to be sent."
}
},
{
"id": "min_watt_change_percent",
"type": "number",
"value": 10,
"attr": {
"min": 0,
"max": 100
},
"zwave": {
"index": 17,
"size": 1
},
"label": {
"en": "Wattage report threshold (%)"
},
"hint": {
"en": "The value here represents minimum change in wattage percentage, since the last report, for a meter report (W) to be sent. 0 - Disabled."
}
},
{
"id": "time_meter_report_w",
"type": "number",