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 31a9070 commit eb43c3eCopy full SHA for eb43c3e
examples/Beginner/Audio_Playback/Audio_Playback.ino
@@ -28,7 +28,7 @@ void setup()
28
while (!msd.connect())
29
delay(1000);
30
31
- Serial.println("Mounting USB device...");
+ Serial.println("Mounting USB device ...");
32
int const rc_mount = usb.mount(&msd);
33
if (rc_mount)
34
{
@@ -37,7 +37,7 @@ void setup()
37
return;
38
}
39
40
- Serial.println("Opening audio file..");
+ Serial.println("Opening audio file ...");
41
42
// 16-bit PCM Mono 16kHz realigned noise reduction
43
FILE * f = fopen("/USB_DRIVE_NAME/AUDIO_SAMPLE.wav", "r+");
@@ -48,10 +48,10 @@ void setup()
48
49
50
51
- // Crucial (from mBed)
+ Serial.println("Playing audio file ...");
52
wav_play_rl(f, dac1, false);
53
54
- // Cleanup.
+ Serial.println("Cleaning up ...");
55
fclose(f);
56
57
0 commit comments