-
Notifications
You must be signed in to change notification settings - Fork 115
Open
Description
I have these memory cards:
Also, I tried different libraries. This and this. Memory cards of 1GB and 256MB do not work on both libraries. At the same time, SdFat initializes these memory cards and works successfully with them, which suggests that the problem is in the VS1053 library itself. Any ideas on how to make everything work?
Code for SdFat version:
#include <SPI.h>
#include <SdFat.h>
#include <vs1053_SdFat.h>
SdFat sd;
vs1053 MP3player;
void setup() {
Serial.begin(9600);
sd.begin(SdSpiConfig(9, SPI_HALF_SPEED));
MP3player.begin();
MP3player.setVolume(10, 10);
MP3player.playMP3("001.mp3");
}
void loop() {
delay(1000);
}
Code for this library from player_simple.ino example.
Metadata
Metadata
Assignees
Labels
No labels
