When setting up a interrupt on a input with
GPIO.add_event_detect(13, GPIO.FALLING, callback=Interrupt1, bouncetime = 200)
the callback function never gets called.
When polling the input with GPIO.input(13) I can indeed verify that the input changes.
When setting up a interrupt on a input with
GPIO.add_event_detect(13, GPIO.FALLING, callback=Interrupt1, bouncetime = 200)the callback function never gets called.
When polling the input with
GPIO.input(13)I can indeed verify that the input changes.