本文介绍了MacPython:以编程方式查找所有串行端口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在寻找一种解决方案,以编程方式使用python返回所有可用的串行端口.
I am looking for a solution to programmatically return all available serial ports with python.
目前我正在终端中输入 ls/dev/tty.*
或 ls/dev/cu.*
以列出端口并将它们硬编码到 pyserial课.
At the moment I am entering ls /dev/tty.*
or ls /dev/cu.*
into the terminal to list ports and hardcoding them into the pyserial class.
推荐答案
您可以执行以下操作:
import glob
def scan():
return glob.glob('/dev/tty*') + glob.glob('/dev/cu*')
for port in scan():
# do something to check this port is open.
然后,查看 pyserial ,了解一些有用的实用程序功能,以检查端口是否打开,等等.
Then, take a look at pyserial for some good utility functions to check if a port is open and so forth.
这篇关于MacPython:以编程方式查找所有串行端口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!