我使用Node JS SerialPort@6.0.0
程序包连接到计算机端口。
我写了这段代码来获取arduino-uno
数据:
const SerialPort = require('serialport');
const port = new SerialPort('COM4',{
baudRate: 9600
});
port.on('open', function(){
console.log("port open");
port.on('data', function(data){
console.log("Data:" + data);
})
})
启动时会自动按顺序停止。我已经使用了错误的处理程序,但没有显示错误。当我使用serialport@4.0.0
时,它可以完美无瑕。