Raspberry Pi - GPIO Basics with Python
What will be the output of this code?
Assuming pin 23 is not connected to anything.
import RPi.GPIO as GPIO GPIO.setmode(GPIO.BCM) GPIO.setup(23, GPIO.IN) print(GPIO.input(23))
Assuming pin 23 is not connected to anything.
