

The Orange Pi Zero 3, manufactured by Orange Pi, is a compact and versatile single-board computer (SBC) designed for a wide range of applications. It is particularly well-suited for projects such as media centers, robotics, IoT devices, and lightweight server applications. With its powerful processing capabilities, extensive connectivity options, and support for multiple operating systems, the Orange Pi Zero 3 is an excellent choice for both hobbyists and professionals.








The Orange Pi Zero 3 is packed with features that make it a powerful and flexible SBC. Below are its key technical specifications:
The Orange Pi Zero 3 features a 26-pin GPIO header for interfacing with external devices. Below is the pinout and description:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | 3.3V | Power supply (3.3V) |
| 2 | 5V | Power supply (5V) |
| 3 | GPIO2 | General-purpose I/O, I2C SDA |
| 4 | 5V | Power supply (5V) |
| 5 | GPIO3 | General-purpose I/O, I2C SCL |
| 6 | GND | Ground |
| 7 | GPIO4 | General-purpose I/O |
| 8 | GPIO14 | UART TX |
| 9 | GND | Ground |
| 10 | GPIO15 | UART RX |
| 11 | GPIO17 | General-purpose I/O |
| 12 | GPIO18 | General-purpose I/O |
| 13 | GPIO27 | General-purpose I/O |
| 14 | GND | Ground |
| 15 | GPIO22 | General-purpose I/O |
| 16 | GPIO23 | General-purpose I/O |
| 17 | 3.3V | Power supply (3.3V) |
| 18 | GPIO24 | General-purpose I/O |
| 19 | GPIO10 | SPI MOSI |
| 20 | GND | Ground |
| 21 | GPIO9 | SPI MISO |
| 22 | GPIO25 | General-purpose I/O |
| 23 | GPIO11 | SPI CLK |
| 24 | GPIO8 | SPI CS0 |
| 25 | GND | Ground |
| 26 | GPIO7 | SPI CS1 |
The following example demonstrates how to blink an LED connected to GPIO17 using Python.
import RPi.GPIO as GPIO import time
GPIO.setmode(GPIO.BCM)
LED_PIN = 17
GPIO.setup(LED_PIN, GPIO.OUT)
try: while True: GPIO.output(LED_PIN, GPIO.HIGH) # Turn the LED on time.sleep(1) # Wait for 1 second GPIO.output(LED_PIN, GPIO.LOW) # Turn the LED off time.sleep(1) # Wait for 1 second except KeyboardInterrupt: # Clean up GPIO settings on exit GPIO.cleanup()
The board does not power on:
No display output:
Wi-Fi connectivity issues:
GPIO pins not working:
Can I power the board via GPIO pins?
What is the maximum supported microSD card size?
Does the board support 4K video output?
Can I use the board for AI/ML applications?
This concludes the documentation for the Orange Pi Zero 3. For further assistance, refer to the official Orange Pi website or community forums.