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 f5c2c06 commit 6246aafCopy full SHA for 6246aaf
examples/examples-communication/serial/mp3-custom/receive-mp3/receive-mp3.ino
@@ -17,7 +17,8 @@ const int min_percent = 10;
17
const int max_percent = 90;
18
19
AudioBoardStream i2s(AudioKitEs8388V1); // final output of decoded stream
20
-EncodedAudioStream dec(&i2s, new MP3DecoderHelix()); // Decoding stream
+MP3DecoderHelix helix;
21
+EncodedAudioStream dec(&i2s, &helix); // Decoding stream
22
// queue
23
BufferRTOS<uint8_t> buffer(0);
24
QueueStream<uint8_t> queue(buffer);
0 commit comments