Merge pull request #111 from Serasidis/patch-3

Updates to Serasidis_VS1003B_STM library - Updated the example for using it with the new one SPI library.
This commit is contained in:
Roger Clark 2015-09-09 21:13:17 +10:00
commit 17dbe808d8
1 changed files with 6 additions and 8 deletions

View File

@ -190,15 +190,13 @@ static const unsigned char HelloMP3[] = {
0x00 0x00
}; };
VS1003 player(PC14, PB10, PA8, PA9); // cs_pin, dcs_pin, dreq_pin, reset_pin, SPI channel - defaults to SPI //Un-comment the line with the SPI port you want to use. Default is SPI1 port.
SPIClass spiVS(1); //Create an SPI instance on SPI1 port.
//SPIClass spi(2); //Create an SPI instance on SPI2 port.
//SPIClass spi(3); //Create an SPI instance on SPI3 port.
/* Example of how to use the VS21003 attached to SPI 2 VS1003 player(PC14, PB10, PA8, PA9, spiVS); // cs_pin, dcs_pin, dreq_pin, reset_pin, SPI channel - defaults to SPI
VS1003 player(PC14, PB10, PA8, PA9,SPIClass(2)); // cs_pin, dcs_pin, dreq_pin, reset_pin, use SPI 2
*/
/* Example of how to use the VS21003 attached to SPI 2
VS1003 player(PC14, PB10, PA8, PA9,SPIClass(3)); // cs_pin, dcs_pin, dreq_pin, reset_pin, use SPI 3
*/
void setup () void setup ()
{ {
Serial.begin(9600); Serial.begin(9600);