The ESP32-S2-WROVER is a powerful Wi-Fi microcontroller module developed by Espressif. It integrates a 2.4 GHz Wi-Fi transceiver, 320 KB of SRAM, and 2 MB of PSRAM, making it an ideal choice for IoT applications. This module offers high performance and low power consumption, making it suitable for a wide range of applications, including smart home devices, wearable electronics, and industrial automation.
Parameter | Value |
---|---|
Wi-Fi Standard | 802.11 b/g/n |
Operating Voltage | 3.0V to 3.6V |
Flash Memory | 4 MB |
SRAM | 320 KB |
PSRAM | 2 MB |
CPU | Xtensa® single-core 32-bit LX7 |
Clock Speed | Up to 240 MHz |
GPIO Pins | 43 |
Operating Temperature | -40°C to +85°C |
Pin Number | Pin Name | Description |
---|---|---|
1 | VDD3P3 | 3.3V Power Supply |
2 | GND | Ground |
3 | GPIO0 | General Purpose I/O |
4 | GPIO1 | General Purpose I/O |
5 | GPIO2 | General Purpose I/O |
6 | GPIO3 | General Purpose I/O |
7 | GPIO4 | General Purpose I/O |
8 | GPIO5 | General Purpose I/O |
9 | GPIO6 | General Purpose I/O |
10 | GPIO7 | General Purpose I/O |
11 | GPIO8 | General Purpose I/O |
12 | GPIO9 | General Purpose I/O |
13 | GPIO10 | General Purpose I/O |
14 | GPIO11 | General Purpose I/O |
15 | GPIO12 | General Purpose I/O |
16 | GPIO13 | General Purpose I/O |
17 | GPIO14 | General Purpose I/O |
18 | GPIO15 | General Purpose I/O |
19 | GPIO16 | General Purpose I/O |
20 | GPIO17 | General Purpose I/O |
21 | GPIO18 | General Purpose I/O |
22 | GPIO19 | General Purpose I/O |
23 | GPIO20 | General Purpose I/O |
24 | GPIO21 | General Purpose I/O |
25 | GPIO22 | General Purpose I/O |
26 | GPIO23 | General Purpose I/O |
27 | GPIO24 | General Purpose I/O |
28 | GPIO25 | General Purpose I/O |
29 | GPIO26 | General Purpose I/O |
30 | GPIO27 | General Purpose I/O |
31 | GPIO28 | General Purpose I/O |
32 | GPIO29 | General Purpose I/O |
33 | GPIO30 | General Purpose I/O |
34 | GPIO31 | General Purpose I/O |
35 | GPIO32 | General Purpose I/O |
36 | GPIO33 | General Purpose I/O |
37 | GPIO34 | General Purpose I/O |
38 | GPIO35 | General Purpose I/O |
39 | GPIO36 | General Purpose I/O |
40 | GPIO37 | General Purpose I/O |
41 | GPIO38 | General Purpose I/O |
42 | GPIO39 | General Purpose I/O |
43 | GPIO40 | General Purpose I/O |
#include <WiFi.h>
// Replace with your network credentials
const char* ssid = "your_SSID";
const char* password = "your_PASSWORD";
void setup() {
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...");
}
Serial.println("Connected to WiFi");
}
void loop() {
// Put your main code here, to run repeatedly
}
By following these guidelines and best practices, you can effectively utilize the ESP32-S2-WROVER module in your projects and applications.