---
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: "₹ 2294"
currency: INR
in_stock: true
reviews_count: 13
category: "Aywhp"
url: https://www.desertcart.in/products/676605398-esp-esp-32-s3-development-board-esp-32-s3-module
store_origin: IN
region: India
---

# 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:** ₹ 2294
**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?** ₹ 2294 with free shipping
- **Is it available?** Yes, in stock and ready to ship
- **Where can I buy it?** [www.desertcart.in](https://www.desertcart.in/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 | #107 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.2 out of 5 stars 233 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(); }

### ⭐⭐⭐⭐⭐ up & running in minutes with Arduino IDE
*by D***S on November 18, 2025*

These are great. Hooked them up to my Linux desktop and connected to them using the Arduino IDE. They work great and I've already used them to do things like scan local wifi ssids and more. Up and running in minutes

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

---

*Product available on Desertcart India*
*Store origin: IN*
*Last updated: 2026-05-11*