pySerial程序无法正确读取串行

时间:2013-05-22 05:16:53

标签: python windows serial-port arduino pyserial

我在使用pySerial时遇到问题,我不知道从哪里开始寻找。 我有一个64位Windows 7操作系统,Python 2.7.5(32位),pySerial和Arduino(Arduino正常工作)已安装。

我的Arduino代码如下:

// the setup routine runs once when you press reset:
void setup() {                
  // initialize the serial in 19200 baud rate
  Serial.begin(19200);     
}

// the loop routine runs over and over again forever:
void loop() {
  delay(1000);               // wait for a second
  Serial.print("hello");
}

(Arduino在COM8中连接,当使用串行监视器时我可以看到它敬礼)

我的PySerial代码如下所示:

import serial
import time

arduino = serial.Serial("COM8", 19200)
time.sleep(2)  

while True:
    print arduino.readline()

当我启动这个脚本时,程序运行,但我看不到串行输出(我认为Python脚本中的配置是正常的,因为如果有什么东西 - 例如端口 - 错误,它会崩溃)。

我不知道如何找到解决方案。 你能救我吗?

1 个答案:

答案 0 :(得分:6)

您可以尝试在Arduino / C端使用println而不是print,和/或在Python端为串行读取设置超时。

由于serial.readline()等待\n,而您永远不会使用print发送,因此串行读取只会等待超时。 (但它比这更复杂,值得阅读readline和EOL上的docs。)

如果这不起作用,至少将readline切换到read并打印出您可能(或可能不会)阅读的每个字符,但不要因为等待而使其变得更复杂适用于\n所需的readline

来自演示docs
使用readline()时要小心。在打开串口时指定超时,否则如果没有收到换行符,它可能永远阻塞。另请注意,readlines()仅适用于超时。 readlines()取决于具有超时并将其解释为EOF(文件结束)。如果端口未正确打开,则会引发异常。