The ESP32 NodeMCU Module, manufactured by AZDelivery, is a versatile development board featuring the ESP32 microcontroller. This board is equipped with built-in WiFi and Bluetooth capabilities, making it ideal for a wide range of IoT (Internet of Things) applications. The CP2102 USB-to-UART bridge simplifies programming and debugging, providing a seamless development experience.
Specification | Value |
---|---|
Microcontroller | ESP32 |
Operating Voltage | 3.3V |
Input Voltage | 5V (via USB) |
Digital I/O Pins | 34 |
Analog Input Pins | 18 (ADC) |
Flash Memory | 4MB |
SRAM | 520KB |
WiFi Standard | 802.11 b/g/n |
Bluetooth Standard | Bluetooth v4.2 BR/EDR and BLE |
USB-to-UART Bridge | CP2102 |
Dimensions | 58mm x 31mm x 13mm |
Pin Number | Pin Name | Description |
---|---|---|
1 | EN | Enable pin (active high) |
2 | IO23 | GPIO23, SPI MOSI |
3 | IO22 | GPIO22, I2C SCL |
4 | TXD0 | UART0 TXD |
5 | RXD0 | UART0 RXD |
6 | IO21 | GPIO21, I2C SDA |
7 | GND | Ground |
8 | IO19 | GPIO19, SPI MISO |
9 | IO18 | GPIO18, SPI SCK |
10 | IO17 | GPIO17, UART2 TXD |
11 | IO16 | GPIO16, UART2 RXD |
12 | IO15 | GPIO15, HSPI CS |
13 | IO14 | GPIO14, HSPI CLK |
14 | IO13 | GPIO13, HSPI MOSI |
15 | IO12 | GPIO12, HSPI MISO |
16 | IO11 | GPIO11, SPI CS |
17 | IO10 | GPIO10 |
18 | IO9 | GPIO9 |
19 | IO8 | GPIO8 |
20 | IO7 | GPIO7 |
21 | IO6 | GPIO6 |
22 | IO5 | GPIO5, HSPI CLK |
23 | IO4 | GPIO4 |
24 | IO3 | GPIO3, UART0 RXD |
25 | IO2 | GPIO2, HSPI MISO |
26 | IO1 | GPIO1, UART0 TXD |
27 | IO0 | GPIO0, Boot Mode Select |
28 | 3V3 | 3.3V Power Output |
29 | GND | Ground |
30 | VIN | 5V Power Input |
Powering the Board:
Programming the ESP32:
Connecting Peripherals:
#include <WiFi.h>
// Replace with your network credentials
const char* ssid = "your_SSID";
const char* password = "your_PASSWORD";
void setup() {
// Initialize serial communication
Serial.begin(115200);
// Connect to Wi-Fi
WiFi.begin(ssid, password);
// Wait for connection
while (WiFi.status() != WL_CONNECTED) {
delay(1000);
Serial.println("Connecting to WiFi...");
}
// Print the IP address
Serial.println("Connected to WiFi");
Serial.print("IP Address: ");
Serial.println(WiFi.localIP());
}
void loop() {
// Your main code here
}
Unable to Connect to WiFi:
ESP32 Not Detected by Computer:
Program Upload Fails:
Peripheral Not Working:
By following this documentation, users can effectively utilize the ESP32 NodeMCU Module for a variety of applications, from simple projects to complex IoT systems.