

The ESP-WROOM32 is a powerful Wi-Fi and Bluetooth module based on the ESP32 chip, designed for high-performance and low-power IoT applications. With its 30-pin configuration, it offers versatile connectivity options, making it suitable for a wide range of projects, from smart home devices to industrial automation systems. The module integrates dual-core processing, a rich set of peripherals, and robust wireless communication capabilities, making it a popular choice among developers and hobbyists.








| Specification | Value |
|---|---|
| Microcontroller | ESP32 dual-core Xtensa LX6 |
| Clock Speed | Up to 240 MHz |
| Flash Memory | 4 MB (varies by model) |
| SRAM | 520 KB |
| Wireless Connectivity | Wi-Fi 802.11 b/g/n, Bluetooth v4.2 BR/EDR |
| Operating Voltage | 3.3V |
| Input Voltage Range | 3.0V - 3.6V |
| GPIO Pins | 30 |
| Communication Interfaces | UART, SPI, I2C, I2S, PWM, ADC, DAC |
| ADC Resolution | 12-bit |
| Operating Temperature Range | -40°C to 85°C |
| Power Consumption (Wi-Fi) | 160 mA (active), <10 µA (deep sleep) |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | EN | Enable pin (active high) |
| 2 | IO36 (VP) | ADC1 channel 0, GPIO36 |
| 3 | IO39 (VN) | ADC1 channel 3, GPIO39 |
| 4 | IO34 | ADC1 channel 6, GPIO34 |
| 5 | IO35 | ADC1 channel 7, GPIO35 |
| 6 | IO32 | ADC1 channel 4, GPIO32 |
| 7 | IO33 | ADC1 channel 5, GPIO33 |
| 8 | IO25 | DAC1, GPIO25 |
| 9 | IO26 | DAC2, GPIO26 |
| 10 | IO27 | GPIO27 |
| 11 | IO14 | HSPI CLK, GPIO14 |
| 12 | IO12 | HSPI MISO, GPIO12 |
| 13 | IO13 | HSPI MOSI, GPIO13 |
| 14 | IO15 | HSPI CS, GPIO15 |
| 15 | IO2 | GPIO2 |
| 16 | IO0 | GPIO0, boot mode selection |
| 17 | IO4 | GPIO4 |
| 18 | IO16 | GPIO16 |
| 19 | IO17 | GPIO17 |
| 20 | IO5 | GPIO5 |
| 21 | IO18 | GPIO18 |
| 22 | IO19 | GPIO19 |
| 23 | IO21 | GPIO21 |
| 24 | IO22 | GPIO22 |
| 25 | IO23 | GPIO23 |
| 26 | GND | Ground |
| 27 | 3V3 | 3.3V power supply |
| 28 | VIN | Input voltage (5V) |
| 29 | TXD0 | UART0 TX |
| 30 | RXD0 | UART0 RX |
WiFi.h and BluetoothSerial.h simplify the process.Below is an example of using the ESP-WROOM32 to connect to a Wi-Fi network:
#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 at 115200 baud
delay(1000); // Wait for the serial monitor to initialize
Serial.println("Connecting to Wi-Fi...");
WiFi.begin(ssid, password); // Start Wi-Fi connection
while (WiFi.status() != WL_CONNECTED) {
delay(500); // Wait for connection
Serial.print(".");
}
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 Responding:
Wi-Fi Connection Fails:
GPIO Pin Not Working:
Overheating:
Can the ESP-WROOM32 operate on 5V logic? No, the GPIO pins are designed for 3.3V logic. Use level shifters for 5V devices.
What is the maximum Wi-Fi range? The range depends on environmental factors but typically extends up to 100 meters in open spaces.
How do I reset the module? Pull the EN pin low momentarily or press the reset button on the development board.
Can I use the ESP-WROOM32 with the Arduino IDE? Yes, the ESP32 core for Arduino IDE supports the ESP-WROOM32 module. Install the core via the Arduino Boards Manager.