RPi.GPIO中wait_for_edge和event_detected有什么区别?

发布于 2022-09-04 19:40:27 字数 91 浏览 23 评论 0

比如说我要监听一个下降沿触发的中断请求,并且执行一段函数,究竟该怎么写代码,网上各种文档都是互相抄袭国外的机翻文档,完全无法正常阅读,请各位高手帮忙解答一下,谢谢!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

生生不灭 2022-09-11 19:40:27

The wait_for_edge() function is designed to block execution of your program until an edge is detected.

翻译过来就是wait_for_edge会阻塞程序,直到有一个边沿事件被触发

The event_detected() function is designed to be used in a loop with other things, but unlike polling it is not going to miss the change in state of an input while the CPU is busy working on other things.

event_detected就是事件触发

具体到你这里,要中断请求,那只能是用事件方式触发了。

那第一步是让接口电阻上拉

GPIO.setup(channel, GPIO.IN, pull_up_down=GPIO.PUD_UP)

然后

GPIO.add_event_detect(channel, GPIO.FALLING)
GPIO.add_event_callback(channel, callback_func)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文