Raspberry Pi - Platform
What will be the output of this Python code on Raspberry Pi?
import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setup(17, GPIO.OUT) GPIO.output(17, True) print(GPIO.input(17))
