

The FREENOVE ESP32-WROVER is a powerful microcontroller module developed by Espressif. It features integrated Wi-Fi and Bluetooth capabilities, making it an excellent choice for Internet of Things (IoT) applications. With its dual-core processor, ample memory, and advanced connectivity options, the ESP32-WROVER is designed to handle complex tasks efficiently.








The following table outlines the key technical details of the FREENOVE ESP32-WROVER module:
| Specification | Details |
|---|---|
| Microcontroller | ESP32-D0WDQ6 (dual-core Xtensa® 32-bit LX6 processor) |
| Clock Speed | Up to 240 MHz |
| Flash Memory | 4 MB (external) |
| PSRAM | 8 MB |
| Wi-Fi | 802.11 b/g/n (2.4 GHz) |
| Bluetooth | Bluetooth 4.2 (Classic and BLE) |
| Operating Voltage | 3.3V |
| Input Voltage Range | 3.0V to 3.6V |
| GPIO Pins | 36 |
| ADC Channels | 18 (12-bit resolution) |
| DAC Channels | 2 |
| Communication Interfaces | UART, SPI, I2C, I2S, CAN, PWM |
| Power Consumption | Ultra-low power consumption in deep sleep mode (as low as 10 µA) |
| Dimensions | 18 mm x 31 mm |
The ESP32-WROVER module has a variety of pins for different functionalities. Below is a table summarizing the key pins:
| Pin | Name | Description |
|---|---|---|
| 1 | GND | Ground pin |
| 2 | 3V3 | 3.3V power supply output |
| 3 | EN | Enable pin (active high) |
| 4 | IO0 | GPIO0, used for boot mode selection |
| 5 | IO2 | GPIO2, general-purpose I/O pin |
| 6 | IO4 | GPIO4, general-purpose I/O pin |
| 7 | IO5 | GPIO5, general-purpose I/O pin |
| 8 | IO12 | GPIO12, general-purpose I/O pin |
| 9 | IO13 | GPIO13, general-purpose I/O pin |
| 10 | IO14 | GPIO14, general-purpose I/O pin |
| 11 | IO15 | GPIO15, general-purpose I/O pin |
| 12 | IO16 | GPIO16, general-purpose I/O pin |
| 13 | IO17 | GPIO17, general-purpose I/O pin |
| 14 | IO18 | GPIO18, general-purpose I/O pin |
| 15 | IO19 | GPIO19, general-purpose I/O pin |
| 16 | IO21 | GPIO21, general-purpose I/O pin |
| 17 | IO22 | GPIO22, general-purpose I/O pin |
| 18 | IO23 | GPIO23, general-purpose I/O pin |
| 19 | IO25 | GPIO25, general-purpose I/O pin |
| 20 | IO26 | GPIO26, general-purpose I/O pin |
| 21 | IO27 | GPIO27, general-purpose I/O pin |
| 22 | IO32 | GPIO32, general-purpose I/O pin |
| 23 | IO33 | GPIO33, general-purpose I/O pin |
| 24 | IO34 | GPIO34, input-only pin |
| 25 | IO35 | GPIO35, input-only pin |
Below is an example of how to use the ESP32-WROVER with the Arduino IDE 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 a moment to stabilize
Serial.println("Connecting to Wi-Fi...");
WiFi.begin(ssid, password); // Start connecting to the Wi-Fi network
while (WiFi.status() != WL_CONNECTED) {
delay(500); // Wait for connection
Serial.print(".");
}
Serial.println("\nConnected to Wi-Fi!");
Serial.print("IP Address: ");
Serial.println(WiFi.localIP()); // Print the assigned IP address
}
void loop() {
// Add your main code here
}
Module Not Powering On:
Wi-Fi Connection Fails:
Programming Errors:
Bluetooth Not Discoverable:
By following this documentation, you can effectively integrate the FREENOVE ESP32-WROVER into your projects and troubleshoot common issues with ease.