# esp32s3麦克风喇叭 **Repository Path**: xtwc/esp32s3-microphone-speaker ## Basic Information - **Project Name**: esp32s3麦克风喇叭 - **Description**: 使用esp-idf 5.0的一个测试 基于MAX98357a 和 inmp441 - **Primary Language**: Unknown - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2025-08-28 - **Last Updated**: 2025-08-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ESP32-S3 and MAX98357 The code shows how to play music using ESP32-S3 and MAX98357 in IDF v5.0. # Wiring ```c ESP32S3_GPIO_1 MAX98357_BCLK ESP32S3_GPIO_2 MAX98357_DIN ESP32S3_GPIO_3 MAX98357_LRC ``` # music file convert You can your own music file to o.pcm by this line. ```bash ffmpeg -i music.mp3 -f u8 -ar 44100 -ac 1 o.pcm ```