├── .gitignore ├── Doxyfile ├── MusicIcon.jpg ├── SFEMP3Shield.html ├── SFEMP3Shield ├── Examples │ ├── FilePlayer │ │ └── FilePlayer.ino │ ├── MP3ButtonPlayer2 │ │ └── MP3ButtonPlayer2.ino │ ├── MP3Shield_Library_Demo │ │ └── MP3Shield_Library_Demo.ino │ └── WebPlayer │ │ └── WebPlayer.ino ├── SFEMP3Shield.cpp ├── SFEMP3Shield.h ├── SFEMP3ShieldConfig.h ├── SFEMP3Shieldmainpage.h └── keywords.txt ├── SdFat ├── library.properties └── src │ ├── BlockDriver.h │ ├── FatLib │ ├── ArduinoFiles.h │ ├── ArduinoStream.h │ ├── BaseBlockDriver.h │ ├── FatApiConstants.h │ ├── FatFile.cpp │ ├── FatFile.h │ ├── FatFileLFN.cpp │ ├── FatFilePrint.cpp │ ├── FatFileSFN.cpp │ ├── FatFileSystem.h │ ├── FatLib.h │ ├── FatLibConfig.h │ ├── FatStructs.h │ ├── FatVolume.cpp │ ├── FatVolume.h │ ├── FmtNumber.cpp │ ├── FmtNumber.h │ ├── StdioStream.cpp │ ├── StdioStream.h │ ├── bufstream.h │ ├── fstream.cpp │ ├── fstream.h │ ├── ios.h │ ├── iostream.h │ ├── istream.cpp │ ├── istream.h │ ├── ostream.cpp │ └── ostream.h │ ├── FreeStack.h │ ├── MinimumSerial.cpp │ ├── MinimumSerial.h │ ├── SdCard │ ├── SdInfo.h │ ├── SdSpiCard.cpp │ ├── SdSpiCard.h │ ├── SdSpiCardEX.cpp │ ├── SdioCard.h │ ├── SdioCardEX.cpp │ └── SdioTeensy.cpp │ ├── SdFat.h │ ├── SdFatConfig.h │ ├── SpiDriver │ ├── DigitalPin.h │ ├── SdSpiBaseDriver.h │ ├── SdSpiDriver.h │ ├── SdSpiESP8266.cpp │ ├── SdSpiSAM3X.cpp │ ├── SdSpiSTM32F1.cpp │ ├── SdSpiTeensy3.cpp │ ├── SoftSPI.h │ └── boards │ │ ├── AvrDevelopersGpioPinMap.h │ │ ├── BobuinoGpioPinMap.h │ │ ├── GpioPinMap.h │ │ ├── LeonardoGpioPinMap.h │ │ ├── MegaGpioPinMap.h │ │ ├── SleepingBeautyGpioPinMap.h │ │ ├── Standard1284GpioPinMap.h │ │ ├── Teensy2GpioPinMap.h │ │ ├── Teensy2ppGpioPinMap.h │ │ └── UnoGpioPinMap.h │ └── SysCall.h ├── history.md ├── license ├── plugins ├── admxleft.053 ├── admxmono.053 ├── admxrght.053 ├── admxster.053 ├── admxswap.053 ├── eq5.053 ├── patchefl.053 ├── patches.053 ├── patchesd.053 ├── patchesf.053 ├── patchesl.053 ├── pcm.053 ├── pshift.053 ├── rtmidi.053 ├── vs_plg_to_bin.bat └── vs_plg_to_bin.pl └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | /html 2 | -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/Doxyfile -------------------------------------------------------------------------------- /MusicIcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/MusicIcon.jpg -------------------------------------------------------------------------------- /SFEMP3Shield.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SFEMP3Shield.html -------------------------------------------------------------------------------- /SFEMP3Shield/Examples/FilePlayer/FilePlayer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SFEMP3Shield/Examples/FilePlayer/FilePlayer.ino -------------------------------------------------------------------------------- /SFEMP3Shield/Examples/MP3ButtonPlayer2/MP3ButtonPlayer2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SFEMP3Shield/Examples/MP3ButtonPlayer2/MP3ButtonPlayer2.ino -------------------------------------------------------------------------------- /SFEMP3Shield/Examples/MP3Shield_Library_Demo/MP3Shield_Library_Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SFEMP3Shield/Examples/MP3Shield_Library_Demo/MP3Shield_Library_Demo.ino -------------------------------------------------------------------------------- /SFEMP3Shield/Examples/WebPlayer/WebPlayer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SFEMP3Shield/Examples/WebPlayer/WebPlayer.ino -------------------------------------------------------------------------------- /SFEMP3Shield/SFEMP3Shield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SFEMP3Shield/SFEMP3Shield.cpp -------------------------------------------------------------------------------- /SFEMP3Shield/SFEMP3Shield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SFEMP3Shield/SFEMP3Shield.h -------------------------------------------------------------------------------- /SFEMP3Shield/SFEMP3ShieldConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SFEMP3Shield/SFEMP3ShieldConfig.h -------------------------------------------------------------------------------- /SFEMP3Shield/SFEMP3Shieldmainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SFEMP3Shield/SFEMP3Shieldmainpage.h -------------------------------------------------------------------------------- /SFEMP3Shield/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SFEMP3Shield/keywords.txt -------------------------------------------------------------------------------- /SdFat/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/library.properties -------------------------------------------------------------------------------- /SdFat/src/BlockDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/BlockDriver.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/ArduinoFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/ArduinoFiles.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/ArduinoStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/ArduinoStream.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/BaseBlockDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/BaseBlockDriver.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/FatApiConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/FatApiConstants.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/FatFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/FatFile.cpp -------------------------------------------------------------------------------- /SdFat/src/FatLib/FatFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/FatFile.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/FatFileLFN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/FatFileLFN.cpp -------------------------------------------------------------------------------- /SdFat/src/FatLib/FatFilePrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/FatFilePrint.cpp -------------------------------------------------------------------------------- /SdFat/src/FatLib/FatFileSFN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/FatFileSFN.cpp -------------------------------------------------------------------------------- /SdFat/src/FatLib/FatFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/FatFileSystem.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/FatLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/FatLib.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/FatLibConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/FatLibConfig.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/FatStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/FatStructs.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/FatVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/FatVolume.cpp -------------------------------------------------------------------------------- /SdFat/src/FatLib/FatVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/FatVolume.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/FmtNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/FmtNumber.cpp -------------------------------------------------------------------------------- /SdFat/src/FatLib/FmtNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/FmtNumber.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/StdioStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/StdioStream.cpp -------------------------------------------------------------------------------- /SdFat/src/FatLib/StdioStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/StdioStream.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/bufstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/bufstream.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/fstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/fstream.cpp -------------------------------------------------------------------------------- /SdFat/src/FatLib/fstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/fstream.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/ios.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/iostream.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/istream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/istream.cpp -------------------------------------------------------------------------------- /SdFat/src/FatLib/istream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/istream.h -------------------------------------------------------------------------------- /SdFat/src/FatLib/ostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/ostream.cpp -------------------------------------------------------------------------------- /SdFat/src/FatLib/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FatLib/ostream.h -------------------------------------------------------------------------------- /SdFat/src/FreeStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/FreeStack.h -------------------------------------------------------------------------------- /SdFat/src/MinimumSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/MinimumSerial.cpp -------------------------------------------------------------------------------- /SdFat/src/MinimumSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/MinimumSerial.h -------------------------------------------------------------------------------- /SdFat/src/SdCard/SdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SdCard/SdInfo.h -------------------------------------------------------------------------------- /SdFat/src/SdCard/SdSpiCard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SdCard/SdSpiCard.cpp -------------------------------------------------------------------------------- /SdFat/src/SdCard/SdSpiCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SdCard/SdSpiCard.h -------------------------------------------------------------------------------- /SdFat/src/SdCard/SdSpiCardEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SdCard/SdSpiCardEX.cpp -------------------------------------------------------------------------------- /SdFat/src/SdCard/SdioCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SdCard/SdioCard.h -------------------------------------------------------------------------------- /SdFat/src/SdCard/SdioCardEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SdCard/SdioCardEX.cpp -------------------------------------------------------------------------------- /SdFat/src/SdCard/SdioTeensy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SdCard/SdioTeensy.cpp -------------------------------------------------------------------------------- /SdFat/src/SdFat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SdFat.h -------------------------------------------------------------------------------- /SdFat/src/SdFatConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SdFatConfig.h -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/DigitalPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/DigitalPin.h -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/SdSpiBaseDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/SdSpiBaseDriver.h -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/SdSpiDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/SdSpiDriver.h -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/SdSpiESP8266.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/SdSpiESP8266.cpp -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/SdSpiSAM3X.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/SdSpiSAM3X.cpp -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/SdSpiSTM32F1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/SdSpiSTM32F1.cpp -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/SdSpiTeensy3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/SdSpiTeensy3.cpp -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/SoftSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/SoftSPI.h -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/boards/AvrDevelopersGpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/boards/AvrDevelopersGpioPinMap.h -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/boards/BobuinoGpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/boards/BobuinoGpioPinMap.h -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/boards/GpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/boards/GpioPinMap.h -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/boards/LeonardoGpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/boards/LeonardoGpioPinMap.h -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/boards/MegaGpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/boards/MegaGpioPinMap.h -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/boards/SleepingBeautyGpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/boards/SleepingBeautyGpioPinMap.h -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/boards/Standard1284GpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/boards/Standard1284GpioPinMap.h -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/boards/Teensy2GpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/boards/Teensy2GpioPinMap.h -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/boards/Teensy2ppGpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/boards/Teensy2ppGpioPinMap.h -------------------------------------------------------------------------------- /SdFat/src/SpiDriver/boards/UnoGpioPinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SpiDriver/boards/UnoGpioPinMap.h -------------------------------------------------------------------------------- /SdFat/src/SysCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/SdFat/src/SysCall.h -------------------------------------------------------------------------------- /history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/history.md -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/license -------------------------------------------------------------------------------- /plugins/admxleft.053: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/plugins/admxleft.053 -------------------------------------------------------------------------------- /plugins/admxmono.053: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/plugins/admxmono.053 -------------------------------------------------------------------------------- /plugins/admxrght.053: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/plugins/admxrght.053 -------------------------------------------------------------------------------- /plugins/admxster.053: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/plugins/admxster.053 -------------------------------------------------------------------------------- /plugins/admxswap.053: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/plugins/admxswap.053 -------------------------------------------------------------------------------- /plugins/eq5.053: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/plugins/eq5.053 -------------------------------------------------------------------------------- /plugins/patchefl.053: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/plugins/patchefl.053 -------------------------------------------------------------------------------- /plugins/patches.053: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/plugins/patches.053 -------------------------------------------------------------------------------- /plugins/patchesd.053: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/plugins/patchesd.053 -------------------------------------------------------------------------------- /plugins/patchesf.053: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/plugins/patchesf.053 -------------------------------------------------------------------------------- /plugins/patchesl.053: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/plugins/patchesl.053 -------------------------------------------------------------------------------- /plugins/pcm.053: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/plugins/pcm.053 -------------------------------------------------------------------------------- /plugins/pshift.053: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/plugins/pshift.053 -------------------------------------------------------------------------------- /plugins/rtmidi.053: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/plugins/rtmidi.053 -------------------------------------------------------------------------------- /plugins/vs_plg_to_bin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/plugins/vs_plg_to_bin.bat -------------------------------------------------------------------------------- /plugins/vs_plg_to_bin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/plugins/vs_plg_to_bin.pl -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madsci1016/Sparkfun-MP3-Player-Shield-Arduino-Library/HEAD/readme.md --------------------------------------------------------------------------------