对于我的node.js服务器的这部分代码

var SerialPort = require("serialport");
var port = new SerialPort("/dev/tty-usbserial1", {});
使用https://github.com/EmergingTechnologyAdvisors/node-serialport库。
我怎么知道这个通往我的串口的路径?

最佳答案

要查找系统上可用COM端口的路径,可以使用list方法。

我建议不要删除任何具有未定义制造商属性的属性,因为这些属性通常看起来像内置蓝牙等。

例子:

const SerialPort = require('serialport')
SerialPort.list((err, ports) => {
    console.log(ports)
})

说明文件:
https://node-serialport.github.io/node-serialport/SerialPort.html#.list

关于node.js - node.js到串行端口的路径,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38607979/

10-10 00:01