-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
441 lines (400 loc) · 14.3 KB
/
index.js
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
const io = require("socket.io-client");
const VL53L0X = require('vl53l0x');
const { SerialPort } = require("serialport");
const GPS = require("gps");
const { ReadlineParser } = require('@serialport/parser-readline');
const { initializeBNO055, readAcceleration } = require("./modules/bno055.js");
const moduleData = require("./modules/ads1115_1.js");
const magnet = require("./modules/ads1115_box.js");
const i2c = require('i2c-bus');
var rpio = require('rpio');
const Raspi = require('raspi');
const I2C = require('raspi-i2c').I2C;
const ADS1x15 = require('raspi-kit-ads1x15');
const dgram = require('dgram');
rpio.open(40, rpio.OUTPUT, rpio.LOW);
let adc;
Raspi.init(() => {
try {
console.log("Raspi initialized. Initializing I2C...");
const i2c = new I2C();
console.log("I2C initialized. Initializing ADS1115...");
adc = new ADS1x15({
i2c,
chip: ADS1x15.chips.IC_ADS1115,
address: ADS1x15.address.ADDRESS_0x48,
pga: ADS1x15.pga.PGA_4_096V,
sps: ADS1x15.spsADS1115.SPS_250 // Corrected sps assignment
});
} catch (error) {
console.error("Initialization error:", error);
}
});
async function scanI2CBus() {
const i2cBus = i2c.openSync(1);
const availableAddresses = [];
for (let addr = 0x03; addr <= 0x77; addr++) {
try {
i2cBus.readByteSync(addr, 0x00);
availableAddresses.push(addr);
} catch (e) {
// Ignore errors, they indicate no device at this address
}
}
i2cBus.closeSync();
return availableAddresses;
}
// Function to detect new I2C devices
function detectNewDevices(previousAddresses, currentAddresses) {
return currentAddresses.filter(addr => !previousAddresses.includes(addr));
}
// Function to detect removed I2C devices
function detectRemovedDevices(previousAddresses, currentAddresses) {
return previousAddresses.filter(addr => !currentAddresses.includes(addr));
}
// Main function to periodically check for new and removed devices
async function monitorI2CDevices(interval = 5000) {
let knownAddresses = await scanI2CBus();
console.log('Initial devices:', knownAddresses);
setInterval(async () => {
const currentAddresses = await scanI2CBus();
const newDevices = detectNewDevices(knownAddresses, currentAddresses);
const removedDevices = detectRemovedDevices(knownAddresses, currentAddresses);
if (newDevices.length > 0) {
console.log('New devices detected:', newDevices);
knownAddresses = [...knownAddresses, ...newDevices];
//rpio.write(40, rpio.HIGH);
//rpio.msleep(200);
//rpio.write(40, rpio.LOW)
}
if (removedDevices.length > 0) {
console.log('Devices removed:', removedDevices);
knownAddresses = knownAddresses.filter(addr => !removedDevices.includes(addr));
}
if (newDevices.length === 0 && removedDevices.length === 0) {
//console.log('No changes detected.');
}
}, interval);
}
const socket = io('https://b76host.de', {
path: '/box/socket.io',
transports: ['polling']
});
var gpsData = {};
var accelerationData = {};
var gasData = 0;
var floodData = 0;
var modules = {};
var box_data = {};
let earthID = 0;
let fireID = 0;
let waterID = 0;
let boxID = 0;
let distance;
try {
VL53L0X(1, 0x29).then(async (vl53l0x) => {
setInterval(async () => {
try {
const distanceData = await vl53l0x.measure();
distance = distanceData;
} catch (error) {
console.error("Error measuring distance:", error);
}
}, 50);
});
} catch(err) {
console.log(err);
}
let earthquakeAvg = [];
let times = 0;
let distanceTimes = 0;
var oldI2CAddresses = [];
setInterval(async () => {
let i2cAddresses = await scanI2CBus();
if(oldI2CAddresses.length == 0) {
oldI2CAddresses = i2cAddresses;
}
if(i2cAddresses.length > oldI2CAddresses.length) {
let newDevices = detectNewDevices(oldI2CAddresses, i2cAddresses);
if(newDevices.length > 0) {
console.log('New devices detected:', newDevices);
rpio.write(40, rpio.HIGH);
rpio.msleep(200);
rpio.write(40, rpio.LOW)
oldI2CAddresses = i2cAddresses;
}
}
if(i2cAddresses.length < oldI2CAddresses.length) {
let removedDevices = detectRemovedDevices(oldI2CAddresses, i2cAddresses);
if(removedDevices.length > 0) {
console.log('Devices removed:', removedDevices);
rpio.write(40, rpio.HIGH);
rpio.msleep(400);
rpio.write(40, rpio.LOW)
oldI2CAddresses = i2cAddresses;
}
}
//console.log(i2cAddresses);
if(i2cAddresses.includes(73)) {
console.log("electromagnet");
}
if(i2cAddresses.includes(41)) {
boxID = 1;
//console.log("box");
setInterval(async () => {
if(boxID == 1) {
try {
//console.log(distance);
if(distance < 50) {
console.log(distance);
distanceTimes++;
if(distanceTimes > 100) {
// do drop logic -> electromagnet cant connect yet
}
} else {
distanceTimes--;
}
} catch (error) {
console.error("Error measuring distance:", error);
}
}
}, 100);
} else {
boxID = 0;
}
if(i2cAddresses.includes(72)) {
let data;
adc.readChannel(ADS1x15.channel.CHANNEL_0, (err, value, volts) => {
if (err) {
//console.error("Error reading channel:", err);
} else {
//console.log("Channel read successful. Value:", value, "Volts:", volts);
data = value;
if(!fireID && !waterID) {
if(data>10000 && data<24000) {
fireID = 1;
console.log("fire");
modules["fire"] = true;
setTimeout(async () => {
setInterval(async () => {
let fireData;
adc.readChannel(ADS1x15.channel.CHANNEL_0, (err, value, volts) => {
if (err) {
//console.error("Error reading channel:", err);
} else {
//console.log("Channel read successful. Value:", value, "Volts:", volts);
fireData = value;
gasData = fireData;
if(fireData > 29000 && fireData < 32000) {
console.log("fire!!! " + value);
socket.emit('warning', [ 'fire', id, new Date().toISOString() ]);
}
}
});
}, 100);
}, 100);
}
if(data < 1000) {
waterID = 1;
console.log("water");
modules["flood"] = true
setTimeout(async () => {
setInterval(async () => {
let waterData;
adc.readChannel(ADS1x15.channel.CHANNEL_0, (err, value, volts) => {
if (err) {
//console.error("Error reading channel:", err);
} else {
//console.log("Channel read successful. Value:", value, "Volts:", volts);
waterData = value;
floodData = waterData;
if(waterData > 20000) {
console.log("flood!!!");
socket.emit('warning', [ 'fire', id, new Date().toISOString() ]);
}
}
});
}, 100);
}, 100);
}
}
}
});
} else {
fireID = 0;
waterID = 0;
modules["fire"] = false;
modules["flood"] = false;
fireData = 0;
waterData = 0;
}
if(i2cAddresses.includes(40)) {
earthID = 1;
//console.log("earthquake");
modules["earthquake"] = true;
initializeBNO055().then(() => {
setInterval(async () => {
if(earthID) {
try {
accelerationData = await readAcceleration();
earthquakeDetection = Math.sqrt(accelerationData.x**2 + accelerationData.y**2 + accelerationData.z**2);
// get an average value and detect if it changes
if(times < 11) {
earthquakeAvg = [...earthquakeAvg, earthquakeDetection];
times++;
}
if(times >= 11) {
// if average is higher than 11: reset
//console.log(Math.max(...earthquakeAvg));
if(Math.max(...earthquakeAvg) > 9.85) {
times = 0;
earthquakeAvg = [];
} else {
if(earthquakeDetection > 0.03 + Math.max(...earthquakeAvg) && earthquakeDetection < 10.1) {
console.log(earthquakeDetection);
console.log("earthquake!!!");
socket.emit('warning', { id: id, type: "earthquake", time: new Date().toISOString() });
}
times++;
if(times > 199) {
times = 0;
earthquakeAvg = [];
}
}
}
} catch (error) {
console.log("Error reading acceleration data:", error);
}
}
}, 100);
});
} else {
earthID = 0;
modules["earthquake"] = false;
accelerationData = { x: 0, y: 0, z: 0 };
times = 0;
earthquakeAvg = [];
}
//console.log(gasData);
//console.log(floodData);
//console.log(accelerationData);
//console.log(modules);
// Create box_data object
//try {
// // Create box_data object
// const box_data = {
// id: id,
// gps: gpsData,
// battery: 100,
// temperature: 20,
// humidity: 50,
// airpressure: 1013,
// acceleration: accelerationData,
// gas: gasData,
// flood: floodData,
// modules: modules,
// currentTime: new Date().toISOString()
// };
//
// console.log("sending");
// socket.emit("box_connected", box_data);
//} catch (error) {
// console.log("Error sending data:", error);
//}
}, 100);
const id = "box_001"
const port = new SerialPort({
path:"/dev/serial0",
baudRate:9600,
});
const gps = new GPS();
const parser = port.pipe(new ReadlineParser())
port.on("open", () => {
console.log("Port open");
});
parser.on("data", data => {
try {
gps.update(data);
} catch (e) {
throw e;
}
});
gps.on("data", async data => {
if(data.type == "GGA") {
gpsData["alt"] = data.alt;
} else if(data.type == "RMC") {
gpsData["time"] = data.time;
gpsData["status"] = data.status;
gpsData["lat"] = data.lat;
if(!data.lat) {
gpsData["lat"] = 48.557137026479346;
}
gpsData["lon"] = data.lon;
if(!data.lon) {
gpsData["lon"] = 13.414699200110526;
}
gpsData["speed"] = data.speed;
gpsData["track"] = data.track;
gpsData["variation"] = data.variation;
gpsData["faa"] = data.faa;
gpsData["navStatus"] = data.navStatus;
gpsData["raw"] = data.raw;
} else if(data.type == "VTG") {
} else if(data.type == "GSA") {
} else if(data.type == "GSV") {
gpsData["msgNumber"] = data.msgNumber;
gpsData["msgsTotal"] = data.msgsTotal;
gpsData["satsInView"] = data.satsInView;
gpsData["satellites"] = data.satellites;
} else if(data.type == "GLL") {
}
});
const client = dgram.createSocket('udp4');
//socket.on("connect", () => {
// console.log("Connected to server");
//
// // Create box_data object
// const box_data = {
// id: id,
// gps: gpsData,
// battery: 100,
// temperature: 20,
// humidity: 50,
// airpressure: 1013,
// acceleration: accelerationData,
// gas: gasData,
// flood: floodData,
// modules: modules,
// currentTime: new Date().toISOString()
// };
//
// console.log("sending");
// socket.emit("box_connected", box_data);
//});
setInterval(() => {
const box_data = {
id: id,
gps: gpsData,
battery: 100,
temperature: 20,
humidity: 50,
airpressure: 1013,
acceleration: accelerationData,
gas: gasData,
flood: floodData,
modules: modules,
currentTime: new Date().toISOString()
};
const msg = Buffer.from(JSON.stringify(box_data));
const port = 41234;
const host = "45.9.60.185";
client.send(msg, 0, msg.length, port, host, (err) => {
if (err) {
console.error('Error sending message:', err);
} else {
console.log('Message sent');
}
//client.close();
});
console.log("sending");
}, 500);