

The ESP32 is a powerful microcontroller with built-in Wi-Fi and Bluetooth capabilities, designed for a wide range of applications. With its 30-pin configuration, the ESP32 offers extensive I/O options, making it ideal for Internet of Things (IoT) projects, embedded systems, and smart devices. Its dual-core processor and low-power consumption make it suitable for both high-performance and energy-efficient applications.








| Specification | Value |
|---|---|
| Microcontroller | Tensilica Xtensa LX6 (dual-core) |
| Clock Speed | Up to 240 MHz |
| Flash Memory | 4 MB (varies by model) |
| SRAM | 520 KB |
| Wi-Fi Standard | 802.11 b/g/n |
| Bluetooth Version | Bluetooth 4.2 + BLE |
| Operating Voltage | 3.3V |
| Input Voltage Range | 5V (via USB) or 3.3V (via VIN pin) |
| GPIO Pins | 30 |
| ADC Channels | 18 (12-bit resolution) |
| DAC Channels | 2 (8-bit resolution) |
| Communication Interfaces | UART, SPI, I2C, I2S, CAN, PWM |
| Power Consumption | Ultra-low power (varies by mode) |
| Operating Temperature Range | -40°C to 125°C |
The ESP32 (30-pin variant) has a versatile pinout. Below is a table describing the key pins:
| Pin Number | Pin Name | Functionality |
|---|---|---|
| 1 | EN | Enable pin (active high) |
| 2 | IO1 | GPIO1, UART TX |
| 3 | IO3 | GPIO3, UART RX |
| 4 | IO4 | GPIO4, PWM, ADC |
| 5 | IO5 | GPIO5, PWM, ADC |
| 6 | GND | Ground |
| 7 | IO12 | GPIO12, ADC, Touch Sensor |
| 8 | IO13 | GPIO13, ADC, Touch Sensor |
| 9 | IO14 | GPIO14, PWM, ADC |
| 10 | IO15 | GPIO15, PWM, ADC |
| 11 | IO16 | GPIO16, UART RX |
| 12 | IO17 | GPIO17, UART TX |
| 13 | IO18 | GPIO18, SPI CLK |
| 14 | IO19 | GPIO19, SPI MISO |
| 15 | IO21 | GPIO21, I2C SDA |
| 16 | IO22 | GPIO22, I2C SCL |
| 17 | IO23 | GPIO23, SPI MOSI |
| 18 | VIN | Input voltage (3.3V or 5V) |
| 19 | 3V3 | 3.3V output |
| 20 | GND | Ground |
| 21 | IO25 | GPIO25, DAC1 |
| 22 | IO26 | GPIO26, DAC2 |
| 23 | IO27 | GPIO27, ADC, Touch Sensor |
| 24 | IO32 | GPIO32, ADC, Touch Sensor |
| 25 | IO33 | GPIO33, ADC, Touch Sensor |
| 26 | IO34 | GPIO34, ADC (input only) |
| 27 | IO35 | GPIO35, ADC (input only) |
| 28 | IO36 | GPIO36, ADC (input only) |
| 29 | IO39 | GPIO39, ADC (input only) |
| 30 | GND | Ground |
Powering the ESP32:
Connecting to Peripherals:
Programming the ESP32:
The following example demonstrates how to blink an LED connected to GPIO2:
// Define the GPIO pin for the LED
#define LED_PIN 2
void setup() {
pinMode(LED_PIN, OUTPUT); // Set GPIO2 as an output pin
}
void loop() {
digitalWrite(LED_PIN, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(LED_PIN, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
ESP32 Not Detected by Computer:
Upload Errors in Arduino IDE:
Wi-Fi Connection Fails:
Random Resets or Instability:
Q: Can I power the ESP32 with a 5V battery?
A: Yes, you can connect a 5V battery to the VIN pin. Ensure the battery provides a stable output.
Q: How do I use the ESP32's Bluetooth feature?
A: Use the BluetoothSerial library in the Arduino IDE to enable Bluetooth communication.
Q: Can I use the ESP32 with 5V logic devices?
A: No, the ESP32 operates at 3.3V logic levels. Use a level shifter for compatibility with 5V devices.