hi. I have a question about the arduino robot tempowrite that I want to use mp3 shield to play the music and is it possible to use robot tempowrite programming to change the tempo of the music?
Thankyou
#include <ArduinoRobot.h>
void setup(){
Robot.begin();
Robot.beginSpeaker();//Initialize the sound module
Robot.beginSD();//Initialize the sd card
Robot.playFile("melody.sqm");//Play the original music come with the robot.
Robot.tempoWrite(70);//20 higher than default
}
void loop(){
}