ADPCM and WAV Files
At the very beginning of my Arduino AudioTools project, I was providing a codec for WAV files. It was just handling PCM audio, so it just needed to read or write the header and then could just copy the audio data. In my last blog, I was writing that the ADPCM codec is perfectly suited for encoding and decoding audio on microcontrollers. So the next natural step is to provide a proper ADPCM support for Read more…