-
Notifications
You must be signed in to change notification settings - Fork 21
/
app.json
178 lines (178 loc) · 4.28 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
{
"id": "com.neo2",
"name": {
"en": "NEO Sensors"
},
"version": "0.2.0",
"compatibility": ">=0.9.2",
"description": {
"en": "NEO Sensors"
},
"category": [
"appliances",
"lights"
],
"images": {
"large": "/assets/images/large.jpg",
"small": "/assets/images/small.jpg"
},
"author": {
"name": "Marco Ruiter",
"email": "[email protected]"
},
"contributors": [{
"name": "Niels van Gelderen",
"email": "[email protected]"
},
{
"name": "Naam 2",
"email": "[email protected]"
}],
"drivers": [
{
"id": "NAS-DS01Z",
"name": {
"en": "NEO Door Sensor"
},
"zwave": {
"manufacturerId": 600,
"productTypeId": 3,
"productId": 4226,
"learnmode": {
"instruction": {
"en": "Press the button on your NEO Sensor three times",
"nl": "Druk driemaal op de knop in de sensor unit"
}
},
"associationGroups": [ 1 ]
},
"class": "sensor",
"capabilities": [
"alarm_contact",
"alarm_battery",
"measure_battery"
],
"images": {
"large": "/drivers/NAS-DS01Z/assets/images/large.jpg",
"small": "/drivers/NAS-DS01Z/assets/images/small.jpg"
},
"settings": [{
"id": "off_delay",
"type": "number",
"attr": {
"min" : 0,
"max" : 65535
},
"label": {
"en": "Off Delay"
},
"value": 0,
"hint": {
"en": "This configuration parameter that can be used to adjust the amount of delay before the OFF command is transmitted. This parameter can be configured with the value of 0 through 65535, where 0 means send OFF command immediately and 65535 means 65535 seconds of delay"
}
},
{
"id": "basic_set_level",
"type": "number",
"attr": {
"min": -1,
"max": 99
},
"value": -1,
"label": {
"en": "Basic Set Level"
},
"hint": {
"en": "0=OFF, Alarm cancelling or turning a device off, 1-99=Dim Level (Multilevel Switch Device), -1=ON (Binary Switch Device)"
}
}
]
},
{
"id": "NAS-WR01ZE",
"name": {
"en": "NEO Wall Plug"
},
"zwave": {
"manufacturerId": 600,
"productTypeId": 3,
"productId": 4231,
"learnmode": {
"image": "/drivers/NAS-WR01ZE/assets/learnmode.svg",
"instruction": {
"en": "Press the button on your NEO Wall Plug three times",
"nl": "Druk driemaal op de knop op de NEO Wall Plug"
}
},
"associationGroups": [ 1 ]
},
"class": "socket",
"capabilities": [
"onoff",
"measure_power"
],
"images": {
"large": "/drivers/NAS-WR01ZE/assets/images/large.jpg",
"small": "/drivers/NAS-WR01ZE/assets/images/small.jpg"
},
"settings": [
{
"id": "meter_report",
"type": "checkbox",
"label": {
"en": "Meter Report",
"nl": "Meter Report"
},
"value": true,
"hint": {
"en": "This will Disable/Enable meter report measure data to controller.",
"nl": "Dit zal meter rapportages inschakelen naar controller."
}
},
{
"id": "meter_report_interval",
"type": "number",
"attr": {
"min": 60,
"max": 3600
},
"value": 120,
"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": "led_display",
"type": "checkbox",
"label": {
"en": "State indication Led",
"nl": "Status indicatie Led"
},
"value": true,
"hint": {
"en": "This will Disable/Enable the status led on top.",
"nl": "Hiermee schakelt u de functie van de status led aan of uit."
}
},
{
"id": "remeber_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"
}
}
]
}
]
}