

The ESP32-S3-Pico is a compact microcontroller module developed by Waveshare. It is based on the ESP32-S3 chip, which features dual-core processing, Wi-Fi, and Bluetooth connectivity. This versatile module is designed for a wide range of IoT and embedded applications, offering a rich set of I/O options and powerful processing capabilities.








| Parameter | Value |
|---|---|
| Chipset | ESP32-S3 |
| CPU | Dual-core Xtensa LX7 |
| Clock Speed | Up to 240 MHz |
| Flash Memory | 4 MB |
| SRAM | 512 KB |
| Wi-Fi | 802.11 b/g/n |
| Bluetooth | Bluetooth 5.0 (LE) |
| Operating Voltage | 3.3V |
| I/O Voltage | 3.3V |
| GPIO Pins | 26 |
| ADC Channels | 12-bit, 20 channels |
| DAC Channels | 2 channels |
| Communication | UART, SPI, I2C, I2S, CAN, Ethernet MAC |
| Power Consumption | Ultra-low power consumption in deep sleep |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | GND | Ground |
| 2 | 3V3 | 3.3V Power Supply |
| 3 | EN | Enable (Active High) |
| 4 | IO0 | GPIO0, Boot Mode Select |
| 5 | IO1 | GPIO1, UART0 TXD |
| 6 | IO2 | GPIO2, ADC2 Channel 2 |
| 7 | IO3 | GPIO3, UART0 RXD |
| 8 | IO4 | GPIO4, ADC2 Channel 0 |
| 9 | IO5 | GPIO5, ADC2 Channel 1 |
| 10 | IO6 | GPIO6, SPI Flash SCK |
| 11 | IO7 | GPIO7, SPI Flash SD0 |
| 12 | IO8 | GPIO8, SPI Flash SD1 |
| 13 | IO9 | GPIO9, SPI Flash SD2 |
| 14 | IO10 | GPIO10, SPI Flash SD3 |
| 15 | IO11 | GPIO11, SPI Flash CMD |
| 16 | IO12 | GPIO12, ADC2 Channel 5 |
| 17 | IO13 | GPIO13, ADC2 Channel 4 |
| 18 | IO14 | GPIO14, ADC2 Channel 6 |
| 19 | IO15 | GPIO15, ADC2 Channel 3 |
| 20 | IO16 | GPIO16, UART2 TXD |
| 21 | IO17 | GPIO17, UART2 RXD |
| 22 | IO18 | GPIO18, I2C SCL |
| 23 | IO19 | GPIO19, I2C SDA |
| 24 | IO20 | GPIO20, SPI MOSI |
| 25 | IO21 | GPIO21, SPI MISO |
| 26 | IO22 | GPIO22, SPI SCK |
| 27 | IO23 | GPIO23, SPI CS |
#include <WiFi.h>
// Replace with your network credentials
const char* ssid = "your_SSID";
const char* password = "your_PASSWORD";
void setup() {
// Initialize serial communication at 115200 baud rate
Serial.begin(115200);
// Connect to Wi-Fi network
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() {
// Add your main code here, to run repeatedly
}
Wi-Fi Connection Issues:
Module Not Powering On:
GPIO Pins Not Responding:
High Power Consumption:
By following this documentation, users can effectively integrate the ESP32-S3-Pico into their projects, leveraging its powerful features for a wide range of applications.