You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,everyone:
I use ESP32 wroom32e to connect with the MAX98357, and have connected the speaker, but there has been no sound, it has been bothered for a long time, please what will be the reason, thank you.
Hello,everyone:
I use ESP32 wroom32e to connect with the MAX98357, and have connected the speaker, but there has been no sound, it has been bothered for a long time, please what will be the reason, thank you.
The following figure is as follows,
#define I2S_DOUT 25
#define I2S_BCLK 27
#define I2S_LRC 26
const char *url = "http://downsc.chinaz.net/Files/DownLoad/sound1/201906/11582.mp3";
void setup(){
play();
}
void play(){
audio.setPinout(I2S_BCLK, I2S_LRC, I2S_DOUT);
audio.setVolume(21);
audio.connecttohost(url);
}
void loop(){
audio.loop();
}
The text was updated successfully, but these errors were encountered: