gpt4 book ai didi

串口

转载 作者:IT王子 更新时间:2023-10-29 01:11:54 28 4
gpt4 key购买 nike

我想用 python 与我的串口通信。我为 linux 安装了 pyserial 和 uspp:

import serial
ser = serial.Serial('/dev/pts/1', 19200, timeout=1)
print ser.portstr #check which port was really used
ser.write("hello") #write a string
ser.close() #

它给出了以下错误:

Traceback (most recent call last):
File "poi.py", line 5, in <module>
ser.open()
File "/usr/local/lib/python2.6/dist-packages/pyserial-2.5-py2.6.egg/serial/serialposix.py", line 276, in open
raise SerialException("could not open port %s: %s" % (self._port, msg))
serial.serialutil.SerialException: could not open port /dev/tyUSB1: [Errno 2] No such file or directory: '/dev/tyUSB1'

最佳答案

如果您使用的是 linux,通常,串行端口被命名为 /dev/tty* ;只需将 * 替换为 s 和端口号,如 /dev/ttyS1。我使用通过 USB 串口通信的 arduino,它是 /dev/ttyUSB0

关于串口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4040151/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com