Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: 4DGL-uLCD-SE DebounceIn SDFileSystem mbed-rtos mbed wave_player
Fork of WavePlayer_HelloWorld by
main.cpp
- Committer:
- 4180_1
- Date:
- 2013-01-24
- Revision:
- 1:5b8e223e983d
- Parent:
- 0:bdbd3d6fc5d5
- Child:
- 2:82f454fd6efa
File content as of revision 1:5b8e223e983d:
#include "mbed.h"
#include "SDFileSystem.h"
#include "wave_player.h"
SDFileSystem sd(p5, p6, p7, p8, "sd"); //SD card
AnalogOut DACout(p18);
wave_player waver(&DACout);
int main()
{
FILE *wave_file;
printf("\n\n\nHello, wave world!\n");
wave_file=fopen("/sd/sample.wav","r");
waver.play(wave_file);
fclose(wave_file);
}
