The ESP32-WROOM, manufactured by AZ-Delivery, is a powerful and versatile Wi-Fi and Bluetooth module based on the ESP32 microcontroller. It is designed for a wide range of applications, including Internet of Things (IoT) devices, embedded systems, and smart home automation. The ESP32-WROOM offers robust performance, low power consumption, and a rich set of features, making it an ideal choice for both hobbyists and professionals.
Parameter | Value |
---|---|
Microcontroller | ESP32 |
Operating Voltage | 3.0V - 3.6V |
Flash Memory | 4MB |
SRAM | 520KB |
Wi-Fi Standards | 802.11 b/g/n |
Bluetooth | v4.2 BR/EDR and BLE |
GPIO Pins | 34 |
ADC Channels | 18 (12-bit) |
DAC Channels | 2 (8-bit) |
UART | 3 |
SPI | 4 |
I2C | 2 |
PWM Channels | 16 |
Operating Temperature | -40°C to +85°C |
Pin Number | Pin Name | Description |
---|---|---|
1 | EN | Enable (Active High) |
2 | IO0 | GPIO0, Boot Mode Select |
3 | IO1 | GPIO1, UART0 TXD |
4 | IO2 | GPIO2 |
5 | IO3 | GPIO3, UART0 RXD |
6 | IO4 | GPIO4 |
7 | IO5 | GPIO5 |
8 | IO6 | GPIO6, Flash SCK |
9 | IO7 | GPIO7, Flash SD0 |
10 | IO8 | GPIO8, Flash SD1 |
11 | IO9 | GPIO9, Flash SD2 |
12 | IO10 | GPIO10, Flash SD3 |
13 | IO11 | GPIO11, Flash CMD |
14 | IO12 | GPIO12, Boot Mode Select |
15 | IO13 | GPIO13, HSPI MOSI |
16 | IO14 | GPIO14, HSPI CLK |
17 | IO15 | GPIO15, HSPI CS0 |
18 | IO16 | GPIO16, UART2 RXD |
19 | IO17 | GPIO17, UART2 TXD |
20 | IO18 | GPIO18, VSPI CLK |
21 | IO19 | GPIO19, VSPI MISO |
22 | IO21 | GPIO21, I2C SDA |
23 | IO22 | GPIO22, I2C SCL |
24 | IO23 | GPIO23, VSPI MOSI |
25 | IO25 | GPIO25, DAC1 |
26 | IO26 | GPIO26, DAC2 |
27 | IO27 | GPIO27 |
28 | IO32 | GPIO32, ADC1_CH4 |
29 | IO33 | GPIO33, ADC1_CH5 |
30 | IO34 | GPIO34, ADC1_CH6 |
31 | IO35 | GPIO35, ADC1_CH7 |
32 | IO36 | GPIO36, ADC1_CH0 |
33 | IO39 | GPIO39, ADC1_CH3 |
34 | GND | Ground |
35 | 3V3 | 3.3V Power Supply |
#include <WiFi.h>
// Replace with your network credentials
const char* ssid = "your_SSID";
const char* password = "your_PASSWORD";
void setup() {
Serial.begin(115200);
delay(10);
// Connect to Wi-Fi network
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected.");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
void loop() {
// Add your main code here, to run repeatedly
}
By following this documentation, users can effectively utilize the ESP32-WROOM module in their projects, leveraging its powerful features for a wide range of applications.