-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathboard-config-schema-1.json
386 lines (386 loc) · 12.5 KB
/
board-config-schema-1.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/definitions/BoardConfig",
"title": "Board config schema",
"definitions": {
"BoardConfig": {
"type": "object",
"additionalProperties": false,
"properties": {
"deviceName": {
"type": "string",
"description": "Name of the device",
"maxLength": 32
},
"ledChargingGpio": {
"type": "integer",
"description": "Charging led gpio number"
},
"ledErrorGpio": {
"type": "integer",
"description": "Error led gpio number"
},
"ledWifiGpio": {
"type": "integer",
"description": "WiFi led gpio number"
},
"buttonGpio": {
"type": "integer",
"description": "Button gpio number"
},
"pilot": {
"$ref": "#/definitions/Pilot"
},
"proximity": {
"$ref": "#/definitions/Proximity"
},
"acRelayGpio": {
"type": "integer",
"description": "AC relay gpio number for controlling mains contactor"
},
"socketLock": {
"$ref": "#/definitions/SocketLock"
},
"rcm": {
"$ref": "#/definitions/Rcm"
},
"energyMeter": {
"$ref": "#/definitions/EnergyMeter"
},
"auxInputs": {
"type": "array",
"description": "Aux inputs configuration",
"maxLength": 4,
"items": {
"$ref": "#/definitions/AuxInput"
}
},
"auxOutputs": {
"type": "array",
"description": "Aux outputs configuration",
"maxLength": 4,
"items": {
"$ref": "#/definitions/AuxOutput"
}
},
"auxAnalogInputs": {
"type": "array",
"description": "Aux analog inputs configuration",
"maxLength": 2,
"items": {
"$ref": "#/definitions/AuxAnalogInput"
}
},
"serials": {
"type": "array",
"description": "Serial ports configuration",
"maxItems": 3,
"items": {
"$ref": "#/definitions/Serial"
}
},
"onewire": {
"$ref": "#/definitions/Onewire"
}
},
"required": [
"deviceName",
"buttonWifiGpio",
"pilot",
"acRelayGpio"
],
"title": "Board config"
},
"EnergyMeter": {
"type": "object",
"description": "Energy meter configuration",
"additionalProperties": false,
"properties": {
"currentAdcChannels": {
"type": "array",
"description": "Current sensing of L1, L2, L3 adc1 channels, for single phase set array with one item",
"maxItems": 3,
"items": {
"type": "integer"
}
},
"currentScale": {
"type": "number",
"description": "Multiplier of measured current values"
},
"voltageAdcChannels": {
"type": "array",
"description": "Voltage sensing of L1, L2, L3 adc1 channels, for single phase set array with one item",
"maxItems": 3,
"items": {
"type": "integer"
}
},
"voltageScale": {
"type": "number",
"description": "Multiplier of measured voltage values"
}
},
"required": [
"currentAdcChannels",
"currentScale"
],
"title": "EnergyMeter"
},
"Pilot": {
"type": "object",
"description": "Control pilot configuration",
"additionalProperties": false,
"properties": {
"gpio": {
"type": "integer",
"description": "Generating pwm gpio number"
},
"adcChannel": {
"type": "integer",
"description": "Measuring adc1 channel"
},
"levels": {
"type": "array",
"description": "Measured threshold values for voltages 12, 9, 6, 3 -12 in mV",
"minItems": 5,
"maxItems": 5,
"items": {
"type": "integer"
}
}
},
"required": [
"adcChannel",
"gpio",
"levels"
],
"title": "Pilot"
},
"Proximity": {
"type": "object",
"description": "Proximity pilot configuration",
"additionalProperties": false,
"properties": {
"adcChannel": {
"type": "integer",
"description": "Measuring adc1 channel"
},
"levels": {
"type": "array",
"description": "Measured threshold values for cable 13A, 20A, 32A in mV",
"minItems": 3,
"maxItems": 3,
"items": {
"type": "integer"
}
}
},
"required": [
"adcChannel",
"levels"
],
"title": "Proximity"
},
"SocketLock": {
"type": "object",
"description": "Socket lock configuration",
"additionalProperties": false,
"properties": {
"aGpio": {
"type": "integer",
"description": "Lock A gpio number"
},
"bGpio": {
"type": "integer",
"description": "Lock B gpio number"
},
"detectionGpio": {
"type": "integer",
"description": "Detection gpio number"
},
"detectionDelay": {
"type": "integer",
"description": "Delay after locking/unlocking for check state in ms"
},
"minBreakTime": {
"type": "integer",
"description": "Min break time for repeated locking/unlocking in ms"
}
},
"required": [
"aGpio",
"bGpio",
"detectionDelay",
"detectionGpio",
"minBreakTime"
],
"title": "SocketLock"
},
"Rcm": {
"type": "object",
"description": "Residual current monitor configuration",
"additionalProperties": false,
"properties": {
"gpio": {
"type": "integer",
"description": "Sensing gpio number"
},
"testGpio": {
"type": "integer",
"description": "Test gpio number"
}
},
"required": [
"gpio",
"testGpio"
],
"title": "Rcm"
},
"AuxInput": {
"type": "object",
"description": "Aux input configuration",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "Name",
"maxLength": 8
},
"gpio": {
"type": "integer",
"description": "The gpio number"
}
},
"required": [
"gpio",
"name"
],
"title": "Aux input"
},
"AuxOutput": {
"type": "object",
"description": "Aux output configuration",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "Name",
"maxLength": 8
},
"gpio": {
"type": "integer",
"description": "The gpio number"
}
},
"required": [
"gpio",
"name"
],
"title": "Aux output"
},
"AuxAnalogInput": {
"type": "object",
"description": "Aux analog input configuration",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "Name",
"maxLength": 8
},
"adcChannel": {
"type": "integer",
"description": "The adc1 channel"
}
},
"required": [
"adcChannel",
"name"
],
"title": "Aux analog input"
},
"Serial": {
"type": "object",
"description": "Serial port configuration",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"description": "Type",
"enum": [
"uart",
"rs485"
]
},
"name": {
"type": "string",
"description": "Name",
"maxLength": 16
},
"rxdGpio": {
"type": "integer",
"description": "RX data gpio number"
},
"txdGpio": {
"type": "integer",
"description": "TX data gpio number"
},
"rtsGpio": {
"type": "integer",
"description": "Flow control signal gpio number, required for rs485"
}
},
"anyOf": [
{
"properties": {
"type": {
"const": "uart"
}
},
"required": [
"name",
"rxdGpio",
"txdGpio",
"type"
]
},
{
"properties": {
"type": {
"const": "rs485"
}
},
"required": [
"name",
"rxdGpio",
"txdGpio",
"rtsGpio",
"type"
]
}
],
"title": "Serial"
},
"Onewire": {
"type": "object",
"description": "Onewire bus configuration",
"additionalProperties": false,
"properties": {
"gpio": {
"type": "integer",
"description": "Onewire bus gpio number"
},
"temperatureSensor": {
"type": "boolean",
"description": "Has temperature sensor on onewire bus"
}
},
"required": [
"gpio",
"temperatureSensor"
],
"title": "Onewire"
}
}
}