---
product_id: 740825759
title: "3 PCS ESP ESP-32-S3 Development Board ESP-32-S3 Module with ESP-1-N16R8 Low Power MCU with Dual-Mode Wi-Fi and Bluetooth Type-C Connector Compatible with Arduino"
brand: "aywhp"
price: "321 kr"
currency: DKK
in_stock: true
reviews_count: 8
category: "Aywhp"
url: https://www.desertcart.dk/products/740825759-3-pcs-esp-esp-32-s3-development-board-esp-32
store_origin: DK
region: Denmark
---

# 240 MHz dual-core CPU speed Dual-mode Wi-Fi & Bluetooth 5.0 Multiple low-power modes for extended battery life 3 PCS ESP ESP-32-S3 Development Board ESP-32-S3 Module with ESP-1-N16R8 Low Power MCU with Dual-Mode Wi-Fi and Bluetooth Type-C Connector Compatible with Arduino

**Brand:** aywhp
**Price:** 321 kr
**Availability:** ✅ In Stock

## Summary

> 🚀 Power Your Next IoT Breakthrough with ESP32-S3 Magic!

## Quick Answers

- **What is this?** 3 PCS ESP ESP-32-S3 Development Board ESP-32-S3 Module with ESP-1-N16R8 Low Power MCU with Dual-Mode Wi-Fi and Bluetooth Type-C Connector Compatible with Arduino by aywhp
- **How much does it cost?** 321 kr with free shipping
- **Is it available?** Yes, in stock and ready to ship
- **Where can I buy it?** [www.desertcart.dk](https://www.desertcart.dk/products/740825759-3-pcs-esp-esp-32-s3-development-board-esp-32)

## Best For

- aywhp enthusiasts

## Why This Product

- Trusted aywhp brand quality
- Free international shipping included
- Worldwide delivery with tracking
- 15-day hassle-free returns

## Key Features

- • **Ultra-Low Power Efficiency:** Optimize battery life with configurable power-saving modes tailored to your application.
- • **Blazing Fast Dual-Core Power:** Harness up to 240 MHz processing speed for seamless AIoT and Arduino projects.
- • **Plug & Play USB-C Programming:** Simplify development with dual USB Type-C ports supporting USB and UART modes.
- • **Seamless Dual-Mode Connectivity:** Stay effortlessly connected with integrated 2.4 GHz Wi-Fi and Bluetooth 5.0 LE.
- • **Versatile I/O & Rich Interfaces:** Access 34 GPIO pins plus SPI, I2C, UART, ADC, DAC, and PWM for limitless project possibilities.

## Overview

The AYWHP ESP32-S3 Development Board features a dual-core 240 MHz Xtensa LX7 CPU, 16 MB flash, and 512 KB RAM, integrated with dual-mode 2.4 GHz Wi-Fi and Bluetooth 5.0 LE. Designed for professional-grade AIoT and Arduino projects, it offers multiple low-power modes, dual USB-C programming interfaces, and a rich set of I/O pins and communication protocols, making it the ultimate platform for cutting-edge, energy-efficient smart device development.

## Description

Description：The AYWHP ESP32-S3 Development Board, equipped with the ESP32-S3-1 ESP-1-N16R8 module, is a high-performance development platform for AIoT and for Arduino enthusiasts.It integrates a low-power MCU System-on-Chip (SoC) with 2.4 GHz Wi-Fi and Bluetooth LE dual-mode wireless communication.Parameters：Microcontroller: ESP32-S3Chip: ESP-1-N16R8CPU: Dual-core Xtensa 32-bit LX7Clock Speed: Up to 240 MHzFlash Memory: 16 MB (embedded)RAM: 512 KBWireless Connectivity: Wi-Fi 802.11 b/g/n, Bluetooth 5.0 (BLE)I/O Pins: 34 GPIOsAnalog-to-Digital Converter (ADC): 12-bit resolutionDigital-to-Analog Converter (DAC): 8-bit resolutionUART: 3 UART interfacesSPI: 2 SPI interfacesI2C: 2 I2C interfacesPWM: 16 channelsADC Channels: 18Operating Voltage: 3.3VPower Supply: USB-C or external 5V supplyUSB Interface: USB-UART bridge for programming and debuggingProduct Includes：1 X ESP32-S3 Development Board with ESP-1-N16R8

Review: Worked great and great upgrade to earlier ESP32 versions - All worked great and the extra memory these utilize is of great benefit when using I2S Audio. Very useful boards.
Review: Was using wrong USB port for 3 months - Took me 3 months to figure out I was trying to upload code with the wrong PORT. DO NOT USE THE COM PORT regardless of what AI other documentation may say, use the USB port. Don't try to do the hold boot button and reset sequence, that won't work. Also the RGB Led won't light up unless you close the jumper connection on the board. I just rubbed the cold solder and bent it in place, but you should heat it up. There are jumpers for other things too. I'm on Mac osx using vscode and cursor with the platform.io extension. platform.io.ini for me is: [env:freenove_esp32_s3_wroom] platform = espressif32 board = lolin_s3 framework = arduino monitor_speed = 115200 upload_protocol = esptool upload_speed = 9600 board_build.flash_size = 2MB board_build.partitions = default.csv upload_flags = --no-stub --baud=9600 build_flags = -D ARDUINO_USB_CDC_ON_BOOT=1 my RGB LED code is: #include  // RGB LED pin (works on any pin for built-in RGB on ESP32-S3) #define RGB_LED_PIN 48 // Disco effect variables unsigned long lastUpdate = 0; int discoMode = 0; int brightness = 255; bool fadeDirection = true; // Color arrays for disco effects uint8_t discoColors[][3] = { {255, 0, 0}, // Red {0, 255, 0}, // Green {0, 0, 255}, // Blue {255, 255, 0}, // Yellow {255, 0, 255}, // Magenta {0, 255, 255}, // Cyan {255, 128, 0}, // Orange {128, 0, 255}, // Purple {255, 192, 203}, // Pink {0, 255, 128} // Spring Green }; void setRGB(uint8_t red, uint8_t green, uint8_t blue) { neopixelWrite(RGB_LED_PIN, red, green, blue); } // Random color flash void randomFlash() { int colorIndex = random(0, 10); setRGB(discoColors[colorIndex][0], discoColors[colorIndex][1], discoColors[colorIndex][2]); delay(random(50, 200)); setRGB(0, 0, 0); // Off delay(random(20, 100)); } // Strobe effect void strobe(uint8_t red, uint8_t green, uint8_t blue) { for(int i = 0; i = 255) { brightness = 255; increasing = false; } } else { brightness -= 5; if(brightness <= 0) { brightness = 0; increasing = true; } } setRGB((red * brightness) / 255, (green * brightness) / 255, (blue * brightness) / 255); delay(20); } // Police lights effect void policeFlash() { // Red/Blue alternating for(int i = 0; i < 5; i++) { setRGB(255, 0, 0); // Red delay(100); setRGB(0, 0, 0); delay(50); } for(int i = 0; i < 5; i++) { setRGB(0, 0, 255); // Blue delay(100); setRGB(0, 0, 0); delay(50); } } void setup() { Serial.begin(115200); Serial.println("🕺 ESP32-S3 DISCO MODE ACTIVATED! 🪩"); Serial.println("================================="); randomSeed(analogRead(0)); // Seed random number generator setRGB(0, 0, 0); // Start with LED off Serial.println("Get ready to party! 🎉"); delay(1000); } void loop() { Serial.println("🎵 DISCO EFFECT 1: Random Color Flash"); for(int i = 0; i < 20; i++) { randomFlash(); } delay(500); Serial.println("🌈 DISCO EFFECT 2: Rainbow Cycle"); for(int i = 0; i < 180; i++) { rainbow(); } delay(500); Serial.println("⚡ DISCO EFFECT 3: White Strobe"); strobe(255, 255, 255); delay(500); Serial.println("💫 DISCO EFFECT 4: Breathing Purple"); for(int i = 0; i < 50; i++) { breathe(128, 0, 255); } delay(500); Serial.println("🚨 DISCO EFFECT 5: Police Flash"); policeFlash(); delay(500); Serial.println("🎊 DISCO EFFECT 6: Color Strobe Party"); for(int i = 0; i < 5; i++) { int colorIndex = random(0, 10); strobe(discoColors[colorIndex][0], discoColors[colorIndex][1], discoColors[colorIndex][2]); delay(200); } delay(1000); Serial.println("🔄 Restarting disco sequence..."); Serial.println(); }

## Features

- 【Low-power performance】: The AYWHP ESP32-S3 Core development board integrates a 2.4 GHz Wi-Fi and Bluetooth 5 (LE) dual-mode communication module, perfect for Arduino Internet of Things (IoT) projects.
- 【Simple programming and debugging】: The ESP32-S3 module makes it easy to program and burn in your ESP32-S3 board via dual USB Type-C ports, with a choice of USB or UART modes.
- 【Multiple Power Saving Modes】: The ESP S3 development board supports multiple low-power modes, which can be configured according to different application scenarios to provide longer battery life.
- 【Dual download modes】: The ESP S3-1 module supports both USB direct connection download and USB to serial port download, providing more flexibility and convenience.
- 【Diverse connectivity options】: The ESP32-S3-1 supports dual-mode Wi-Fi and Bluetooth 5.0 (LE) connectivity for a wide range of smart devices, making it ideal for Internet of Things (IoT) applications.

## Technical Specifications

| Specification | Value |
|---------------|-------|
| Processor | 240 MHz |
| RAM | LPDDR3 |
| Brand | AYWHP |
| Series | ESP32-S3 Development Board |
| Item model number | YY1-0163 |
| Operating System | Windows 10, Linux, macOS |
| Item Weight | 1.44 ounces |
| Package Dimensions | 5.87 x 3.86 x 1.22 inches |
| Processor Brand | Espressif |
| Number of Processors | 2 |
| Manufacturer | AYWHP |
| ASIN | B0DG8L7MQ9 |
| Country of Origin | China |
| Date First Available | September 6, 2024 |

## Product Details

- **Brand:** AYWHP
- **Model Name:** ESP32-S3 Development Board
- **Ram Memory Installed Size:** 0.5 MB
- **Memory Storage Capacity:** 16 MB
- **CPU Speed:** 240 MHz

## Images

![3 PCS ESP ESP-32-S3 Development Board ESP-32-S3 Module with ESP-1-N16R8 Low Power MCU with Dual-Mode Wi-Fi and Bluetooth Type-C Connector Compatible with Arduino - Image 1](https://m.media-amazon.com/images/I/71lyHntQwyL.jpg)

## Available Options

This product comes in different **Size** options.

## Customer Reviews

### ⭐⭐⭐⭐⭐ Worked great and great upgrade to earlier ESP32 versions
*by G***S on February 16, 2026*

All worked great and the extra memory these utilize is of great benefit when using I2S Audio. Very useful boards.

### ⭐⭐⭐⭐⭐ Was using wrong USB port for 3 months
*by F***S on June 26, 2025*

Took me 3 months to figure out I was trying to upload code with the wrong PORT. DO NOT USE THE COM PORT regardless of what AI other documentation may say, use the USB port. Don't try to do the hold boot button and reset sequence, that won't work. Also the RGB Led won't light up unless you close the jumper connection on the board. I just rubbed the cold solder and bent it in place, but you should heat it up. There are jumpers for other things too. I'm on Mac osx using vscode and cursor with the platform.io extension. platform.io.ini for me is: [env:freenove_esp32_s3_wroom] platform = espressif32 board = lolin_s3 framework = arduino monitor_speed = 115200 upload_protocol = esptool upload_speed = 9600 board_build.flash_size = 2MB board_build.partitions = default.csv upload_flags = --no-stub --baud=9600 build_flags = -D ARDUINO_USB_CDC_ON_BOOT=1 my RGB LED code is: #include <Arduino.h> // RGB LED pin (works on any pin for built-in RGB on ESP32-S3) #define RGB_LED_PIN 48 // Disco effect variables unsigned long lastUpdate = 0; int discoMode = 0; int brightness = 255; bool fadeDirection = true; // Color arrays for disco effects uint8_t discoColors[][3] = { {255, 0, 0}, // Red {0, 255, 0}, // Green {0, 0, 255}, // Blue {255, 255, 0}, // Yellow {255, 0, 255}, // Magenta {0, 255, 255}, // Cyan {255, 128, 0}, // Orange {128, 0, 255}, // Purple {255, 192, 203}, // Pink {0, 255, 128} // Spring Green }; void setRGB(uint8_t red, uint8_t green, uint8_t blue) { neopixelWrite(RGB_LED_PIN, red, green, blue); } // Random color flash void randomFlash() { int colorIndex = random(0, 10); setRGB(discoColors[colorIndex][0], discoColors[colorIndex][1], discoColors[colorIndex][2]); delay(random(50, 200)); setRGB(0, 0, 0); // Off delay(random(20, 100)); } // Strobe effect void strobe(uint8_t red, uint8_t green, uint8_t blue) { for(int i = 0; i < 10; i++) { setRGB(red, green, blue); delay(50); setRGB(0, 0, 0); delay(50); } } // Rainbow cycle void rainbow() { static int hue = 0; // Convert HSV to RGB uint8_t red, green, blue; if(hue < 60) { red = 255; green = hue * 255 / 60; blue = 0; } else if(hue < 120) { red = (120 - hue) * 255 / 60; green = 255; blue = 0; } else if(hue < 180) { red = 0; green = 255; blue = (hue - 120) * 255 / 60; } else if(hue < 240) { red = 0; green = (240 - hue) * 255 / 60; blue = 255; } else if(hue < 300) { red = (hue - 240) * 255 / 60; green = 0; blue = 255; } else { red = 255; green = 0; blue = (360 - hue) * 255 / 60; } setRGB(red, green, blue); hue = (hue + 2) % 360; delay(30); } // Breathing effect void breathe(uint8_t red, uint8_t green, uint8_t blue) { static int brightness = 0; static bool increasing = true; if(increasing) { brightness += 5; if(brightness >= 255) { brightness = 255; increasing = false; } } else { brightness -= 5; if(brightness <= 0) { brightness = 0; increasing = true; } } setRGB((red * brightness) / 255, (green * brightness) / 255, (blue * brightness) / 255); delay(20); } // Police lights effect void policeFlash() { // Red/Blue alternating for(int i = 0; i < 5; i++) { setRGB(255, 0, 0); // Red delay(100); setRGB(0, 0, 0); delay(50); } for(int i = 0; i < 5; i++) { setRGB(0, 0, 255); // Blue delay(100); setRGB(0, 0, 0); delay(50); } } void setup() { Serial.begin(115200); Serial.println("🕺 ESP32-S3 DISCO MODE ACTIVATED! 🪩"); Serial.println("================================="); randomSeed(analogRead(0)); // Seed random number generator setRGB(0, 0, 0); // Start with LED off Serial.println("Get ready to party! 🎉"); delay(1000); } void loop() { Serial.println("🎵 DISCO EFFECT 1: Random Color Flash"); for(int i = 0; i < 20; i++) { randomFlash(); } delay(500); Serial.println("🌈 DISCO EFFECT 2: Rainbow Cycle"); for(int i = 0; i < 180; i++) { rainbow(); } delay(500); Serial.println("⚡ DISCO EFFECT 3: White Strobe"); strobe(255, 255, 255); delay(500); Serial.println("💫 DISCO EFFECT 4: Breathing Purple"); for(int i = 0; i < 50; i++) { breathe(128, 0, 255); } delay(500); Serial.println("🚨 DISCO EFFECT 5: Police Flash"); policeFlash(); delay(500); Serial.println("🎊 DISCO EFFECT 6: Color Strobe Party"); for(int i = 0; i < 5; i++) { int colorIndex = random(0, 10); strobe(discoColors[colorIndex][0], discoColors[colorIndex][1], discoColors[colorIndex][2]); delay(200); } delay(1000); Serial.println("🔄 Restarting disco sequence..."); Serial.println(); }

### ⭐⭐⭐⭐⭐ Perfect.
*by S***O on March 6, 2026*

These ESP32-S3 DevKitC-1 are great. Each of them work exactly like they are supposed to. Will buy again if I need more.

## Frequently Bought Together

- ESP32 ESP32-S3 Development Board AYWHP 3 Pcs ESP32 S3 ESP32-S3-DevKitC Module with WROOM-1-N16R8 Low Power MCU with Dual-Mode Wi-Fi and Bluetooth Type-C Connector Compatible with Arduino
- Freenove Breakout Board for ESP32 / ESP32-S3 WROVER WROOM, Terminal Block Shield HAT with Pin Header, 5V 3.3V Power Outputs, GPIO Status LED
- ELEGOO 120pcs Multicolored Dupont Wire 40pin Male to Female, 40pin Male to Male, 40pin Female to Female Breadboard Jumper Ribbon Cables Kit Compatible with Arduino Projects

---

## Why Shop on Desertcart?

- 🛒 **Trusted by 1.3+ Million Shoppers** — Serving international shoppers since 2016
- 🌍 **Shop Globally** — Access 737+ million products across 21 categories
- 💰 **No Hidden Fees** — All customs, duties, and taxes included in the price
- 🔄 **15-Day Free Returns** — Hassle-free returns (30 days for PRO members)
- 🔒 **Secure Payments** — Trusted payment options with buyer protection
- ⭐ **TrustPilot Rated 4.5/5** — Based on 8,000+ happy customer reviews

**Shop now:** [https://www.desertcart.dk/products/740825759-3-pcs-esp-esp-32-s3-development-board-esp-32](https://www.desertcart.dk/products/740825759-3-pcs-esp-esp-32-s3-development-board-esp-32)

---

*Product available on Desertcart Denmark*
*Store origin: DK*
*Last updated: 2026-05-01*