ESP32S3 Walter Module

Compact ESP32-S3 module with rich I/O and connectivity - great for advanced IoT, edge AI, and embedded integration.

USB-C Native USB
ESP32S3 Walter Module board
55 × 24.8 mm
ESP32-S3
MCU
240MHz
clock
16MB
flash
512KB
SRAM
22· Two 12-bit, 20 Channels ADC
GPIO
BLE 5.0+ WiFi
radio
On this page

Pinout

28 pins · 2.54 mm pitch
View:
ESP32S3 Walter Module pinout diagram
PinGPIOLabelsStatusCapabilitiesNotes
1-RESETENsafe-ESP32 reset with 10k pullup
2-IO44/RX0RXD0uartuartESP32 UART0 Receive
3-IO43/TX0TXD0uartuartESP32 UART0 Transmit
40DFU/3V3 ENIO0strapping-DFU when low on boot and 3V3 output enable
512IO12strapping-General purpose I/O
611IO11strapping-General purpose I/O
713IO13strapping-General purpose I/O
838IO38strapping-General purpose I/O
939IO39strapping-General purpose I/O
1040IO40strapping-General purpose I/O
1141IO41strapping-General purpose I/O
1242IO42strapping-General purpose I/O
132IO2safe-General purpose I/O
141IO1safe-General purpose I/O
154IO4safe-General purpose I/O
165IO5safe-General purpose I/O
176IO6safe-General purpose I/O
187IO7safe-General purpose I/O
1915IO15safe-General purpose I/O
2016IO16safe-General purpose I/O
2117IO17safe-General purpose I/O
2218IO18safe-General purpose I/O
238IO8safe-General purpose I/O
249IO9strapping-General purpose I/O
2510IO10strapping-General purpose I/O
26-3V3 OUTN/Asafe-Switchable 3.3VDC output
27-GNDground-GND connection
28-VINN/Apower-DC Power input port

Start with these

11 pins with no boot or system involvement
IO2IO1IO4IO5IO6IO7IO15IO16IO17IO18IO8

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
DFU/3V3 ENGPIO0Must 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
IO39MTCK (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
IO40MTDO (GPIO40)Default JTAG TDO output for debugging. Using it as GPIO will interfere with JTAG debugging functionality.Other
IO41MTDI (GPIO41)Default JTAG TDI input for debugging. Should be reserved for JTAG or left unused if JTAG is to remain available.Other
IO42MTMS (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
IO12FSPICLKDrives the flash (and PSRAM) clock. This critical signal must be reserved for memory and not used as general GPIO.Flash
IO11FSPIDUsed as a data line for flash (and in-package PSRAM). It should not be used as GPIO when the flash/PSRAM is in use.Flash
IO13FSPIQUsed as a data line for flash/PSRAM transfers. Not available for other uses when flash/PSRAM is connected.Flash
IO38FSPIWPOn flash-equipped chips, this pin is tied to the flash’s WP# (or D3) line. It should be avoided for other use, as it’s needed for flash operations.Flash
IO9FSPIHDConnected to external flash (data/hold signal) on most modules. Not recommended for use as GPIO, since it must remain dedicated to flash communication.Flash
IO10FSPICS0Used to select the external flash chip. It is required for flash access and cannot be repurposed without losing flash connectivityFlash
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 The ESP32S3 Walter Module breaks out 28 pins in total: 22 GPIO for your project, with GND and VIN handling power. 5 of the exposed pins carry boot-time or…

The ESP32S3 Walter Module breaks out 28 pins in total: 22 GPIO for your project, with GND and VIN handling power.

5 of the exposed pins carry boot-time or system duties on the ESP32-S3 (DFU/3V3 EN, IO39, IO40 and 2 more) - check the guidance above before wiring anything to them. IO2, IO1, IO4, IO5 and 7 more are free of any such role - the safest first picks.

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
The onboard LED on GPIO2 blinks - swap the pin if your board's LED differs.
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: "16MB (128Mb)"
Flash Mode: "DIO"
PSRAM: "QSPI PSRAM"
Partition Scheme: "16M Flash (3MB APP / 9.9MB FATFS)" (default)
Upload Speed: "921600"
▸ every other Tools option — leave at default
Board: ESP32S3 Dev Module
USB CDC On Boot: Enabled
Flash Size: 16MB (128Mb)
Flash Mode: DIO
PSRAM: QSPI PSRAM
Partition Scheme: 16M Flash (3MB APP / 9.9MB FATFS)
Upload Speed: 921600
Find it: Tools ▸ Board ▸ ESP32 Arduino ▸ ESP32S3 Dev Module
blink.ino Copy
// blink the onboard LED
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:esp32s3-walter]
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).

Specifications

ESP32-S3 · 55 × 24.8 mm
Compute
MCU
ESP32-S3
Clock
240 MHz
SRAM · Flash
512 KB · 16MB · 2MB (QSPI) PSRAM
Radio
Wi-Fi
802.11 b/g/n
Bluetooth
5.0 LE
Antenna
u.FL
I/O
GPIO · ADC
22 · Two 12-bit, 20 Channels
UART · I²C · SPI
3 · 2 · 4
PWM
8 channels
Power
USB
USB-C
Serial
Native (CDC)
Boot address
0x0
Flashing
Upload · OTA
esptool_py · esp_ota
Flash · Boot mode
DIO · QIO
Sketch · Data
- · -
24.8 mm55 mm
55 × 24.8 mm · pin pitch 2.54 mm
The ESP32S3 Walter Module uses esptool_py for firmware uploads, esp_ota for over-the-air (OTA) updates. Flash mode is DIO with QIO boot mode.

About this board

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

At $54.00 it's on the expensive side for an ESP32-S3 board - most land around $30.

Around the module: 2MB (QSPI) PSRAM, GPS, cellular connectivity (Sequans Monarch 2 GM02SP) and Reset buttons.

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


Walter is a small, highly integrated IoT module built to tackle complex connectivity and processing needs. At its core is the ESP32-S3, a versatile system-on-chip (SoC) featuring a dual-core processor with hardware acceleration for machine learning, cryptography, and signal processing. It includes a range of peripherals, such as UART, SPI, I²C, and CAN, alongside built-in Wi-Fi b/g/n and Bluetooth 5, providing robust local networking and communication options.

What sets Walter apart is its inclusion of the Sequans GM02SP modem, offering LTE-M and NB-IoT 5G connectivity for low-power, wide-area communication, ideal for IoT applications. The modem also integrates a GNSS receiver, adding precise positioning capabilities for tasks like asset tracking, navigation, or geolocation.

  • LTE: CAT M1/NB1/NB2 (GM02SP module)
  • GPS: GPS, GNSS Constellation support (GM02SP module)
  • Ultra low deep sleep current of 9.8µA
  • Certified for CE, FCC, IC, UKCA, New-Zealand and Australia
  • Nano-SIM card slot plus integrated eSIM
  • u.FL/IPEX connectors for the LTE and GNSS antennas, on-board PCB antenna for Wi-Fi/BLE
  • 22 debug/flash testpoints on the underside for the GM02SP and ESP32-S3

Where to buy

prices are typical street prices
ESP32S3 Walter Module
ESP32S3 Walter Module
$54.00per unit, typical

Resources

Similar boards