ESP32Cube
ESP32 development tutorials, project cases, and technical sharing

Audio Playback with HSC001 and ESP32
This post is an introduction to using the HSC001 module for audio playback. It details the necessary components, module features, pin distribution, hardware connections, and code implementation for setting up and playing audio files.

ESP32 PWM Output
This article details how to utilize ESP32's PWM feature to manage LED brightness, covering components, code, and testing.

SY8303 Synchronous Step Down Regulator DCDC Circuit Design
This post introduces the design of the DCDC chip SY8303 circuit, covering the schematic and PCB drawing processes, along with precautions and tips.

ESP32 Dual-Core Usage
The ESP32's dual-core architecture enhances performance and multitasking capabilities. In this blog post, we will explore how to configure the ESP32's dual-core setup using the Arduino platform.

ESP32 Voice Record and upload
Hardware INMP441  SCK -> GPIO 14 (I2S Clock) WS -> GPIO 15 (I2S Word Select) SD -> GPIO 32 (I2S Data) ESP32 GND -> INMP441 GND ESP32 VIN (3...

How to Play Internet Radio Stations with ESP32
This post provides a step-by-step guide of play Internet radio on an ESP32-S3.

ESP32 communicate with I2C devices
Hardware connection On the ESP32 microcontroller, there are several pairs of GPIO pins that can be used for I2C communication. The default I2C pins on the ESP32 are GPIO 21 (SDA) and GPIO 22 (SCL),...

How to Connect ESP32 to Wi-Fi?
There are serval ways to connect ESP32 to Wi-Fi, in this article we will intorduce it. Provide Wi-Fi ID and password in the code This is the simplest way, but the disadvatage of this way is user n...

Develop ESP32 in VScode with PlatformIO
With the aid of VScode and PlatformIO we can create and edit ESP32 projects to improve the efficiency quite a lot. It includes: - Code highlight. - Find the reference function with right click on it...