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: SDFileSystem mbed-src mbed
Fork of SDFileSystem_HelloWorld by
main.cpp
00001 #include "mbed.h" 00002 #include "wavplayer.h" 00003 #include "SDFileSystem.h" 00004 00005 SDFileSystem sd(PTD6, PTD7, PTD5, PTC8, "sd"); // MOSI, MISO, SCK, CS 00006 00007 int main() 00008 { 00009 WavPlayer myWavPlayer; 00010 myWavPlayer.play_wave("/sd/micro/guns.wav"); // 8 bit sample size 00011 myWavPlayer.play_wave("/sd/micro/cain.wav"); 00012 myWavPlayer.play_wave("/sd/micro/link.wav"); 00013 myWavPlayer.play_wave("/sd/micro/rock.wav"); 00014 myWavPlayer.play_wave("/sd/micro/dune.wav"); 00015 } 00016
Generated on Thu Jul 14 2022 23:59:02 by
1.7.2
