Raspberry Pi - LED and Button Projects
Find the mistake in this code that causes the LED not to turn on:
import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setup(21, GPIO.OUT) GPIO.output(21, 1)
