I'm trying to use the rMP3 from rogue robotics (
http://www.roguerobotics.com/products/electronics/rmp3) with the WiringS play shield and I'm not able to make it work. I'm just trying a example code and nothing. I've installed the library.
Here is the code I use:
#include <NewSoftSerial.h>
#include <RogueMP3.h>
NewSoftSerial rmp3_serial(6, 7);
RogueMP3 rmp3(rmp3_serial);
void setup()
{
Serial.begin(9600);
rmp3_serial.begin(9600);
rmp3.sync();
rmp3.playfile("/test.mp3");
}
void loop()
{
}
I've tried to specified the pinMode of pin 6 and 7 in setup() as INPUT and OUTPUT but that didn't helped.
I've tried to connect the rMP3 directly with the Wiring S, still nothing.
I've tried to use a Arduino board just to see, but can't make it work.
I think the my rMP3 is not broke because when I plug it into my usb I can ear a little noise that suggest that currant as pass brought it.
I think it's more of serial problem.
Does anyone ever use the rMP3 with a Wiring S?