We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a843652 commit 225eefcCopy full SHA for 225eefc
examples/tests/codecs/test-codec-adpcm/test-codec-adpcm.ino
@@ -11,12 +11,11 @@
11
*/
12
#include "AudioTools.h"
13
#include "AudioTools/AudioCodecs/CodecADPCM.h" // https://github.com/pschatzmann/adpcm
14
-#include "AudioTools/AudioLibs/AudioBoardStream.h"
+//#include "AudioTools/AudioLibs/AudioBoardStream.h" //
15
16
AudioInfo info(44100, 2, 16);
17
SineWaveGenerator<int16_t> sineWave( 32000); // subclass of SoundGenerator with max amplitude of 32000
18
GeneratedSoundStream<int16_t> sound( sineWave); // Stream generated from sine wave
19
-//AudioBoardStream out(AudioKitEs8388V1);
20
//I2SStream out;
21
//AudioBoardStream out(AudioKitEs8388V1);
22
CsvOutput<int16_t> out(Serial);
0 commit comments