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: mbed SDFileSystem
MusicPlayer.cpp
00001 /* 00002 * Mbed class that creates a music player using the VS1053 + SD breakout 00003 * Created by Priunsh Nagru and Rahul Maran 00004 */ 00005 00006 MusicPlayer::MusicPlayer(PinName sclk, PinName miso, PinName mosi, PinName cs, PinName rst, PinName xdcs, PinName sdcs, PinName dreq) : 00007 _spi(mosi, miso, sclk), _cs(cs), _rst(rst), _xdcs(xdcs), _sdcs(sdcs), _dreq(dreq) { 00008 _cs = 1 00009 } 00010 00011
Generated on Wed Jul 13 2022 03:20:06 by
