Hi,
I'm french ... so excuse for my broken english...
I'm trying to make a playlist with my uno and mp3 sparkfun shield...
So i'ved mount the librery (SFMP3Shield and FAT32) and runed the examples, and everythings all right.
Now I trie to code by my self to make a playlist of 3 mp3 (please indulgence )
#include <SPI.h>
#include <SdFat.h>
#include <SdFatUtil.h>
#include <SFEMP3Shield.h>
SdFat sd;
SFEMP3Shield MP3player;
void setup() {
 Serial.begin(115200);
 //start the shield
 sd.begin(SD_SEL, SPI_HALF_SPEED);
 MP3player.begin();
}
//playlist
void loop() {
 delay(100);
 MP3player.playTrack(25);
 if (MP3player.isPlaying()==0){
  MP3player.stopTrack();
 }
 delay(100);
 MP3player.playTrack(28);
 if (MP3player.isPlaying()==0){
  MP3player.stopTrack();
 }
 delay(100);
 MP3player.playTrack(32);
 if (MP3player.isPlaying()==0){
  MP3player.stopTrack();
 }
}
It work but not exactely as I like... traks does'nt run in the right order ...
Would you help me please
Tell me if you need more information.