Node.js 串口通讯 node-serialport

Posted TLScott

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node.js 串口通讯 node-serialport相关的知识,希望对你有一定的参考价值。

安装:npm install serialport

使用:

var SerialPort = require(‘serialport‘);
var port = new SerialPort(‘COM5‘);

port.on(‘open‘, function() {
port.write(‘main screen turn on‘, function(err) {
if (err) {
return console.log(‘Error on write: ‘, err.message);
}
console.log(‘message written‘);
});
});

要发送byte数组把发送的‘main screen turn on‘改为[0x01,0x02]之类的byte数组
注:版本不同可能使用方式不同,当前使用的版本是7.1.4
官方文档4.0.1地址:https://github.com/node-serialport/node-serialport/blob/4.0.1/README.md



以上是关于Node.js 串口通讯 node-serialport的主要内容,如果未能解决你的问题,请参考以下文章

Node.js笔记:SerialPort(串口)模块使用(基于10.x.x)

Raspberry Pi,Arduino,Node.js和串口

node.js中http通讯模块

node.js_POST服务--配合ajax通讯

STM32串口通讯问题

急!请教RS485串口通讯的问题