Hello, I was wondering if anyone knows a good resource to start my first led blink example with the jetson orin. Currently, I am using this code but it does not seem to be working with the defined pins. I am also using Jetpack 6. Any guidance would be greatly appreciated!
# GPIO library
importJetson.GPIO as GPIO
# Handles time
importtime
# Pin Definition
led_pin =7
# Set up the GPIO channel
GPIO.setmode(GPIO.BOARD)
GPIO.setup(led_pin, GPIO.OUT, initial=GPIO.HIGH)
print("Press CTRL+C when you want the LED to stop blinking")