ESP32-S3 Super Mini image

ESP32-S3 Super Mini

Development Board

Code name: ESP32S3_DEV

ESP32-S3 Super Mini is a development board based on the ESP32S3 microcontroller using XTENSA architecture.

This board features a maximum CPU frequency of 240 MHz and 4MB flash memory.

About ESP32-S3 Super Mini

πŸš€ The ESP32-S3 SuperMini is a compact and powerful IoT development board based on the Espressif ESP32-S3 WiFi/Bluetooth dual-mode chip. Featuring a dual-core Xtensa LX7 processor running up to 240 MHz, it delivers impressive performance for your embedded projects. ⚑

πŸ“‘ For seamless wireless connectivity, it supports WiFi 802.11b/g/n and Bluetooth 5 (LE), making it ideal for IoT applications. Just like the ESP32-C3 SuperMini, this board includes a built-in PCB antenna, ensuring reliable signal strength without requiring an external antenna.

πŸ’Ύ Equipped with 512 KB SRAM and 4 MB flash memory, there's plenty of space for your firmware and applications. Its ultra-compact design (22.52 x 18 mm) makes it easy to embed into small projects



πŸ†š Wondering how the ESP32-S3 SuperMini compares to other SuperMini boards? Check out our full comparison guide to see how it stacks up against the C3, C3 Plus, C6, and H2.

Where to Buy ESP32-S3 Super Mini

Prices are subject to change. We earn from qualifying purchases as an Amazon Associate.

πŸ“‹ Technical Specifications

Complete technical specification details for ESP32-S3 Super Mini

πŸ”Œ USB

Type USB-C
Serial Chip Native

πŸ›°οΈ Connectivity

WiFi 802.11 b/g/n (2.4 GHz)
Bluetooth 5.0
BLE 5.0

🧠 Microcontroller

Model esp32s3
Clock Speed 240 MHz
Flash Size 4MB
Architecture xtensa

✨ Features & Pins

Digital IO 11
Analog Input 6
PWM 11
Interrupts 22
  • β€’ Ultra-small size: 22.52 x 18 mm
  • β€’ Ultra-low power consumption: deep sleep power consumption of about 43ΞΌA
  • β€’ Onboard WS2812 RGB LED for programmable multi-color status indication
  • β€’ Dual-core Xtensa LX7 CPU running at up to 240 MHz
  • β€’ 512 KB SRAM, 384 KB ROM built-in, with 4 MB Flash
  • β€’ Secure encryption features: AES-128/256, RSA, HMAC, digital signatures, and secure startup

ESP32-S3 Super Mini Board Dimensions

Physical measurements for ESP32-S3 Super Mini

ESP32-S3 Super Mini dimensions - height, width
Width 18mm
Length 23.50mm
Pin Gap 2.54mm

3D Printed Cases

Professional enclosures for ESP32-S3 Super Mini

We offer a variety of enclosures for the ESP32 S3 Super Mini, available in different colors and configurations – with or without header pins, and more! You can also choose between a hexagon-patterned lid for improved heat dispersion ❄️ or a solid lid for a sleek finish.

Features:

Custom designs
Precise fit
Growing catalog
Multiple variants

ESP32-S3 Super Mini Pinout Diagram

Complete pin reference for ESP32-S3 Super Mini

ESP32-S3 Super Mini pinout

The ESP32-S3 Super Mini pinout is designed for maximum functionality in a compact package. The board provides essential power pins like 5V, 3.3V, and GND for stable power delivery.

It includes communication interfaces such as RX and TX for UART, SDA and SCL for I2C, and MISO, MOSI, SCK, and SS for SPI, ensuring seamless integration with peripherals.

For analog input, the ESP32-S3 Super Mini offers ADC pins labeled A0 to A5, making it suitable for sensor data acquisition. Additionally, it features an onboard WS2812 RGB LED, which allows programmable multi-color status indications for enhanced user feedback.

βœ… Safe Pins to Use

These pins are safe for general GPIO usage without boot or system conflicts

IO1
IO2
IO4
IO5
IO6
IO7
IO8
IO15
IO16
IO17
IO18
IO21

πŸ’‘ Why Are These Pins Safe?

βœ“ No boot sequence involvement
βœ“ No flash/PSRAM connections
βœ“ No USB or JTAG conflicts
βœ“ Freely assignable without issues

⚠️ Pins to Avoid or Use with Caution

Reserved for critical functions. Misuse may cause boot failures, programming issues, or system conflicts.

πŸ”„ Strapping Pins

Boot behavior & flash voltage

πŸ› JTAG Debugging

Low-level debugging interface

πŸ”Œ USB Pins

USB Serial/JTAG communication

πŸ’Ύ Flash/SPI Pins

Memory & PSRAM connections

πŸ“‘ UART Serial

Debugging & firmware uploads

PINLabelWhy AvoidType
IO3GPIO3Sampled at reset to select JTAG interface (USB Serial/JTAG controller vs. external pins). Improper use can disable external JTAG or alter debug interface.πŸ› οΈ Strapping
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 connectivity⚑ 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
IO12FSPICLKDrives the flash (and PSRAM) clock. This critical signal must be reserved for memory and not used as general GPIO.⚑ Flash

On-Board LEDs

LED indicators on ESP32-S3 Super Mini

ESP32-S3 Super Mini on board LEDs

The ESP32-S3 Supermini features multiple onboard LEDs, each mapped to specific GPIO pins. Below is a breakdown of their functions, pin assignments, and how to use them in both Arduino and ESPHome.

πŸ”΄ Red LED – Power Indicator

  • GPIO: GPIO48
  • Control: digitalWrite()
  • ⚠️ Both the Red LED and WS2812 share GPIO48 and use different signal types (digital vs. timing-based), but due to the board’s fixed hardware design, they cannot be used independently - any signal sent to GPIO48 will affect both, potentially causing flickering or unexpected behavior.
Arduino Example:

void setup() {
  pinMode(48, OUTPUT);
}

void loop() {
  digitalWrite(48, HIGH);
  delay(1000);
  digitalWrite(48, LOW);
  delay(1000);
}
ESPHome Example:

output:
  - platform: gpio
    pin: 48
    id: red_led

light:
  - platform: binary
    name: "Red LED"
    output: red_led
ESPHome GPIO Output Documentation β†’

πŸ”΅ Blue LED – Battery Charge Indicator

  • GPIO: None
  • Control: None
  • Behavior:
    • ⚑ Charging β†’ LED on
    • βœ… Battery connected β†’ LED off
    • πŸ”‹ No battery β†’ LED blinks

🌈 WS2812 LED – Programmable RGB

  • GPIO: GPIO48
  • Control: FastLED, NeoPixel, etc.
  • ⚠️ Both the Red LED and WS2812 share GPIO48 and use different signal types (digital vs. timing-based), but due to the board’s fixed hardware design, they cannot be used independently - any signal sent to GPIO48 will affect both, potentially causing flickering or unexpected behavior.
Arduino (FastLED) Example:
#include <FastLED.h>

#define NUM_LEDS 1
#define DATA_PIN 48

CRGB leds[NUM_LEDS];

void setup() {
  FastLED.addLeds<NEOPIXEL, DATA_PIN>(leds, NUM_LEDS);
}

void loop() {
  leds[0] = CRGB::Red; FastLED.show(); delay(1000);
  leds[0] = CRGB::Green; FastLED.show(); delay(1000);
  leds[0] = CRGB::Blue; FastLED.show(); delay(1000);
}
ESPHome (NeoPixelBus) Example:
light:
  - platform: neopixelbus
    type: GRB
    pin: 48
    num_leds: 1
    name: "Onboard RGB LED"
ESPHome NeopixelBus Documentation β†’

Useful Links

Datasheets and resources for ESP32-S3 Super Mini

ESP32-S3 Super Mini Custom Pin Mapping

Pin configuration and GPIO mapping for ESP32-S3 Super Mini

11
Digital I/O Pins
22
Interrupt Pins
6
Analog Inputs
11
PWM Pins
PinFunctionESP PinI/O TypeDescription
15V5VPOWER INPUT5V power input for the board
2GNDGNDPOWER GROUNDGround connection
33V33.3VPOWER OUTPUT3.3V power output for peripherals
4TXTXTXTX
5RXRXRXRX
6IO1GP1BIDIRECTIONALGPIO, ADC Pin
7IO2GP2BIDIRECTIONALGPIO, ADC pin
8IO3GP3BIDIRECTIONALGPIO, ADC pin
9IO4GP4BIDIRECTIONALGPIO, ADC pin
10IO5GP5BIDIRECTIONALGPIO, ADC pin
11IO6GP6BIDIRECTIONALGPIO, ADC pin
12IO7GP7BIDIRECTIONALGPIO, ADC pin
13IO8GP8BIDIRECTIONALGPIO, ADC pin
14IO9GP9BIDIRECTIONALGPIO, ADC pin
15IO10GP10BIDIRECTIONALGPIO, ADC pin
16IO11GP11BIDIRECTIONALGPIO, ADC pin
17IO12GP12BIDIRECTIONALGPIO, ADC pin
18IO13GP13BIDIRECTIONALGPIO, ADC pin
19IO14GP14BIDIRECTIONALGPIO, ADC pin
20IO15GP15BIDIRECTIONALGPIO, ADC pin
21IO16GP16BIDIRECTIONALGPIO, ADC pin
22IO17GP17BIDIRECTIONALGPIO
23IO18GP18BIDIRECTIONALGPIO
24IO21GP21BIDIRECTIONALGPIO
25IO33GP33BIDIRECTIONALGPIO
26IO34GP34BIDIRECTIONALGPIO
27IO35GP35BIDIRECTIONALGPIO
28IO36GP36BIDIRECTIONALGPIO
29IO37GP37BIDIRECTIONALGPIO
30IO38GP38BIDIRECTIONALGPIO
31IO39GP39BIDIRECTIONALGPIO
32IO40GP40BIDIRECTIONALGPIO
33IO41GP41BIDIRECTIONALGPIO
34IO45GP45BIDIRECTIONALGPIO
35IO46GP46BIDIRECTIONALGPIO
36IO47GP47BIDIRECTIONALGPIO
37IO48GP48BIDIRECTIONALGPIO
Legend
Function Pin role
GPIO ESP32 pin
I/O Direction
# Pin number

Pin Mappings

Complete pinout and GPIO mapping for ESP32-S3 Super Mini

11
Digital I/O Pins
22
Interrupt Pins
6
Analog Inputs
11
PWM Pins
PinAnalogTouchPWMOther
0A0
1A1
2A2
3A3
4A4SCK
5A5MISO
6MOSI
7SS
8WS2812_RGB SDA
9SCL
20RX
21TX
Legend
A0 Analog input
T0 Touch sensor
PWM PWM capable
RX/TX Serial pins
LED Built-in LED
# Pin number

Default Tools & Configuration

Build and upload settings for ESP32-S3 Super Mini

SettingValue
Bootloader toolesptool_py
Uploader toolesptool_py
Network uploader toolesp_ota
Bootloader address0x0
Flash modeqio
Boot modeqio
Maximum upload size
1280 KB (1310720 bytes)
Maximum data size
320 KB (327680 bytes)
Configuration Summary

The ESP32-S3 Super Mini uses esptool_py for uploads , esp_ota for OTA updates, and esptool_py bootloader at 0x0.

Flash mode: qio | Boot mode: qio

Max sketch size: 1280 KB | Max data size: 320 KB