

The ESP32 R1 D32, manufactured by Burhan Butt, is a powerful and versatile Wi-Fi and Bluetooth-enabled microcontroller designed for IoT (Internet of Things) applications. It is based on the ESP32 chip, which features dual-core processing, low power consumption, and a wide range of peripherals. This module is ideal for projects requiring wireless connectivity, real-time processing, and efficient power management.








The ESP32 R1 D32 offers robust performance and flexibility. Below are its key technical details:
| Parameter | Specification |
|---|---|
| Manufacturer | Burhan Butt |
| Part ID | ESP32 R1 D32 |
| Microcontroller | ESP32 (dual-core, Xtensa LX6) |
| Clock Speed | Up to 240 MHz |
| Flash Memory | 4 MB |
| SRAM | 520 KB |
| Wi-Fi | 802.11 b/g/n |
| Bluetooth | v4.2 BR/EDR and BLE |
| Operating Voltage | 3.3V |
| Input Voltage Range | 5V (via USB) or 3.3V (via VIN pin) |
| GPIO Pins | 34 |
| ADC Channels | 18 (12-bit resolution) |
| DAC Channels | 2 |
| Communication Interfaces | UART, SPI, I2C, I2S, CAN, PWM |
| Power Consumption | Ultra-low power (deep sleep: ~10 µA) |
| Dimensions | 25.4 mm x 50.8 mm |
The ESP32 R1 D32 has a total of 38 pins, with the following configuration:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | EN | Enable pin (active high) |
| 2 | IO0 | GPIO0, used for boot mode selection |
| 3 | IO1 (TXD0) | GPIO1, UART0 TX |
| 4 | IO3 (RXD0) | GPIO3, UART0 RX |
| 5 | IO4 | GPIO4, PWM, ADC1_CH0 |
| 6 | IO5 | GPIO5, PWM, ADC1_CH1 |
| ... | ... | ... (refer to the full datasheet) |
| 37 | VIN | Power input (3.3V) |
| 38 | GND | Ground |
For a complete pinout diagram, refer to the official datasheet.
Powering the Module:
Connecting Peripherals:
Programming the ESP32 R1 D32:
Below is an example of how to blink an LED connected to GPIO2:
// Example: Blink an LED connected to GPIO2 on the ESP32 R1 D32
// Define the GPIO pin for the LED
#define LED_PIN 2
void setup() {
// Initialize the LED pin as an output
pinMode(LED_PIN, OUTPUT);
}
void loop() {
// Turn the LED on
digitalWrite(LED_PIN, HIGH);
delay(1000); // Wait for 1 second
// Turn the LED off
digitalWrite(LED_PIN, LOW);
delay(1000); // Wait for 1 second
}
ESP32 Not Detected by Computer:
Upload Fails in Arduino IDE:
Wi-Fi Connection Issues:
Random Resets or Instability:
Q: Can the ESP32 R1 D32 operate on battery power?
A: Yes, it can be powered by a 3.7V LiPo battery connected to the VIN pin. Use a voltage regulator if needed.
Q: How do I use Bluetooth on the ESP32 R1 D32?
A: The ESP32 supports both Bluetooth Classic and BLE. Use the BluetoothSerial or BLEDevice library in the Arduino IDE to implement Bluetooth functionality.
Q: What is the maximum range of the Wi-Fi module?
A: The Wi-Fi range is approximately 50 meters indoors and up to 200 meters outdoors, depending on environmental factors.
For additional support, refer to the official datasheet or community forums.