Raspberry Pi - GPIO Basics with Python
Find the mistake in this code:
import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setup(25, GPIO.IN) GPIO.output(25, GPIO.HIGH)
