本文将使用 nodejs 的 SerialPort 包来实现串口通讯功能。
Node SerialPort 是一个 JavaScript 库,用于连接到在 NodeJS 和 Electron 中工作的串行端口,以下是准备环境:
本文操作过程来自:
https://girishjoshi.io/post/access-serialport-from-electron-application-and-creating-gui-for-micropython-repl-on-esp8266/
文档地址:
https://serialport.io/docs/
主对象,使用流式传输支持跨平台的串行端口访问。
为绑定提供的流式接口。
为nodejs、electron提供跨平台的绑定支持。
为测试实现模拟绑定功能。
一个typescript 接口用来实现自己的绑定时使用。
解析器用来对原始的二进制数据转换成自己需要的消息格式。 包含以下解析器包,这里不进行详解:
比较有用的命令行工具,包括:
# Clone the Quick Start repository
$ git clone https://github.com/electron/electron-quick-start
# Go into the repository
$ cd electron-quick-start
# Install the dependencies and run
$ npm install && npm start
npm install --save serialport
因为选择npm版本不同,这里要对库进行重编译,要先安装 electron-rebuild 工具。
npm install --save-dev electron-rebuild
.\node_modules\.bin\electron-rebuild
npm rebuild
注意原文路径中用的 /
, 我在windows 系统,改用 \
。
npm install node-gyp electron electron-rebuild serialport --build-from-source
./node_modules/.bin/electron-rebuild
npm start
修改 WebPreferences
如下:
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
nodeIntegration: true,
contextIsolation: false
}
DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Electron test serialporttitle>
head>
<body>
<h1>Serial terminalh1>
<script>
//load serialport module
const {SerialPort} = require('serialport');
SerialPort.list().then(_=>{console.info(_);});
const serialPort = new SerialPort({path:'COM3', baudRate: 115200}, function (err) {
if(err) {
console.error(err);
}
});
console.info(serialPort);
serialPort.write("abc", (err)=>{
if (err) {
return console.log('Error on write: ', err.message)
}
console.log('message written')
});
serialPort.on('error', function(err) {
console.log('Error: ', err.message)
});
serialPort.on('data', function (data){
console.info('data', data);
});
script>
<script>
require('./renderer.js')
script>
body>
html>
npm start
在执行electron-rebuild时,可能需要安装windows-build-tools。新版本的windows-build-tools支持Python3.*版本,但使用Python2.7比较保险。
如果本机没有Python2.7,则可以使用MiniAnaconda配置虚拟环境 。 先下载安装MiniAnaconda工具,然后用命令行创建虚拟环境 :
conda create -n py27 python=2.7
conda activate py27
直接安装windows-build-tools大概率会失败,可按以下流程操作:
在执行npm install -g node-gpy
后使用命令:
npm install -g --production [email protected]
更多关于serialport的功能可参考官方文档。