gpt4 book ai didi

linux - 如何在 python 中轮询 GPIO 中断?

转载 作者:太空宇宙 更新时间:2023-11-04 13:04:21 26 4
gpt4 key购买 nike

我需要使用 python 2.7 轮询 GPIO 引脚上的中断,我想知道是否有任何 native 函数或库可以帮助我做到这一点?
在搜索此类内容时,我发现了很多关于 Raspberry Pi 的信息,但这不是我需要的。

这可行吗?

最佳答案

如果您发布您已经尝试过的内容,我们会提供帮助,那就太好了。

我是这样做的

while 1:
events = po.poll(30000)
if not events:
print ('TIMEOUT!')
for fd, flag in events:
# check what's been done with os.lseek and os.read

此代码基于How do I wait for interrupts in different languages?问题。

整个代码是在 Raspberry PI 上作为嵌入式系统的简单游戏完成的,并且可用 here

关于linux - 如何在 python 中轮询 GPIO 中断?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33097852/

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