-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
51 lines (41 loc) · 1.21 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
// ----------------------------------------------------------------------------
const serial = require('serial'),
// ----------------------------------------------------------------------------
puerto = 'COM3',
opciones = {
baudRate: 9600,
dataBits: 8,
hupcl : true,
lock : true,
parity : 'none',
rtscts : false,
stopBits: 1,
xany : false,
xoff : false,
xon : false,
};
// ----------------------------------------------------------------------------
var usb2ttl = new serial(puerto, opciones),
lectura = '';
usb2ttl.on('readable', iniciar);
function parsear(buffer) {
lectura += buffer.toString();
let lineas = lectura.split('\n');
lectura = lineas.pop();
// Limpiar lineas con caracteres basura y vacias.
lineas = lineas.map((l) => (l.replace(/[^\x20-\x7E]/g, '').trim()))
.filter(Boolean);
if (lineas.length == 0) {
return;
}
// Se detcto texto en la entrada, mostrar por pantalla
console.log(lineas);
}
function iniciar() {
usb2ttl.on('data', parsear);
// Enviar un texto por TX cada 100ms
setInterval(() => {
usb2ttl.write('Prueba\n');
}, 100);
}
// ----------------------------------------------------------------------------