ESP32-audioI2S icon indicating copy to clipboard operation
ESP32-audioI2S copied to clipboard

ESP32-audioI2S Internal DAC - No Audio

Open jolly-git opened this issue 1 year ago • 2 comments

Hi

I have tried to build https://github.com/schreibfaul1/ESP32-audioI2S/tree/master/examples/Internal%20DAC But no audio output, Please help. #include "Arduino.h" #include "WiFiMulti.h" #include "Audio.h"

Audio audio(true, 3); WiFiMulti wifiMulti; String ssid = "J234353"; String password = "gfhhhhsd";

void setup() { Serial.begin(115200); WiFi.mode(WIFI_STA); wifiMulti.addAP(ssid.c_str(), password.c_str()); wifiMulti.run(); if(WiFi.status() != WL_CONNECTED){ WiFi.disconnect(true); wifiMulti.run(); } audio.setVolume(12); // 0...21

audio.connecttohost("http://mp3.ffh.de/radioffh/hqlivestream.mp3"); //  128k mp3

}

void loop() { audio.loop(); }

void audio_info(const char *info){ Serial.print("info "); Serial.println(info); }

I am using esp32 board package vesrion 3.0.5 image

jolly-git avatar Oct 12 '24 08:10 jolly-git

esp 32 driver version

idf-release_v5.1-33fbade6

jolly-git avatar Oct 12 '24 08:10 jolly-git

In IDF V5 (Adruino V3...) there is no I2S support from Espressif for the internal DAC. The last working version is Arduino 2.0.17

schreibfaul1 avatar Oct 12 '24 12:10 schreibfaul1

[README] ESP32-audioI2S ⚠️ This library only works on multi-core ESP32 chips like the ESP32-S3. It does not work on the ESP32-S2 or the ESP32-C3 ⚠️

vednildip avatar Nov 05 '24 08:11 vednildip

This issue is stale because it has been open for 30 days with no activity.

github-actions[bot] avatar Dec 06 '24 02:12 github-actions[bot]

This issue was closed because it has been inactive for 14 days since being marked as stale.

github-actions[bot] avatar Dec 22 '24 02:12 github-actions[bot]