

The ESP32-S3-DEV-KIT-2-N32R16V by Waveshare is a powerful microcontroller development board designed for IoT applications. It features dual-core processing, integrated Wi-Fi and Bluetooth capabilities, and a wide range of GPIO pins, making it ideal for projects requiring wireless communication, edge computing, or sensor integration. With its robust processing power and support for various peripherals, the ESP32-S3 is a versatile choice for both hobbyists and professionals.








| Parameter | Value |
|---|---|
| Manufacturer | Waveshare |
| Part Number | ESP32-S3-DEV-KIT-2-N32R16V |
| Microcontroller | ESP32-S3 (dual-core Xtensa LX7 processor) |
| Clock Speed | Up to 240 MHz |
| Flash Memory | 16 MB |
| PSRAM | 8 MB |
| Wi-Fi | 802.11 b/g/n (2.4 GHz) |
| Bluetooth | Bluetooth 5.0 LE |
| GPIO Pins | 36 (multipurpose) |
| Operating Voltage | 3.3 V |
| Input Voltage Range | 5 V (via USB-C) |
| Communication Interfaces | UART, SPI, I2C, I2S, CAN, PWM |
| ADC Channels | 20 (12-bit resolution) |
| DAC Channels | 2 |
| USB Interface | USB-C (supports USB OTG) |
| Dimensions | 54 mm x 25 mm |
The ESP32-S3-DEV-KIT-2-N32R16V features a 2-row pin header layout. Below is a summary of the pin configuration:
| Pin Number | Pin Name | Functionality |
|---|---|---|
| 1 | 3V3 | 3.3V power output |
| 2 | GND | Ground |
| 3 | GPIO1 | General-purpose I/O, UART TX |
| 4 | GPIO2 | General-purpose I/O, UART RX |
| 5 | GPIO3 | General-purpose I/O, ADC, PWM |
| 6 | GPIO4 | General-purpose I/O, ADC, PWM |
| 7 | GPIO5 | General-purpose I/O, SPI MOSI |
| 8 | GPIO6 | General-purpose I/O, SPI MISO |
| 9 | GPIO7 | General-purpose I/O, SPI CLK |
| 10 | GPIO8 | General-purpose I/O, I2C SDA |
| 11 | GPIO9 | General-purpose I/O, I2C SCL |
| 12 | EN | Enable pin (active high) |
| 13 | BOOT | Boot mode selection |
| 14 | DAC1 | Digital-to-Analog Converter channel 1 |
| 15 | DAC2 | Digital-to-Analog Converter channel 2 |
Note: Refer to the official Waveshare datasheet for the complete pinout and advanced configurations.
Powering the Board:
Connecting Peripherals:
Programming the Board:
ESP32-S3 Dev Module) and port in the IDE.Flashing Firmware:
The following example demonstrates how to blink an LED connected to GPIO5:
// Define the GPIO pin for the LED
#define LED_PIN 5
void setup() {
// Set the LED pin as an output
pinMode(LED_PIN, OUTPUT);
}
void loop() {
// Turn the LED on
digitalWrite(LED_PIN, HIGH);
delay(1000); // Wait for 1 second
// Turn the LED off
digitalWrite(LED_PIN, LOW);
delay(1000); // Wait for 1 second
}
Tip: Use the onboard LED (if available) by replacing
LED_PINwith the appropriate GPIO number.
Board Not Detected by Computer:
Wi-Fi Connection Fails:
Program Upload Fails:
Peripheral Not Responding:
Q: Can the ESP32-S3 run on battery power?
A: Yes, you can power the board using a 3.7V LiPo battery connected to the appropriate pins. Ensure the battery voltage is regulated to 3.3V.
Q: Does the ESP32-S3 support over-the-air (OTA) updates?
A: Yes, the ESP32-S3 supports OTA updates, allowing you to update firmware wirelessly.
Q: Can I use the ESP32-S3 for AI/ML applications?
A: Absolutely! The ESP32-S3 includes hardware acceleration for AI/ML tasks, making it suitable for edge computing applications.
For additional support, refer to the official Waveshare documentation or the Espressif community forums.