The ESP32_30Pin_蓝色电源模块 by SRYY (Part ID: ESP32_UNO尺寸蓝色电源板) is a versatile microcontroller module featuring 30 pins, Wi-Fi, and Bluetooth capabilities. This module is widely used in Internet of Things (IoT) applications, prototyping, and various embedded systems projects. Its compatibility with the Arduino IDE makes it a popular choice among hobbyists and professionals alike.
Parameter | Value |
---|---|
Microcontroller | ESP32 |
Operating Voltage | 3.3V |
Input Voltage | 5V (via USB) |
Digital I/O Pins | 30 |
Analog Input Pins | 16 |
Flash Memory | 4MB |
Wi-Fi | 802.11 b/g/n |
Bluetooth | v4.2 BR/EDR and BLE |
Operating Temperature | -40°C to 85°C |
Pin Number | Pin Name | Description |
---|---|---|
1 | EN | Enable pin (active high) |
2 | IO23 | GPIO23 |
3 | IO22 | GPIO22 |
4 | TXD0 | UART0 Transmit |
5 | RXD0 | UART0 Receive |
6 | IO21 | GPIO21 |
7 | GND | Ground |
8 | IO19 | GPIO19 |
9 | IO18 | GPIO18 |
10 | IO5 | GPIO5 |
11 | IO17 | GPIO17 |
12 | IO16 | GPIO16 |
13 | IO4 | GPIO4 |
14 | IO0 | GPIO0 |
15 | IO2 | GPIO2 |
16 | IO15 | GPIO15 |
17 | IO13 | GPIO13 |
18 | IO12 | GPIO12 |
19 | IO14 | GPIO14 |
20 | IO27 | GPIO27 |
21 | IO26 | GPIO26 |
22 | IO25 | GPIO25 |
23 | IO33 | GPIO33 |
24 | IO32 | GPIO32 |
25 | IO35 | GPIO35 (input only) |
26 | IO34 | GPIO34 (input only) |
27 | IO39 | GPIO39 (input only) |
28 | IO36 | GPIO36 (input only) |
29 | 3V3 | 3.3V power output |
30 | VIN | 5V input (via USB) |
Powering the Module:
Programming the Module:
Connecting Peripherals:
// Example code to blink an LED connected to GPIO2
void setup() {
// Initialize GPIO2 as an output pin
pinMode(2, OUTPUT);
}
void loop() {
// Turn the LED on
digitalWrite(2, HIGH);
delay(1000); // Wait for 1 second
// Turn the LED off
digitalWrite(2, LOW);
delay(1000); // Wait for 1 second
}
Module Not Detected by Computer:
Upload Errors in Arduino IDE:
Wi-Fi Connection Issues:
By following this documentation, users can effectively utilize the ESP32_30Pin_蓝色电源模块 in their projects, ensuring optimal performance and reliability.