Raspberry Pi - GPIO Basics with Python
Identify the error in this code snippet:
import RPi.GPIO as GPIO GPIO.setmode(GPIO.BOARD) GPIO.setup(11, "OUT") GPIO.output(11, True) GPIO.cleanup()
