在Windows XP上使用pyserial模块从串行端口(COM3)读取数据

发布于 2024-10-31 07:15:02 字数 648 浏览 0 评论 0原文

在讨论问题之前,这里有一些硬件/软件信息:

访问的设备: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我三岁 2024-11-07 07:15:02

波特率丢失。您必须指定波特率。大多数串行设备不能容忍错误的通信速度。

The baudrate is missing. You must specify baudrate. Most serial devices can not tolerate a wrong communication speed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文