利用 前端js与MSCOMM32控件与串口单片机、plc等设备等进行通讯,文件包含测试代码、windows的MSCOMM32组件文件、说明
2021-12-03 17:36:27 5.21MB MSCOMM32 js html js串口
1
node-serialport 是一个 Node.js 的包,用来对串口数据进行读写操作。基本示例代码:var SerialPort = require("serialport").SerialPort var serialPort = new SerialPort("/dev/tty-usbserial1", {   baudrate: 57600 }, false); // this is the openImmediately flag [default is true] serialPort.open(function (error) {   if ( error ) {     console.log('failed to open: ' error);   } else {     console.log('open');     serialPort.on('data', function(data) {       console.log('data received: '   data);     });     serialPort.write("ls\n", function(err, results) {       console.log('err '   err);       console.log('results '   results);     });   } });罗列所有串口:var serialPort = require("serialport"); serialPort.list(function (err, ports) {   ports.forEach(function(port) {     console.log(port.comName);     console.log(port.pnpId);     console.log(port.manufacturer);   }); });串口配置:baudRatedataBitsstopBitsparityrtsctsxonxoffxanyflowControlbufferSizeparserencodingdataCallbackdisconnectedCallbackplatformOptions - sets platform specific options, see below.目前已有很多项目在使用这个包进行串口处理:Johnny-Five - Firmata based Arduino Framework.Cylon.js - JavaScript Robotics, By Your Command.node-l8smartlight (source) A node library to control the L8 Smartlight via Bluetooth or USB portfirmata Talk natively to Arduino using the firmata protocol.tmpad source - a DIY midi pad using infrared, arduino, and nodejs. Videoduino - A higher level framework for working with Arduinos in node.js.Arduino Drinking Game Extravaganza - AKA "The Russian" a hexidecimal drinking game for geeks by Uxebu presented at JSConf EU 2011.Arduino controlling popcorn.js - Controlling a popcorn.js video with an Arduino kit.Robotic JavaScript - The first live presentation of the node-serialport code set as presented at JSConf EU 2010.devicestack - This module helps you to represent a device and its protocol.reflecta A communication protocol that combines Arduino Libraries and NodeJS into an integrated system.rc4pt-node - Control Popcorntime with an
2021-09-13 10:29:17 178KB 开源项目
1
html实现串口通讯,压缩包内包含配置文件与教程,还有运行成功后的界面。 综合网上的资料,总结出最全面的网页串口实现方式。
1
第一步,复制MSCOMM32.OCX 到 C:\WINDOWS\SysWOW64(如果是32位系统就是C:\WINDOWS\SysWOW32) 依次运行下面三条命令(以管理员身份运行,注意根据系统32位和64位更改命令中的路径): regsvr32 /u C:\WINDOWS\SysWOW64\MSCOMM32.OCX regsvr32 /i C:\WINDOWS\SysWOW64\MSCOMM32.OCX regsvr32 C:\WINDOWS\SysWOW64\MSCOMM32.OCX 运行注册控件: Regedit_MSCOMM32.reg 恭喜可以正常使用MSCOMM32控件了!~ 第二步,设置IE浏览器的ActiveX插件的安全控制,将之都设为启用或提示状态。 第三步,IE浏览器打开demo.html
2021-06-03 11:34:59 56KB web javascript js 串口
1
一个连通串口和js的c#程序
2021-05-08 21:04:33 15KB 串口通信 js串口通讯
1