VS1053 Board Pins

Hallo,

I have a VS1053 Board on an arduino Uno, but I do not finde out the right pins for the sketch
I use the sketch from this link, and it always says that the VS1053 is not found.

I change the Pins to:

#define SHIELD_CS     6      // VS1053 chip select pin (output)
#define SHIELD_DCS    7      // VS1053 Data/command select pin (output)
#define DREQ          2      // VS1053 Data request, ideally an Interrupt pin
#define CARDCS        9      // Card chip select pin

The exact Board what I have I´v made a picture attached.

Can you help me with the pins for the board.
thx
druckgott

I have now testet a example from vs1053_SdFat libary and give me the pinouts out in the serial Monitor:

MP3_XCS 6
MP3_XDCS 7
MP3_DREQ 2
MP3_DREQINT 0
MP3_RESET 8
SD_SEL 9
MP3_XCS 6
Das waren die Pins
F_CPU = 16000000
Free RAM = 911 Should be a base line of 1028, on ATmega328 when using INTx
Error code: 6 when trying to start MP3 player
Warning: patch file not found, skipping.
Use the "d" command to verify SdCard can be read
Arduino vs1053 Library Example:
courtesy of Bill Porter & Michael P. Flaga
COMMANDS:
[1-9] to play a track

There it works to play an MP3, but if I put the pins to the other Sketch
#define SHIELD_CS 6 // VS1053 chip select pin (output)
#define SHIELD_DCS 7 // VS1053 Data/command select pin (output)
#define DREQ 2 // VS1053 Data request, ideally an Interrupt pin
#define CARDCS 9 // Card chip select pin
#define RESET 8 // VS1053 reset pin (output)

Then it dosn´t work and it do not found the modul.
But pip sound will come!

I get it working:

#define SHIELD_CS 6 // VS1053 chip select pin (output)
#define SHIELD_DCS 7 // VS1053 Data/command select pin (output)
#define DREQ 2 // VS1053 Data request, ideally an Interrupt pin
#define CARDCS 9 // Card chip select pin
#define RESET 8 // VS1053 reset pin (output)

Adafruit_VS1053_FilePlayer musicPlayer = Adafruit_VS1053_FilePlayer(RESET, SHIELD_CS, SHIELD_DCS, DREQ, CARDCS);

Don´t know why it now works