Orange Pi Zero 3W overview and first start
I’d like to talk about the new “little orange” — the Orange Pi Zero 3W, which was released this year.
Specifications:
SoC: Allwinner A733
CPU: 2 x Arm Cortex-A76 cores (up to 2.0 GHz) + 6 x Arm Cortex-A55 cores
GPU: Imagination PowerVR BXM-4-64 MC1 (Supports OpenGL ES 3.2, Vulkan 1.3, OpenCL 3.0)
Neural Processing Unit: Up to 3 TOPS @INT8; supports mixed-precision computation (INT8, INT16, FP16, and BF16)
Coprocessor: Xuantie E902 RISC-V Real-Time Coprocessor (up to 200 MHz)
RAM: 4/8/12/16 GB LPDDR5
Storage: Onboard footprints for eMMC and UFS are available, but there are currently no boards for sale with them populated. Of course, there is a TF card slot
Wireless Connectivity: Wi-Fi 6 and Bluetooth 5.4 (BLE) with an external antenna
Video Output: Mini HDMI 2.0, 4-lane MIPI-DSI, Type-C (Supports DisplayPort Alt Mode, up to 4K@60fps)
Video Input: Two 4-lane MIPI CSI interfaces
PCIe: 1 x PCIe 3.0 1-Lane FPC connector
GPIO: 40-pin expansion header (supporting GPIO, UART, I2C, SPI, PWM)
Power Supply: 5V / 3A via USB Type-C
Bottom view::
The kit included a heatsink with a small blower-style cooling fan:
Applying thermal pads to the PMIC, CPU, and LPDDR chips.
It’s best to unfold the antenna so its wire doesn’t get pinched under the heatsink. Install the heatsink and tighten the screws diagonally.
Even without applying much force, the tightened screws caused the PCB to flex. You shouldn’t leave it like this — it’s better to loosen them by a few turns until the board sits flat.
Connecting the fan header:
Now it’s time to move on to the software. It’s best to start with the official image (I haven’t seen any other options available yet).
Official images can be downloaded at the following link: Orange Pi Zero 3W — Service and Support
As of May 2026, only Ubuntu and Debian builds are available. For my initial tests, I chose Ubuntu.
Caution! Be extremely careful when selecting the target disk. An error in
the device name (/dev/sdX or /dev/rdiskN) will result in complete data
loss on your primary drive. Double-check the destination path twice!
First, let’s find the identifier for our MicroSD card:
## MacOS
diskutil list
## Linux
lsblk
We will flash the image directly from the archive to avoid wasting time extracting a separate file:
## macos
## If the system has already mounted the card, you need to unmount it:
diskutil unmountDisk /dev/diskXXX
7z x -so rangepizero3w_1.0.0_ubuntu_jammy_desktop_xfce_linux6.6.98.img.7z | sudo dd \
of=/dev/rdiskX \
bs=4M \
status=progress
## linux
7z x -so rangepizero3w_1.0.0_ubuntu_jammy_desktop_xfce_linux6.6.98.img.7z | sudo dd \
of=/dev/sdX \
bs=4M \
status=progress \
conv=fsync
The first boot takes several minutes. The system opens the desktop immediately. If a user password is required, try “orangepi”.
I ran a few subjective tests:
YouTube: in Firefox at resolutions above 480p, frame drops are noticeable, especially in full-screen mode.
VLC: 1080p video playback is also accompanied by a significant drop in frame rate.
Geekbench 6: The result was 639 points in Single-Core and 1559 points in Multi-Core. Results
After several minutes of stress testing, the system reached 52°C.
I checked the power consumption at idle and during CPU stress tests — it is noticeably higher compared to the previous Orange Pi Zero 3 (which consumed 820 mW at idle and 1.8 W under stress test). Orange Pi Zero 3: Power Usage Benchmarks and Efficiency Tuning
Overall impressions: The interface runs quite smoothly. Compared to the previous Orange Pi Zero 3 or 2W, there is no noticeable desktop lag—applications open and respond quickly. Video playback still needs to be figured out: it requires additional configuration to enable hardware acceleration for decoding and video output.











Comments
Post a Comment