I have a project I am helping a friend out with..
And after all the prototyping/development stuff was completed.. and the project handed off..
he came back asking if I could load all the micro sd cards for him, as it was a PITA to do so on a MAC? (which I found very odd that MAC users have to jump through hoops to load audio clips to an SD card...but anyways)
I dont have a lot of experience/exposure to all the known SD card issues out there.. my experience has shown me (for my projects).. they just work most of the time.
I used a range of cards order via ebay over the years.. or scavenged from old phones/devices..etc and ranges from 128MB, 512MB.. 1GB, 2GB and 4GB cards... all without issues.
My current project uses an Arduino and the DFPlayer mini board..
Al my sd card just work.. doesnt matter which one I use. (even the 4GB one)..
The DFPlayers state they work with up to 32GB cards..
The link my buddy says he ordered the cards from is this:
However the cards I have on hand that he dropped off.. do NOT have the HC logo on it..
Kinda just has a BIGGER Micro SD logo on it.. with a tiny 2GB text.. and tahst it (along with arrow graphic)
I put the SD card in my PC..
Odd thing is.. (I have tried two cards so far).. each time I put one on, I get a prompt saying this card/drive needs to be formatter before it can be used.. do you want to format. YES/NO?
I click yes.. it formats..
I load the files to the card (in the order I need as that is a DFPlayer requirement)
I put the card in the DFPlayer..
Loads and see the card fine (as the code below shows it would throw an error if not working)
Serial.println(F("Initializing DFPlayer ... (May take 3~5 seconds)"));
if (!myDFPlayer.begin(myDFPlayerSerialConn)) {
Serial.println(F("Unable to begin:"));
Serial.println(F(" - Please recheck the connection!"));
Serial.println(F(" - Please insert the SD card!"));
while (true);
}
Serial.println(F("DFPlayer Mini online."));
Which outputs the DFPlayer Mini Online.
But no audio plays. The DFPlayer led light doesnt even come one.
I do nothing to the set-up.. but swap out for one of MY sd cards... press the button on the Nano to reset it.. works as expected...
I'm not sure what options I have here any more?
I have attempted to format the SD card via Windows format.. to both FAT and FAT32 (no change)..
I used disk manager (no change)..
I used an external utility tool to format... (no change)
I dont know if there is a setting to work with cards.. a specific way these should be formatted in order for them to be used?
Anybody got some advice on what to try?