Skip to content

Commit 74f3418

Browse files
committed
send-mp3.ino
1 parent b2f0b49 commit 74f3418

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

examples/examples-communication/serial/mp3-custom/send-mp3/send-mp3.ino

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,8 @@
88

99
#include "AudioTools.h"
1010
#include "AudioTools/AudioCodecs/CodecMP3Helix.h"
11-
#include "AudioTools/AudioLibs/AudioBoardStream.h"
1211

1312
URLStream url("ssid", "password"); // or replace with ICYStream to get metadata
14-
AudioBoardStream i2s(AudioKitEs8388V1); // final output of decoded stream
1513
StreamCopy copier(Serial1, url); // copy url to decoder
1614
// pins
1715
const int flowControlPin = 17;

examples/examples-communication/serial/mp3-xon-xoff/send-mp3/send-mp3.ino

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,8 @@
66
*/
77

88
#include "AudioTools.h"
9-
#include "AudioTools/AudioCodecs/CodecMP3Helix.h"
10-
#include "AudioTools/AudioLibs/AudioBoardStream.h"
119

1210
URLStream url("ssid", "password"); // or replace with ICYStream to get metadata
13-
AudioBoardStream i2s(AudioKitEs8388V1); // final output of decoded stream
1411
StreamCopy copier(Serial1, url); // copy url to decoder
1512
// xon/xoff flow control
1613
const char xon = 17;

examples/examples-communication/serial/mp3/send-mp3/send-mp3.ino

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,8 @@
1010

1111
#include "AudioTools.h"
1212
#include "AudioTools/AudioCodecs/CodecMP3Helix.h"
13-
#include "AudioTools/AudioLibs/AudioBoardStream.h"
1413

1514
URLStream url("ssid", "password"); // or replace with ICYStream to get metadata
16-
AudioBoardStream i2s(AudioKitEs8388V1); // final output of decoded stream
1715
HardwareSerial MP3Serial(1); // define a Serial for UART1
1816
StreamCopy copier(MP3Serial, url); // copy url to decoder
1917
// pins

0 commit comments

Comments
 (0)