Search found 7 matches

by CobaltEcho
Wed Aug 30, 2023 3:01 am
Forum: General Discussion
Topic: Is is possible to use a ESP32 WROOM Dev board as an audio player using SD Reader, Wav files, an onboard decoders?
Replies: 7
Views: 5110

Re: Is is possible to use a ESP32 WROOM Dev board as an audio player using SD Reader, Wav files, an onboard decoders?

There's actually a fair amount of line-level codecs as well (more than there are ones with integrated amps, actually), the PCM5102 and ES9023 are examples. (If you use one of those, I'd suggest the PCM5102 as it doesn't need a MCLK.) I was hoping I could use the SD pin on the MAX98357 to just turn ...
by CobaltEcho
Wed Aug 30, 2023 2:46 am
Forum: ESP32 Arduino
Topic: Guru Meditation Error: Core 1 panic'ed
Replies: 2
Views: 2107

Guru Meditation Error: Core 1 panic'ed

(ESP32 Dev Board) Im trying to read wav files off an SD card (and play them), but keep running into this error: And contrary to the Serial Monitor, I do have three short wav files on the SD card. Starting setup... SD Card initialized. I2S output initialized. Root directory opened. No WAV files found...
by CobaltEcho
Sun Aug 20, 2023 2:04 pm
Forum: General Discussion
Topic: Is is possible to use a ESP32 WROOM Dev board as an audio player using SD Reader, Wav files, an onboard decoders?
Replies: 7
Views: 5110

Re: Is is possible to use a ESP32 WROOM Dev board as an audio player using SD Reader, Wav files, an onboard decoders?

For playing wav files you can use a MAX98357A I2S Decoder : https://www.youtube.com/watch?v=cnBDMpMSeQI I was going that route, but those have their own built in amps for a 3w speaker or something. I need an un-amplified signal so I can send it to my TPA3118 amp to drive a larger speaker. https://w...
by CobaltEcho
Sun Aug 20, 2023 2:02 pm
Forum: General Discussion
Topic: Is is possible to use a ESP32 WROOM Dev board as an audio player using SD Reader, Wav files, an onboard decoders?
Replies: 7
Views: 5110

Re: Is is possible to use a ESP32 WROOM Dev board as an audio player using SD Reader, Wav files, an onboard decoders?

It's not needed for either; the downside is that the internal DAC is only 8 bit so the audio will sound quite crusty. You will need some kind of amplifier before the speaker as well; the internal DAC isn't really intended to drive large loads. Thanks for the info, I think I'm ok with crusty because...
by CobaltEcho
Sun Aug 20, 2023 1:54 pm
Forum: General Discussion
Topic: error: 'SD_SCK_MHZ' was not declared in this scope
Replies: 1
Views: 959

error: 'SD_SCK_MHZ' was not declared in this scope

I'm newer to coding and this is on of my first real projects (ESP32 Dev), I've figured a bunch of stuff out, but I'm banging my head agasinst the wall on this one! I can't seem to get rid of the error: error: 'SD_SCK_MHZ' was not declared in this scope It'd (supposedly) defined on line 8 of the main...
by CobaltEcho
Sun Aug 13, 2023 11:54 pm
Forum: ESP-ADF
Topic: How to decode MP3 on ESP32 ?
Replies: 3
Views: 46265

Re: How to decode MP3 on ESP32 ?

Did you ever figure this out? I've been trying to do the exact same thing!
by CobaltEcho
Sun Aug 13, 2023 10:44 pm
Forum: General Discussion
Topic: Is is possible to use a ESP32 WROOM Dev board as an audio player using SD Reader, Wav files, an onboard decoders?
Replies: 7
Views: 5110

Is is possible to use a ESP32 WROOM Dev board as an audio player using SD Reader, Wav files, an onboard decoders?

My first ESP32 project. I'm trying to make a basic audio player that plays the Wav files from a SD card reader strait to a speaker.

All the examples I'm finding seem to be using an external DAC. I know this is needed for mp3's, but didn't think so for Wav files.