

The Seeed Studio A603 Carrier Board is a versatile and compact platform designed specifically for the Nvidia Jetson Nano. It provides essential interfaces and connectivity options, making it an ideal choice for development, prototyping, and deployment of AI and machine learning applications. With support for GPIO, USB, HDMI, and power management, the A603 carrier board simplifies the integration of peripherals and accelerates project development.








| Specification | Details |
|---|---|
| Compatible Module | Nvidia Jetson Nano |
| Power Input | 5V DC (via USB-C or GPIO header) |
| USB Ports | 4x USB 3.0 Type-A |
| HDMI Output | 1x HDMI 2.0 |
| GPIO Header | 40-pin GPIO (Raspberry Pi-compatible layout) |
| Ethernet | 1x Gigabit Ethernet port |
| Camera Interface | 1x MIPI CSI-2 |
| Storage | MicroSD card slot |
| Dimensions | 100mm x 80mm |
The A603 carrier board features a 40-pin GPIO header compatible with the Raspberry Pi layout. Below is the pinout description:
| Pin Number | Pin Name | Functionality | Voltage Level |
|---|---|---|---|
| 1 | 3.3V | Power Output | 3.3V |
| 2 | 5V | Power Output | 5V |
| 3 | GPIO2 (SDA) | I2C Data | 3.3V |
| 4 | 5V | Power Output | 5V |
| 5 | GPIO3 (SCL) | I2C Clock | 3.3V |
| 6 | GND | Ground | 0V |
| 7 | GPIO4 | General Purpose I/O | 3.3V |
| 8 | GPIO14 (TXD) | UART Transmit | 3.3V |
| 9 | GND | Ground | 0V |
| 10 | GPIO15 (RXD) | UART Receive | 3.3V |
| ... | ... | ... | ... |
For the full GPIO pinout, refer to the official documentation provided by Seeed Studio.
Powering the Board:
Connecting Peripherals:
Networking:
Camera Integration:
Booting the Jetson Nano:
The A603 carrier board can interface with an Arduino UNO via the GPIO header. Below is an example of controlling an LED connected to the Arduino using the Jetson Nano:
import Jetson.GPIO as GPIO
import time
output_pin = 7 # GPIO4 corresponds to pin 7 on the header
GPIO.setmode(GPIO.BOARD) # Use physical pin numbering GPIO.setup(output_pin, GPIO.OUT)
try: while True: GPIO.output(output_pin, GPIO.HIGH) # Turn on LED time.sleep(1) # Wait 1 second GPIO.output(output_pin, GPIO.LOW) # Turn off LED time.sleep(1) # Wait 1 second except KeyboardInterrupt: print("Exiting program")
GPIO.cleanup()
Board Does Not Power On:
No Display Output:
Peripherals Not Detected:
GPIO Pins Not Working:
Q: Can I use a 12V power supply with the A603 carrier board?
A: No, the A603 carrier board requires a 5V DC power supply. Using a higher voltage may damage the board.
Q: Is the GPIO header compatible with Raspberry Pi HATs?
A: Yes, the 40-pin GPIO header follows the Raspberry Pi-compatible layout, allowing the use of many Raspberry Pi HATs.
Q: Can I connect multiple cameras to the board?
A: The A603 carrier board supports a single MIPI CSI-2 camera interface. For multiple cameras, additional hardware or a different carrier board may be required.
Q: Does the board support Wi-Fi?
A: The A603 carrier board does not have built-in Wi-Fi. However, you can use a USB Wi-Fi adapter for wireless connectivity.