---
product_id: 676605398
title: "- 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: "₱1733"
currency: PHP
in_stock: true
reviews_count: 13
category: "Aywhp"
url: https://www.desertcart.ph/products/676605398-esp-esp-32-s3-development-board-esp-32-s3-module
store_origin: PH
region: Philippines
---

# Dual-core 240 MHz CPU Dual-mode Wi-Fi & Bluetooth 5.0 Multiple low-power modes - 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:** ₱1733
**Availability:** ✅ In Stock

## Summary

> 🚀 Power your IoT future with the ESP32-S3 — where speed meets smart connectivity!

## Quick Answers

- **What is this?** - 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?** ₱1733 with free shipping
- **Is it available?** Yes, in stock and ready to ship
- **Where can I buy it?** [www.desertcart.ph](https://www.desertcart.ph/products/676605398-esp-esp-32-s3-development-board-esp-32-s3-module)

## 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

- • **Optimized Battery Life:** Multiple configurable low-power modes extend your device’s uptime for real-world IoT applications.
- • **Versatile I/O & Memory:** Packed with 34 GPIO pins, 16 MB flash, and 512 KB RAM to power complex, memory-hungry projects.
- • **Blazing Fast Dual-Core Power:** Experience up to 240 MHz processing speed for seamless AIoT and Arduino projects.
- • **Plug & Play USB-C Programming:** Dual USB Type-C ports enable hassle-free programming and debugging with flexible USB or UART modes.
- • **Next-Gen Wireless Connectivity:** Stay effortlessly connected with integrated 2.4 GHz Wi-Fi and Bluetooth 5.0 (LE) dual-mode support.

## Overview

The AYWHP ESP-32-S3 Development Board features a dual-core 240 MHz Xtensa LX7 CPU, 16 MB flash memory, and 512 KB RAM, integrated with dual-mode 2.4 GHz Wi-Fi and Bluetooth 5.0 (LE). Designed for Arduino compatibility, it offers dual USB Type-C ports for easy programming and debugging, plus multiple low-power modes to maximize battery efficiency. With 34 GPIO pins and diverse interfaces, it’s the ultimate platform for advanced AIoT and smart device development.

## Description

Description：The AYWHP S3 Development Board, equipped with the ESP32-S3 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: 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 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 ESP 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 ESP S3 module makes it easy to program and burn in your 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 ESP32-S3 module supports both USB direct connection download and USB to serial port download, providing more flexibility and convenience.
- 【Diverse connectivity options】: The ESP32-S3 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 |
|---------------|-------|
| ASIN | B0DG8L1YW9 |
| Best Sellers Rank | #127 in Single Board Computers (Computers & Accessories) |
| Brand | AYWHP |
| Built-In Media | 1 X ESP32-S3 Development Board |
| CPU Speed | 2.4E+2 MHz |
| Compatible Devices | Arduino boards |
| Connectivity Technology | Bluetooth, Wi-Fi |
| Customer Reviews | 4.1 out of 5 stars 234 Reviews |
| Manufacturer | AYWHP |
| Memory Storage Capacity | 16 MB |
| Mfr Part Number | YY1-0163 |
| Model Name | ESP S3 Development Board |
| Model Number | YY1-0163 |
| Operating System | Arduino Bootloader |
| Processor Brand | Espressif |
| Processor Count | 2 |
| Processor Speed | 2.4E+2 MHz |
| RAM Memory Installed | 512 KB |
| RAM Memory Technology | LPDDR |
| Ram Memory Installed Size | 512 KB |
| Total Usb Ports | 2 |
| Warranty Description | NOT |
| Wireless Compability | 802.11n |

## Product Details

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

## Images

![- 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/61rTfYLsb5L.jpg)
![- 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 2](https://m.media-amazon.com/images/I/61MFaIlO36L.jpg)
![- 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 3](https://m.media-amazon.com/images/I/71plZyKQxcL.jpg)
![- 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 4](https://m.media-amazon.com/images/I/71YDTMYvvuL.jpg)
![- 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 5](https://m.media-amazon.com/images/I/71qlJnkvXlL.jpg)

## 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(); }

### ⭐⭐⭐⭐ OpenAI GPT 5.2 test of ESP-IDF on Ubuntu: toolchain bloat, config opacity, USB instability
*by R***S on February 18, 2026*

4 stars — hardware has potential, but ESP-IDF on Ubuntu was brittle (toolchain bloat, config opacity, USB/serial instability) Bought: 3 PCS ESP-32-S3 Dev Board (ESP-1-N16R8, USB-C), AYWHP. I’m giving 3 stars because the boards themselves seem capable (ESP32-S3 + external flash/PSRAM), but in practice the Espressif development workflow on Ubuntu was far more fragile and noisy than it should be for “development boards,” especially if you want a terminal-only workflow. What I ran into (Ubuntu + USB-C cable via powered hub) 1) Toolchain sprawl / “activation required” On Ubuntu you don’t just “install tools and go.” You typically must source an ESP-IDF environment script (export.sh) every session to get the right toolchain and esptool in PATH. If you don’t, basic commands appear to be “missing.” 2) Very noisy builds; hard to see the signal idf.py build outputs pages of boilerplate (component lists, Kconfig reports, CMake diagnostics). It buries the few lines that matter (flash args, errors, actual config). 3) Build state tied to absolute paths (folder-copy pitfalls) ESP-IDF’s build/ directory caches project path state. If you copy an example project directory, you can get “configured for X not Y” errors unless you wipe build/ and reconfigure. This is an easy foot-gun. 4) Config opacity / confusing conflicts I saw flash-size mismatch warnings (chip detected one size, image header used another) and Kconfig “choice” default conflicts even after editing sdkconfig. It’s not transparent what settings actually “win” unless you already know ESP-IDF’s Kconfig machinery. 5) USB/serial brittleness At times the board wouldn’t connect (“no serial data received”), then it would flash, then monitoring would end in brownout reset messages and host-side errors like device ready but returned no data / disconnected. I was not using Wi-Fi or BLE—this was USB cable only. Practical hints (if you still want to use these) Expect to run source esp-idf/export.sh in every shell before using idf.py/esptool. When copying projects, delete build/ before configuring. If flash size is misdetected, you may need to set it explicitly (and verify the final write-flash args). If you see brownouts, suspect power/USB behavior even on a powered hub; these boards can be sensitive. Bottom line The boards may be fine hardware for the price, but the ESP-IDF experience on Ubuntu felt brittle and bloated, with configuration that’s harder to audit than it should be and USB/serial behavior that wasn’t stable in my setup. If you’re a beginner expecting “plug in and build,” be warned.

## Frequently Bought Together

- ESP32 ESP32-S3 Development Board AYWHP 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
- 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
- Freenove Breakout Board for ESP32 / ESP32-S3 WROVER WROOM, Terminal Block Shield HAT with Pin Header, 5V 3.3V Power Outputs, GPIO Status LED

---

## 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.ph/products/676605398-esp-esp-32-s3-development-board-esp-32-s3-module](https://www.desertcart.ph/products/676605398-esp-esp-32-s3-development-board-esp-32-s3-module)

---

*Product available on Desertcart Philippines*
*Store origin: PH*
*Last updated: 2026-05-24*