Raspberry Pi - GPIO Basics with Python
Examine this code snippet:
What is the issue preventing proper GPIO cleanup?
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
try:
GPIO.setup(17, GPIO.OUT)
GPIO.output(17, true)
finally:
passWhat is the issue preventing proper GPIO cleanup?
