Power & Source of Big Ideas

Thanks for the reply, auto3000. I was away with my family over christmas so it took me awhile to try that out. Unfortunately I've run into some problems with your port. As per your installation instruction I've first tried to install the RPi.GPIO package via apt-get, but that package isn't contained...
Hello :), I'm trying to get the GPIO event detection working using a NanoPi NEO board and python. I've tried something similiar to this: import RPi.GPIO as GPIO pin = 7 GPIO.setmode(GPIO.BOARD) GPIO.setup(pin, GPIO.IN, pull_up_down=GPIO.PUD_UP) GPIO.wait_for_edge(pin, GPIO.FALLING) print('change det...