

The Mini ESP32 S3 Custom is a compact microcontroller designed for IoT applications and projects requiring wireless connectivity. It integrates both Wi-Fi and Bluetooth capabilities, making it a versatile choice for smart devices, home automation, wearable electronics, and other connected systems. Its small form factor and powerful processing capabilities make it ideal for space-constrained designs while maintaining excellent performance.








The Mini ESP32 S3 Custom is built on the ESP32-S3 chip, offering advanced features for wireless communication and processing. Below are the key technical details:
| Parameter | Value |
|---|---|
| Microcontroller | ESP32-S3 |
| CPU | Dual-core Xtensa LX7, up to 240 MHz |
| Flash Memory | 4 MB (expandable in some variants) |
| SRAM | 512 KB |
| Wireless Connectivity | Wi-Fi 802.11 b/g/n, Bluetooth 5.0 LE |
| GPIO Pins | 21 (configurable for various functions) |
| Operating Voltage | 3.3V |
| Input Voltage Range | 5V (via USB) or 3.3V (via pin) |
| Power Consumption | Ultra-low power modes available |
| Interfaces | UART, SPI, I2C, I2S, PWM, ADC, DAC |
| ADC Resolution | 12-bit |
| Dimensions | 25mm x 18mm |
The Mini ESP32 S3 Custom features a compact pinout. Below is the pin configuration:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | GND | Ground |
| 2 | 3V3 | 3.3V Power Output |
| 3 | EN | Enable Pin (Active High) |
| 4 | GPIO0 | General Purpose I/O, Boot Mode Selection |
| 5 | GPIO1 | General Purpose I/O |
| 6 | GPIO2 | General Purpose I/O |
| 7 | GPIO3 | General Purpose I/O |
| 8 | TXD0 | UART0 Transmit |
| 9 | RXD0 | UART0 Receive |
| 10 | GPIO4 | General Purpose I/O |
| 11 | GPIO5 | General Purpose I/O |
| 12 | GPIO6 | General Purpose I/O |
| 13 | GPIO7 | General Purpose I/O |
| 14 | GPIO8 | General Purpose I/O |
| 15 | GPIO9 | General Purpose I/O |
| 16 | GPIO10 | General Purpose I/O |
| 17 | GPIO11 | General Purpose I/O |
| 18 | GPIO12 | General Purpose I/O |
| 19 | GPIO13 | General Purpose I/O |
| 20 | GPIO14 | General Purpose I/O |
| 21 | GPIO15 | General Purpose I/O |
Powering the Module:
5V pin to a 5V power source (e.g., USB) or the 3V3 pin to a regulated 3.3V supply.GND pin is connected to the ground of your circuit.Programming the Module:
Connecting Peripherals:
Wireless Connectivity:
WiFi.h or BluetoothSerial.h in the Arduino IDE.GPIO0 pin low while resetting the module.Below is an example of how to connect the Mini ESP32 S3 Custom to a Wi-Fi network using the Arduino IDE:
#include <WiFi.h> // Include the Wi-Fi library
const char* ssid = "Your_SSID"; // Replace with your Wi-Fi network name
const char* password = "Your_PASSWORD"; // Replace with your Wi-Fi password
void setup() {
Serial.begin(115200); // Initialize serial communication
delay(1000);
Serial.println("Connecting to Wi-Fi...");
WiFi.begin(ssid, password); // Start Wi-Fi connection
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print("."); // Print dots while connecting
}
Serial.println("\nWi-Fi connected!");
Serial.print("IP Address: ");
Serial.println(WiFi.localIP()); // Print the assigned IP address
}
void loop() {
// Add your main code here
}
Module Not Detected by Computer:
Wi-Fi Connection Fails:
Unexpected Resets:
GPIO Pins Not Responding:
Q: Can I use the Mini ESP32 S3 Custom with a 5V logic device?
A: No, the GPIO pins operate at 3.3V logic levels. Use a level shifter if interfacing with 5V devices.
Q: How do I update the firmware?
A: Use the ESP-IDF or Arduino IDE to upload new firmware via the USB interface.
Q: Does the module support deep sleep mode?
A: Yes, the Mini ESP32 S3 Custom supports ultra-low power modes, including deep sleep, for energy-efficient applications.
Q: Can I use the module for Bluetooth audio streaming?
A: Yes, the ESP32-S3 supports Bluetooth audio features, but additional configuration and libraries may be required.