python - RPi.GPIO中wait_for_edge和event_detected有什么区别?
问题描述
比如说我要监听一个下降沿触发的中断请求,并且执行一段函数,究竟该怎么写代码,网上各种文档都是互相抄袭国外的机翻文档,完全无法正常阅读,请各位高手帮忙解答一下,谢谢!!!
问题解答
回答1: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)
相关文章:
1. javascript - h5上的手机号默认没有识别2. css - div display: inline-block; 置中?3. javascript - 如何保证数据库里的信息安全?4. python - 网站显示的图片与爬虫获取到的图片不同,应该如何确定问题?5. 极光推送 - Android app消息推送 百度 极光 个推 信鸽哪个好一些?6. javascript - ajax中的 textStatus 报错为 parsererror?7. javascript - 在html中写了个<video>视频,浏览器却是一片空白为什么呢?360浏览器?8. html5 - 如何让H5页面在手机浏览器里和微信全屏显示9. css3 - Firefox 字号相对IE、Chrome更大,如何在CSS中统一?10. vue.js - weex scroller搭配refresh在android平台上拉会触发refresh