Raspberry Pi - LED and Button Projects
What will be the output on the LED if the following Python code runs on a Raspberry Pi with an LED connected to GPIO pin 18?
import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setup(18, GPIO.OUT) GPIO.output(18, GPIO.LOW)
