@ncd-io/node-red-enterprise-sensors 2.0.2 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/WirelessGateway.js +790 -3302
- package/lib/sensors/105.js +454 -0
- package/lib/sensors/106.js +472 -0
- package/lib/sensors/107.js +452 -0
- package/lib/sensors/110.js +55 -40
- package/lib/sensors/111.js +19 -2
- package/lib/sensors/112.js +1479 -0
- package/lib/sensors/115.js +292 -0
- package/lib/sensors/12.js +405 -0
- package/lib/sensors/122.js +461 -0
- package/lib/sensors/125.js +1 -1
- package/lib/sensors/126.js +1 -1
- package/lib/sensors/128.js +1 -1
- package/lib/sensors/15.js +439 -0
- package/lib/sensors/21.js +471 -0
- package/lib/sensors/23.js +404 -0
- package/lib/sensors/39.js +324 -0
- package/lib/sensors/4.js +403 -0
- package/lib/sensors/45.js +438 -0
- package/lib/sensors/47.js +295 -0
- package/lib/sensors/48.js +438 -0
- package/lib/sensors/52.js +508 -0
- package/lib/sensors/536.js +708 -0
- package/lib/sensors/539.js +963 -0
- package/lib/sensors/54.js +380 -0
- package/lib/sensors/540.js +439 -0
- package/lib/sensors/541.js +476 -0
- package/lib/sensors/545.js +478 -0
- package/lib/sensors/55.js +419 -0
- package/lib/sensors/554.js +1 -1
- package/lib/sensors/56.js +442 -0
- package/lib/sensors/75.js +469 -0
- package/lib/sensors/88.js +456 -0
- package/lib/sensors/89.js +459 -0
- package/lib/sensors/90.js +404 -0
- package/lib/sensors/95.js +438 -0
- package/lib/sensors/96.js +438 -0
- package/package.json +1 -1
- package/wireless.html +594 -153
- package/wireless.js +145 -35
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
const { toMac, signInt, msbLsb } = require('../utils');
|
|
2
|
+
|
|
3
|
+
// --- 1. DEFINE LOCAL FUNCTIONS ---
|
|
4
|
+
// These are defined as local variables so they can call each other easily.
|
|
5
|
+
module.exports = (globalDevices) => {
|
|
6
|
+
|
|
7
|
+
const get_write_buffer_size = (firmware) => {
|
|
8
|
+
return 17;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
const get_config_map = (firmware) => {
|
|
12
|
+
console.log('Generating sync map for firmware version', firmware);
|
|
13
|
+
|
|
14
|
+
return {
|
|
15
|
+
"core_version": {
|
|
16
|
+
"read_index": 3,
|
|
17
|
+
"descriptions": {
|
|
18
|
+
"title": "Core Version",
|
|
19
|
+
"main_caption": "The version of the core communication stack."
|
|
20
|
+
},
|
|
21
|
+
"validator": {
|
|
22
|
+
"type": "uint8"
|
|
23
|
+
},
|
|
24
|
+
"tags": [
|
|
25
|
+
"system"
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"firmware_version": {
|
|
29
|
+
"read_index": 4,
|
|
30
|
+
"descriptions": {
|
|
31
|
+
"title": "Firmware Version",
|
|
32
|
+
"main_caption": "The application-specific firmware version."
|
|
33
|
+
},
|
|
34
|
+
"validator": {
|
|
35
|
+
"type": "uint8"
|
|
36
|
+
},
|
|
37
|
+
"tags": [
|
|
38
|
+
"system"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"sensor_type": {
|
|
42
|
+
"read_index": 5,
|
|
43
|
+
"descriptions": {
|
|
44
|
+
"title": "Sensor Type",
|
|
45
|
+
"main_caption": "The hardware identifier for the specific sensor model."
|
|
46
|
+
},
|
|
47
|
+
"validator": {
|
|
48
|
+
"type": "uint16be"
|
|
49
|
+
},
|
|
50
|
+
"tags": [
|
|
51
|
+
"system"
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
"tx_lifetime_counter": {
|
|
55
|
+
"read_index": 7,
|
|
56
|
+
"descriptions": {
|
|
57
|
+
"title": "Sampling Interval",
|
|
58
|
+
"main_caption": "Set how often will the sensor transmit measurement data. Note: For this sensor, this value functions as the sampling interval rather than a traditional delay.",
|
|
59
|
+
"sub_caption": "Default value: 20 milliseconds."
|
|
60
|
+
},
|
|
61
|
+
"validator": {
|
|
62
|
+
"type": "uint32be"
|
|
63
|
+
},
|
|
64
|
+
"tags": [
|
|
65
|
+
"diagnostics"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
"hardware_id": {
|
|
69
|
+
"read_index": 11,
|
|
70
|
+
"length": 3,
|
|
71
|
+
"descriptions": {
|
|
72
|
+
"title": "Hardware ID",
|
|
73
|
+
"main_caption": "A unique 3-byte hardware identifier."
|
|
74
|
+
},
|
|
75
|
+
"validator": {
|
|
76
|
+
"type": "buffer"
|
|
77
|
+
},
|
|
78
|
+
"tags": [
|
|
79
|
+
"system"
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
"network_id": {
|
|
83
|
+
"read_index": 14,
|
|
84
|
+
"write_index": 3,
|
|
85
|
+
"length": 2,
|
|
86
|
+
"descriptions": {
|
|
87
|
+
"title": "Network ID",
|
|
88
|
+
"main_caption": ""
|
|
89
|
+
},
|
|
90
|
+
"default_value": "7fff",
|
|
91
|
+
"validator": {
|
|
92
|
+
"type": "hex",
|
|
93
|
+
"length": 4
|
|
94
|
+
},
|
|
95
|
+
"html_id": "pan_id",
|
|
96
|
+
"tags": [
|
|
97
|
+
"communications"
|
|
98
|
+
]
|
|
99
|
+
},
|
|
100
|
+
"destination_address": {
|
|
101
|
+
"read_index": 16,
|
|
102
|
+
"write_index": 5,
|
|
103
|
+
"length": 4,
|
|
104
|
+
"descriptions": {
|
|
105
|
+
"title": "Destination Address",
|
|
106
|
+
"main_caption": ""
|
|
107
|
+
},
|
|
108
|
+
"default_value": "0000ffff",
|
|
109
|
+
"validator": {
|
|
110
|
+
"type": "mac",
|
|
111
|
+
"length": 8
|
|
112
|
+
},
|
|
113
|
+
"html_id": "destination",
|
|
114
|
+
"tags": [
|
|
115
|
+
"communications"
|
|
116
|
+
]
|
|
117
|
+
},
|
|
118
|
+
"node_id": {
|
|
119
|
+
"read_index": 20,
|
|
120
|
+
"write_index": 9,
|
|
121
|
+
"descriptions": {
|
|
122
|
+
"title": "Node ID",
|
|
123
|
+
"main_caption": ""
|
|
124
|
+
},
|
|
125
|
+
"default_value": "0",
|
|
126
|
+
"validator": {
|
|
127
|
+
"type": "uint8",
|
|
128
|
+
"min": 0,
|
|
129
|
+
"max": 255,
|
|
130
|
+
"generated": true
|
|
131
|
+
},
|
|
132
|
+
"html_id": "node_id",
|
|
133
|
+
"tags": [
|
|
134
|
+
"generic"
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
"report_rate": {
|
|
138
|
+
"read_index": 21,
|
|
139
|
+
"write_index": 10,
|
|
140
|
+
"descriptions": {
|
|
141
|
+
"title": "Delay",
|
|
142
|
+
"main_caption": ""
|
|
143
|
+
},
|
|
144
|
+
"default_value": 3,
|
|
145
|
+
"validator": {
|
|
146
|
+
"type": "uint32be"
|
|
147
|
+
},
|
|
148
|
+
"html_id": "delay"
|
|
149
|
+
},
|
|
150
|
+
"tilt_threshold_mode": {
|
|
151
|
+
"read_index": 25,
|
|
152
|
+
"write_index": 14,
|
|
153
|
+
"descriptions": {
|
|
154
|
+
"title": "Set Tilt Threshold Mode",
|
|
155
|
+
"main_caption": "Configures how the sensor triggers data transmissions based on tilt changes."
|
|
156
|
+
},
|
|
157
|
+
"default_value": 2,
|
|
158
|
+
"validator": {
|
|
159
|
+
"type": "uint8",
|
|
160
|
+
"min": 0,
|
|
161
|
+
"max": 2,
|
|
162
|
+
"generated": true
|
|
163
|
+
},
|
|
164
|
+
"options": {
|
|
165
|
+
"0": "Absolute",
|
|
166
|
+
"1": "Incremental",
|
|
167
|
+
"2": "Normal"
|
|
168
|
+
},
|
|
169
|
+
"html_id": "tilt_mode_47"
|
|
170
|
+
},
|
|
171
|
+
"tilt_angle_threshold": {
|
|
172
|
+
"read_index": 26,
|
|
173
|
+
"write_index": 15,
|
|
174
|
+
"descriptions": {
|
|
175
|
+
"title": "Set Tilt Angle Threshold",
|
|
176
|
+
"main_caption": "Sets the tilt angle thresholds for both roll and pitch axes."
|
|
177
|
+
},
|
|
178
|
+
"default_value": 10,
|
|
179
|
+
"validator": {
|
|
180
|
+
"type": "uint8",
|
|
181
|
+
"min": 5,
|
|
182
|
+
"max": 90,
|
|
183
|
+
"generated": true
|
|
184
|
+
},
|
|
185
|
+
"converter": {
|
|
186
|
+
"units": "degrees"
|
|
187
|
+
},
|
|
188
|
+
"html_id": "tilt_angle_47"
|
|
189
|
+
},
|
|
190
|
+
"tilt_auto_check_timer": {
|
|
191
|
+
"read_index": 27,
|
|
192
|
+
"write_index": 16,
|
|
193
|
+
"descriptions": {
|
|
194
|
+
"title": "Set Auto Check Timer",
|
|
195
|
+
"main_caption": "Defines the polling interval for the sensor when operating in Incremental mode only."
|
|
196
|
+
},
|
|
197
|
+
"default_value": 30,
|
|
198
|
+
"validator": {
|
|
199
|
+
"type": "uint8",
|
|
200
|
+
"min": 5,
|
|
201
|
+
"max": 255,
|
|
202
|
+
"generated": true
|
|
203
|
+
},
|
|
204
|
+
"converter": {
|
|
205
|
+
"units": "seconds"
|
|
206
|
+
},
|
|
207
|
+
"html_id": "tilt_timer_47"
|
|
208
|
+
}
|
|
209
|
+
};
|
|
210
|
+
};
|
|
211
|
+
|
|
212
|
+
const sync_parse = (rep_buffer) => {
|
|
213
|
+
let response = {
|
|
214
|
+
'human_readable': {},
|
|
215
|
+
'machine_values': {}
|
|
216
|
+
};
|
|
217
|
+
|
|
218
|
+
// Get the map based on the sensor type byte
|
|
219
|
+
const sync_map = get_config_map(rep_buffer[4]);
|
|
220
|
+
|
|
221
|
+
for (const [key, config] of Object.entries(sync_map)) {
|
|
222
|
+
// Destructure 'type' from inside 'validator' and rename 'read_index' to 'idx'
|
|
223
|
+
const { read_index: idx, length, validator: { type } = {}, converter, options } = config;
|
|
224
|
+
|
|
225
|
+
// If for some reason a config doesn't have a validator/type, skip it
|
|
226
|
+
if (!type) continue;
|
|
227
|
+
|
|
228
|
+
switch (type) {
|
|
229
|
+
case 'uint8':
|
|
230
|
+
response.machine_values[key] = rep_buffer[idx];
|
|
231
|
+
break;
|
|
232
|
+
case 'uint16be':
|
|
233
|
+
response.machine_values[key] = rep_buffer.readUInt16BE(idx);
|
|
234
|
+
break;
|
|
235
|
+
case 'uint32be':
|
|
236
|
+
response.machine_values[key] = rep_buffer.readUInt32BE(idx);
|
|
237
|
+
break;
|
|
238
|
+
case 'buffer':
|
|
239
|
+
response.machine_values[key] = rep_buffer.subarray(idx, idx + length);
|
|
240
|
+
break;
|
|
241
|
+
case 'hex':
|
|
242
|
+
response.machine_values[key] = rep_buffer.subarray(idx, idx + length).toString('hex');
|
|
243
|
+
break;
|
|
244
|
+
case 'mac':
|
|
245
|
+
response.machine_values[key] = rep_buffer.subarray(idx, idx + length).toString('hex');
|
|
246
|
+
break;
|
|
247
|
+
}
|
|
248
|
+
let human_value = response.machine_values[key];
|
|
249
|
+
if(options && options[response.machine_values[key]]){
|
|
250
|
+
human_value = options[response.machine_values[key]];
|
|
251
|
+
}else{
|
|
252
|
+
if(converter && converter.multiplier){
|
|
253
|
+
human_value = human_value * converter.multiplier;
|
|
254
|
+
}
|
|
255
|
+
if(converter && converter.units){
|
|
256
|
+
human_value = human_value + converter.units;
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
response.human_readable[key] = human_value;
|
|
260
|
+
}
|
|
261
|
+
if (Object.hasOwn(response.machine_values, 'destination_address') && response.machine_values.destination_address.toLowerCase() === '00000000') {
|
|
262
|
+
console.log('##############################');
|
|
263
|
+
console.log('#########Dest Override########');
|
|
264
|
+
console.log('##############################');
|
|
265
|
+
response.destination_address = "0000ffff";
|
|
266
|
+
};
|
|
267
|
+
return response;
|
|
268
|
+
};
|
|
269
|
+
|
|
270
|
+
const parse = (payload, parsed, mac) => {
|
|
271
|
+
let status = parsed[7] >> 1; // mode (1-bit left shifted)
|
|
272
|
+
if(status){
|
|
273
|
+
status = 'read_failure';
|
|
274
|
+
} else {
|
|
275
|
+
status = 'read_success';
|
|
276
|
+
}
|
|
277
|
+
return {
|
|
278
|
+
status: status,
|
|
279
|
+
Roll: signInt(parsed.slice(8, 10).reduce(msbLsb), 16) / 100,
|
|
280
|
+
Pitch: signInt(parsed.slice(10, 12).reduce(msbLsb), 16) / 100
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
// --- 2. EXPORT THE MODULE ---
|
|
285
|
+
// Export the module with all the necessary functions and properties
|
|
286
|
+
// that need to be called from outside the scrip
|
|
287
|
+
return {
|
|
288
|
+
type: 47,
|
|
289
|
+
name: 'Wireless Tilt Sensor',
|
|
290
|
+
parse,
|
|
291
|
+
get_write_buffer_size,
|
|
292
|
+
get_config_map,
|
|
293
|
+
sync_parse
|
|
294
|
+
};
|
|
295
|
+
};
|