Boite musicale

Ayééééééééé j'ai trouvé, enfin j'ai surtout trouvé la solution sur le net !!!
Sur ce forum d'ailleur, pour ceux que ça intéresse : voici mon code :

#include <SoftwareSerial.h>
#include <MP3Player_KT403A.h>

// Note: You must define a SoftwareSerial class object that the name must be mp3, 
//       but you can change the pin number according to the actual situation.
SoftwareSerial mp3(6, 7);

void setup()
{
    mp3.begin(9600);
    Serial.begin(9600); 
    delay(100);
   
    SelectPlayerDevice(0x02);       // Select SD card as the player device.
    SetVolume(0x1E);                // Set the volume, the range is 0x00 to 0x1E.


   
    PlayLoop();
    
}

void loop(){
}

Alors il faut juste relier le RX du GROVE MP3 au pin 7 de la UNO (dans mon cas)
Et dès que la carte uno est alimentée, la piste 1 se lance puis tourne en boucle, parfait pour ma boite musicale!

Merci à tout ceux qui m'ont répondu.
A+