unPhone 9
by unPhone
An advanced version of the unPhone series, featuring ESP32-S3 and enhanced communication capabilities.

On this page
Pinout
25 pins| Pin | GPIO | Labels | Status | Capabilities | Notes |
|---|---|---|---|---|---|
| 1 | 1 | A0PWM | safe | adc | |
| 2 | 2 | A1T1PWM | safe | adc · touch | |
| 3 | 3 | SDAPWM | strapping | i2c | |
| 4 | 4 | SCLPWM | safe | i2c | |
| 5 | 5 | A4T4PWM | safe | adc · touch | |
| 6 | 6 | A5T5PWM | safe | adc · touch | |
| 7 | 7 | A7T7PWM | safe | adc · touch | |
| 8 | 8 | A2T2PWM | safe | adc · touch | |
| 9 | 9 | A3T3PWM | strapping | adc · touch | |
| 10 | 12 | A11T11PWM | strapping | adc · touch | |
| 11 | 13 | LED_BUILTINSSA12T12PWM | strapping | adc · touch · spi | |
| 12 | 14 | A6A13T6T13PWM | strapping | adc · touch | |
| 13 | 15 | A8A14T8T14PWM | safe | adc · touch | |
| 14 | 16 | A15PWM | safe | adc | |
| 15 | 17 | A16PWM | safe | adc | |
| 16 | 18 | A17PWM | safe | adc | |
| 17 | 19 | A18PWM | uart | adc | |
| 18 | 20 | A19PWM | uart | adc | |
| 19 | 27 | A10T10PWM | safe | adc · touch | |
| 20 | 33 | A9T9PWM | strapping | adc · touch | |
| 21 | 39 | SCKPWM | strapping | spi | |
| 22 | 40 | MOSIPWM | strapping | spi | |
| 23 | 41 | MISOPWM | strapping | spi | |
| 24 | 43 | TXPWM | strapping | uart | |
| 25 | 44 | RXPWM | strapping | uart |
Start with these
12 pins with no boot or system involvementFreely assignable - no strapping, flash, USB or JTAG duties. Ideal first picks for buttons, sensors and LEDs.
Fine - with a little care
sampled at boot or shared with debug/serial| Pin | Label | What to know | Role |
|---|---|---|---|
| SDA | GPIO3 | Sampled at reset to select JTAG interface (USB Serial/JTAG controller vs. external pins). Improper use can disable external JTAG or alter debug interface. | Strapping |
| SCK | MTCK (GPIO39) | Default JTAG debugging TCK pin. If JTAG is needed, this pin must be free; it may also be used internally for PSRAM chip select on certain modules, so avoid repurposing it. | Other |
| MOSI | MTDO (GPIO40) | Default JTAG TDO output for debugging. Using it as GPIO will interfere with JTAG debugging functionality. | Other |
| MISO | MTDI (GPIO41) | Default JTAG TDI input for debugging. Should be reserved for JTAG or left unused if JTAG is to remain available. | Other |
| TX | U0TXD (GPIO43) | Used for bootloader output and UART console logs. If repurposed, you will lose the default serial output (and programming via UART0). | Other |
| RX | U0RXD (GPIO44) | Used for bootloader input (download mode via serial). If repurposed, you cannot use the default UART0 download mode for programming the chip. | Other |
Only if you know the tricks
wired to flash or USB - expect a fight| Pin | Label | What to know | Role |
|---|---|---|---|
| A3 | FSPIHD | Connected to external flash (data/hold signal) on most modules. Not recommended for use as GPIO, since it must remain dedicated to flash communication. | Flash |
| A11 | FSPICLK | Drives the flash (and PSRAM) clock. This critical signal must be reserved for memory and not used as general GPIO. | Flash |
| LED_BUILTIN | FSPIQ | Used as a data line for flash/PSRAM transfers. Not available for other uses when flash/PSRAM is connected. | Flash |
| A6 | FSPIWP | Connected to external flash (data/write-protect signal). Not recommended as GPIO because it’s reserved for flash operations. | Flash |
| A18 | USB_D- | By default connected to the on-chip USB Serial/JTAG controller. Using it as general GPIO without reconfiguring IO MUX will interfere with USB functionality. | USB |
| A19 | USB_D+ | By default connected to the on-chip USB Serial/JTAG controller. Using it as general GPIO without reconfiguring IO MUX will interfere with USB functionality. | USB |
| A9 | FSPIHD | On chips/modules with integrated flash, this IO is wired to the flash hold pin internally. It cannot be reassigned to GPIO without breaking flash access. | Flash |
Pinout notes The unPhone 9 pinout brings out 25 GPIO pins - every one of them usable in your project. For peripherals, I²C is mapped to SDA on GPIO3 and SCL on GPIO4; the…
The unPhone 9 pinout brings out 25 GPIO pins - every one of them usable in your project.
For peripherals, I²C is mapped to SDA on GPIO3 and SCL on GPIO4; the SPI bus (MOSI, MISO, SCK, SS) is broken out in full; TX/RX on GPIO43 and GPIO44 cover serial logging and flashing.
On the analog side there are 18 ADC-capable pins for sensors and battery monitoring and 12 capacitive-touch inputs.
If you want zero surprises, A0, A1, SCL, A4 and 8 more are free of any such role - the safest first picks. 6 of the exposed pins carry boot-time or system duties on the ESP32-S3 (SDA, SCK, MOSI and 3 more).
Getting started
flash your first firmware in ~2 minutesBoard: ESP32S3 Dev Module USB CDC On Boot: Enabled Flash Size: 8MB (64Mb) Flash Mode: DIO PSRAM: QSPI PSRAM Partition Scheme: 8M with spiffs (3MB APP / 1.5MB SPIFFS) Upload Speed: 921600
// blink the onboard LED
void setup() {
pinMode(1, OUTPUT);
}
void loop() {
digitalWrite(1, HIGH); delay(500);
digitalWrite(1, LOW); delay(500);
}[env:unphone9]
platform = espressif32
board = esp32-s3-devkitc-1
framework = arduino
monitor_speed = 115200
upload_speed = 921600
board_build.arduino.memory_type = qio_qspi
build_flags = -DBOARD_HAS_PSRAMesp32-s3-devkitc-1 — or type it after board =.esp32:
board: esp32-s3-devkitc-1
variant: unphone9
framework:
type: esp-idf
psram:
mode: quad
speed: 80MHz
# blink - GPIO1
output:
- platform: gpio
pin: 1
id: led_out
light:
- platform: binary
name: "LED"
output: led_outesp32-s3-devkitc-1 (same ids as PlatformIO).esptool.py --chip esp32s3 --port /dev/ttyACM0 \
--baud 921600 write_flash 0x0 firmware.bin--port = your /dev/tty* (macOS/Linux) or COMx (Windows).Specifications
ESP32-S3About this board
At its core is the ESP32-S3 - a dual-core Xtensa with vector extensions suited to AI workloads.
Expect to pay about $148.00 - above the ~$30 typical for ESP32-S3 boards.
Onboard you'll find 8MB (QSPI) PSRAM, a TFT 3.5" 320x480 display with touch, a microSD slot, LoRa (RFM95W), an LSM6DS3TR-C IMU, an IR transceiver, battery charging (BQ24295) and Button 1/Button 2/Button 3/Reset buttons.
It flashes over native USB - no serial-converter driver needed, which isn't a given among ESP32-S3 boards.
- TCA9555 16-bit I²C GPIO expander
- Vibration motor
- 3 discrete indicator LEDs (red / green / blue To-Do LEDs)
- Hardware power on/off switch
- Bundled backplane with two FeatherWing sockets & prototyping area
Where to buy
prices are typical street prices
Resources
Similar boards



