Raspberry Pi - GPIO Basics with Python
Given this code:
What is the printed output?
import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setup(17, GPIO.OUT) print(GPIO.gpio_function(17))
What is the printed output?
