在Windows XP上使用pyserial模块从串行端口(COM3)读取数据
在讨论问题之前,这里有一些硬件/软件信息:
访问的设备:Ohaus Scout Pro 数字体重机 (产品链接) 使用的接口:USB(产品链接) 串口:COM3 操作系统:WinXP Python版本:Activestate Python 2.7 pyserial 版本:2.5
Python 识别了这个串行端口并且打开它没有任何问题。我是 python 和 pyserial 的新手。我不知道如何从串行端口读取数据。我使用了以下代码:
1 import serial
2 ser=serial.Serial(port='COM3',timeout=3)
3 s=ser.read(100) #reading up to 100 bytes
4 print s
这不会打印任何内容。在这 3 秒超时期间,我将一个物体放在称重机上,机器上显示为 100 克。但是,这些数据没有显示在计算机上。如何使用 pyserial 读取这些数据?
Before going into the problem, here is some hardware/software information:
Device accessed: Ohaus Scout Pro Digital Weight Machine (product link)
Interface used: USB (product link)
Serial Port: COM3
OS: WinXP
Python Version: Activestate Python 2.7
pyserial version: 2.5
Python recognized this serial port and had no problems opening it. I am new to python as well as pyserial. I couldn't figure out how exactly can I read data from the serial port. I used the following code:
1 import serial
2 ser=serial.Serial(port='COM3',timeout=3)
3 s=ser.read(100) #reading up to 100 bytes
4 print s
This prints nothing. During those 3 seconds timeout, I placed an object on the weighing machine and it showed 100grams on the machine. But, this data is not showing on the computer. How can I read this data using pyserial?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
波特率丢失。您必须指定波特率。大多数串行设备不能容忍错误的通信速度。
The baudrate is missing. You must specify baudrate. Most serial devices can not tolerate a wrong communication speed.