gpt4 book ai didi

python - 在 Raspberry Pi 上找不到 ttyUSB0

转载 作者:行者123 更新时间:2023-12-01 04:56:43 31 4
gpt4 key购买 nike

我正在编写一个代码,其中 pi 从 USB 串行板获取串行输入(来自 Sparkfun RFID 入门套件),我怎样才能完成这项工作?

error

Traceback (most recent call last): File "main", line 22, in ser = s.Serial('ttyUSB0', 9600, timeout=10000) File "/usr/lib/python2.7/dist-packages/serial/serialutil.py", line 260, in init

self.open()

File "/usr/lib/python2.7/dist-packages/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 ttyUSB0: [Errno 2] No such file or >directory: 'ttyUSB0'

RFID 端口是 ttyUSB0

最佳答案

尝试将 main 中的第 22 行更改为:

 ser = s.Serial('ttyUSB0', 9600, timeout=10000)

至:

 ser = s.Serial('/dev/ttyUSB0', 9600, timeout=10000)

关于python - 在 Raspberry Pi 上找不到 ttyUSB0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27204134/

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