@沙雕男 建议参考这篇教程中的「开关防抖」一节
https://shumeipai.nxez.com/2016/09/28/rpi-gpio-module-inputs.html# 在通道上添加上升临界值检测,忽略由于开关抖动引起的小于 200ms 的边缘操作
GPIO.add_event_detect(channel, GPIO.RISING, callback=my_callback, bouncetime=200)
或者
GPIO.add_event_callback(channel, my_callback, bouncetime=200)
remove_event_detect()
由于某种原因,您不希望您的程序检测边缘事件,您可以将它停止:
GPIO.remove_event_detect(channel)