

The ESP32-WROOM-32D is a high-performance Wi-Fi and Bluetooth microcontroller module manufactured by Espressif Systems. It features dual-core processing, making it ideal for a wide range of IoT applications and embedded systems. With its robust wireless connectivity, low power consumption, and versatile GPIO options, the ESP32-WROOM-32D is a popular choice for developers building smart devices, home automation systems, and industrial IoT solutions.








The ESP32-WROOM-32D module is built around the ESP32-D0WD chip, offering a rich set of features for wireless communication and processing.
| Parameter | Specification |
|---|---|
| Manufacturer | Espressif Systems |
| Part Number | ESP32D |
| Wireless Connectivity | Wi-Fi 802.11 b/g/n, Bluetooth v4.2 |
| Processor | Dual-core Xtensa® 32-bit LX6 |
| Clock Speed | Up to 240 MHz |
| Flash Memory | 4 MB (external SPI flash) |
| SRAM | 520 KB |
| Operating Voltage | 3.0V to 3.6V |
| GPIO Pins | 34 |
| ADC Channels | 18 (12-bit resolution) |
| DAC Channels | 2 |
| Communication Interfaces | UART, SPI, I2C, I2S, CAN, PWM |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 18 mm x 25.5 mm x 3.1 mm |
The ESP32-WROOM-32D module has 38 pins. Below is a summary of the key pins and their functions:
| Pin Number | Pin Name | Function Description |
|---|---|---|
| 1 | EN | Enable pin (active high) |
| 2 | IO0 | GPIO0, used for boot mode selection |
| 3 | IO2 | GPIO2, ADC2 channel, PWM capable |
| 4 | IO4 | GPIO4, ADC2 channel, PWM capable |
| 5 | IO5 | GPIO5, ADC2 channel, PWM capable |
| 6 | IO12 | GPIO12, ADC2 channel, PWM capable |
| 7 | IO13 | GPIO13, ADC2 channel, PWM capable |
| 8 | IO14 | GPIO14, ADC2 channel, PWM capable |
| 9 | IO15 | GPIO15, ADC2 channel, PWM capable |
| 10 | IO16 | GPIO16, ADC2 channel, PWM capable |
| 11 | IO17 | GPIO17, ADC2 channel, PWM capable |
| 12 | GND | Ground |
| 13 | 3V3 | 3.3V power supply |
For a complete pinout diagram, refer to the official datasheet provided by Espressif.
Below is an example of how to blink an LED connected to GPIO2 using the Arduino IDE:
// Include the ESP32 Wi-Fi library
#include <WiFi.h>
// Define the GPIO pin for the LED
#define LED_PIN 2
void setup() {
// Initialize the LED pin as an output
pinMode(LED_PIN, OUTPUT);
// Print a message to the serial monitor
Serial.begin(115200);
Serial.println("ESP32 LED Blink Example");
}
void loop() {
// Turn the LED on
digitalWrite(LED_PIN, HIGH);
Serial.println("LED ON");
delay(1000); // Wait for 1 second
// Turn the LED off
digitalWrite(LED_PIN, LOW);
Serial.println("LED OFF");
delay(1000); // Wait for 1 second
}
ESP32 Dev Module) and port.ESP32 Not Detected by Computer:
Code Upload Fails:
Wi-Fi Connection Issues:
Random Resets or Instability:
Q: Can the ESP32-WROOM-32D operate on 5V?
A: No, the ESP32 operates at 3.3V. Applying 5V to its GPIO pins can damage the module.
Q: How do I use the Bluetooth functionality?
A: The ESP32 supports both Bluetooth Classic and BLE. Use the BluetoothSerial or BLE libraries in the Arduino IDE to implement Bluetooth features.
Q: What is the maximum Wi-Fi range of the ESP32?
A: The range depends on the environment but typically extends up to 100 meters in open spaces.
Q: Can I use the ESP32 for audio applications?
A: Yes, the ESP32 supports I2S for audio input/output and can be used for streaming or processing audio data.
For additional support, refer to the official Espressif documentation and community forums.