Solution: Don't use wait_for_edge
Instead
def wait_for_it():
level = GPIO.input(23)
while (GPIO.input(23)) :
time.sleep(.01)
Instead
def wait_for_it():
level = GPIO.input(23)
while (GPIO.input(23)) :
time.sleep(.01)
Statistics: Posted by Alan_Winslow — Thu Mar 14, 2024 9:43 pm