Espressif ESP32-S3-USB-Bridge

USB-to-serial debug board with ESP32-S3 - ideal for interfacing with and debugging ESP-based modules via USB.

USB-C + USB-A Native USB
Espressif ESP32-S3-USB-Bridge board
31.5 × 23.3 mm
ESP32-S3
MCU
240MHz
clock
4MB
flash
512KB
SRAM
12· 1 ADC
GPIO
BLE 5.0+ WiFi
radio
On this page

Pinout

12 pins
View:
Espressif ESP32-S3-USB-Bridge pinout diagram
PinGPIOLabelsStatusCapabilitiesNotes
10A0T0PWMstrappingadc · touch
22TDOPWMsafe-
33TDIPWMstrapping-
44TCKPWMsafe-
55TMSPWMsafe-
68Resetsafe-
79Bootstrapping-
819USB_D-uart-
920USB_D+uart-
1040RXstrappinguart
1141TXstrappinguart
1242WS2812strapping-

Start with these

4 pins with no boot or system involvement
TDOPWMTCKPWMTMSPWMReset

Freely 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
PinLabelWhat to knowRole
A0GPIO0Must be pulled high (default) or low (to enter UART download mode) at reset. Using it for other functions can interfere with boot mode configuration.Strapping
TDIGPIO3Sampled at reset to select JTAG interface (USB Serial/JTAG controller vs. external pins). Improper use can disable external JTAG or alter debug interface.Strapping
BootFSPIHDIO MUX pin of the general-purpose SPI2 (FSPI) bus, not of the in-package flash - that sits on GPIO26-32. The datasheet lists it as a priority-2 pin ("can be freely used without restrictions"), so it is only taken if your board wires flash, an SD card or a display to FSPI.Other
RXMTDO (GPIO40)Default JTAG TDO output for debugging. Using it as GPIO will interfere with JTAG debugging functionality.Other
TXMTDI (GPIO41)Default JTAG TDI input for debugging. Should be reserved for JTAG or left unused if JTAG is to remain available.Other
WS2812MTMS (GPIO42)Default JTAG TMS signal for debugging. Using this pin for other purposes will disable the JTAG interface (unless JTAG is rerouted to USB).Other

Only if you know the tricks

wired to flash or USB - expect a fight
PinLabelWhat to knowRole
USB_D-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
USB_D+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
These are recommendations, not hard rules - with the right pull-ups, timing and boot-state awareness most pins can be made to work. When in doubt, start green.
Pinout notes All 12 pins on the Espressif ESP32-S3-USB-Bridge are usable GPIO. Peripheral wiring is straightforward: TX/RX on GPIO41 and GPIO40 cover serial logging and…

All 12 pins on the Espressif ESP32-S3-USB-Bridge are usable GPIO.

Peripheral wiring is straightforward: TX/RX on GPIO41 and GPIO40 cover serial logging and flashing.

Beyond plain digital I/O you get 1 ADC-capable pin for sensors and battery monitoring and 1 capacitive-touch inputs.

6 of the exposed pins carry boot-time or system duties on the ESP32-S3 (A0, TDI, Boot and 3 more) - check the guidance above before wiring anything to them. TDO, TCK, TMS and Reset are free of any such role - the safest first picks.


The ESP32-S3-USB-Bridge features a 12-pin expansion connector providing access to key GPIOs and communication interfaces. Key pins include power supply (3V3 and GND), JTAG pins (TCK, TMS, TDI, TDO), UART pins (TX, RX), and control pins (Boot, Reset). This configuration allows for seamless integration with target chips and peripherals.

Getting started

flash your first firmware in ~2 minutes
Tool:
1
Connect over USB
Native USB - shows up as a port right away, no driver needed. Not detected? Hold BOOT while plugging in.
2
Match & flash
Set the Tools options shown, then click Upload.
3
Verify it runs
GPIO2 toggles - wire an LED and resistor to it, or change the pin to your board's own LED.
Set these in Tools · leave everything else at default
Arduino IDE 2.x - Tools Copy
Board: "ESP32S3 Dev Module"
USB CDC On Boot: "Enabled"
Flash Size: "4MB (32Mb)"
Flash Mode: "DIO"
PSRAM: "QSPI PSRAM"
Partition Scheme: "Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)" (default)
Upload Speed: "921600"
▸ every other Tools option - leave at default
Board: ESP32S3 Dev Module
USB CDC On Boot: Enabled
Flash Size: 4MB (32Mb)
Flash Mode: DIO
PSRAM: QSPI PSRAM
Partition Scheme: Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS)
Upload Speed: 921600
Find it: Tools ▸ Board ▸ ESP32 Arduino ▸ ESP32S3 Dev Module
blink.ino Copy
// toggle GPIO2 - wire an LED and resistor to it
void setup() {
  pinMode(2, OUTPUT);
}
void loop() {
  digitalWrite(2, HIGH); delay(500);
  digitalWrite(2, LOW);  delay(500);
}
board to selectesp32-s3-devkitc-1⧉ copy
platformio.ini Copy
[env:esp32-s3-usb-bridge]
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_PSRAM
Find it: PlatformIO Home ▸ Boards, search esp32-s3-devkitc-1 - or type it after board =.
board to selectesp32-s3-devkitc-1⧉ copy
device.yaml Copy
esp32:
  board: esp32-s3-devkitc-1
  variant: esp32s3
  framework:
    type: esp-idf
psram:
  mode: quad
  speed: 80MHz

# blink - GPIO2
output:
  - platform: gpio
    pin: 2
    id: led_out
light:
  - platform: binary
    name: "LED"
    output: led_out
Find it: search ESPHome's board list for esp32-s3-devkitc-1 (same ids as PlatformIO).
esptool doesn't pick board settings - a prebuilt .bin already has them baked in. This is just the raw flash command.
terminal Copy
esptool.py --chip esp32s3 --port /dev/ttyACM0 \
  --baud 921600 write_flash 0x0 firmware.bin
--port = your /dev/tty* (macOS/Linux) or COMx (Windows).
Build details: sketch space 2097152 B · data 327680 B · DIO

Specifications

ESP32-S3 · 31.5 × 23.3 mm · vs other ESP32 chips →
Compute
MCU
ESP32-S3
Clock
240 MHz
SRAM · Flash
512 KB · 4MB · 2MB (QSPI) PSRAM
Radio
Wi-Fi
802.11 b/g/n
Bluetooth
5.0 LE
Antenna
PCB
I/O
GPIO · ADC
12 · 1
UART · I²C · SPI
3 · 2 · 2
PWM
8 channels
Power
USB
USB-C (native) · USB-A
Serial
Native (CDC)
Boot address
0x0
Flashing
Upload · OTA
esptool_py · esp_ota
Flash · Boot mode
DIO · DIO
Sketch · Data
2 MB · 320 KB
23.3 mm31.5 mm
31.5 × 23.3 mm
The Espressif ESP32-S3-USB-Bridge uses esptool_py for firmware uploads, esp_ota for over-the-air (OTA) updates. Flash mode is DIO with DIO boot mode. The maximum sketch size is 2 MB with 320 KB available for data.

About this board

Inside sits the ESP32-S3 - a dual-core Xtensa with vector extensions suited to AI workloads.

At $9.99 it's cheaper than most ESP32-S3 boards, which usually run around $29.

Only 12 GPIO are broken out, where most ESP32-S3 boards manage about 22 - worth checking the pinout covers what you need.

Around the module: 2MB (QSPI) PSRAM, an addressable RGB LED (GPIO42) and Boot/Reset buttons.

It flashes over native USB - no serial-converter driver needed, which isn't a given among ESP32-S3 boards.


The ESP32-S3-USB-Bridge is a compact development board based on the ESP32-S3-MINI-1 module. It serves as an alternative to traditional USB-to-UART chips by establishing a bridge between a computer and existing microcontrollers. The board supports multiple functions, including USB-to-UART bridging, JTAG debugging, and acts as a USB composite device supporting various functionalities.

Where to buy

prices are typical street prices
Espressif ESP32-S3-USB-Bridge
Espressif ESP32-S3-USB-Bridge
$9.99per unit, typical

Resources

Similar boards