Raspberry Pi - GPIO Basics with Python
Find the error in this code:
import RPi.GPIO as GPIO GPIO.setmode(GPIO.BOARD) GPIO.setup(10, GPIO.OUT) GPIO.output(10, 1) GPIO.cleanup()
