Raspberry Pi - GPIO Basics with Python
What will be the output of this code snippet?
Assuming pin 7 is set as input by default.
import RPi.GPIO as GPIO GPIO.setmode(GPIO.BOARD) print(GPIO.gpio_function(7))
Assuming pin 7 is set as input by default.
