NodeJS 读取 TTY 串行
我找不到任何使用 Node.JS 在机器上简单读取串行端口的示例,而且似乎我不是唯一一个在寻找的人。
最近它是一个包含的库,但我无法理解它!
http://nodejs.org/docs/v0.3.8/api/tty.html
有谁有一个简单读取串行端口并仅 console.log 输出的示例吗?
I can't find any examples of simply reading a serial port on a machine using Node.JS and seems I'm not the only one looking.
Quite recently it is an included library but I can't make head or tail of it!
http://nodejs.org/docs/v0.3.8/api/tty.html
Does anyone have an example of simply reading the serial port and just console.log the output?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试查看 node-serialport 模块源代码。
Try to look at node-serialport module source.
@James,要在 Windows 上配置兼容性,请尝试以下操作:
@James, to configure the comport on windows try this:
在 Windows 上,使用 v0.5.2 node.exe 下载即可运行,无需插件。它以 9600 波特率读取 COM1。
On Windows this works using the v0.5.2 node.exe download, no plug-ins. It reads COM1 at 9600 baud.
您是否看过最新的文档上的示例?
Have you seen the example on the most recent docs?