Skip to content

Commit eb43c3e

Browse files
committed
Cleaning up user output.
1 parent 31a9070 commit eb43c3e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/Beginner/Audio_Playback/Audio_Playback.ino

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ void setup()
2828
while (!msd.connect())
2929
delay(1000);
3030

31-
Serial.println("Mounting USB device...");
31+
Serial.println("Mounting USB device ...");
3232
int const rc_mount = usb.mount(&msd);
3333
if (rc_mount)
3434
{
@@ -37,7 +37,7 @@ void setup()
3737
return;
3838
}
3939

40-
Serial.println("Opening audio file..");
40+
Serial.println("Opening audio file ...");
4141

4242
// 16-bit PCM Mono 16kHz realigned noise reduction
4343
FILE * f = fopen("/USB_DRIVE_NAME/AUDIO_SAMPLE.wav", "r+");
@@ -48,10 +48,10 @@ void setup()
4848
return;
4949
}
5050

51-
// Crucial (from mBed)
51+
Serial.println("Playing audio file ...");
5252
wav_play_rl(f, dac1, false);
5353

54-
// Cleanup.
54+
Serial.println("Cleaning up ...");
5555
fclose(f);
5656
}
5757

0 commit comments

Comments
 (0)