Hi, I try to follow the guide that using python to generate 3.3v output from Jatson nano GPIO pin, but I found out that the GPIO is not functioning. I used python,
code is below:
import Jetson.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setup(12,GPIO.OUT)
GPIO.output(12,GPIO.HIGH)
There are not voltage output from pin 12 (BCM).
What should I do ?