ISD1280 Recorder Player Audio BOARD use it as stand alone or with Arduino or other devices. Make a gift or use it for practical gifts or usage. I just have fun with this simple board that is less than $2.00 on eBay! Download info: http://www.elabpeers.com/isd1820-voic... Arduino sketch modification (just copy/paste this part):
void setup()
{
pinMode(Rec, OUTPUT);
pinMode(Play, OUTPUT);
digitalWrite(Rec, HIGH);
delay(10000);
digitalWrite(Rec, LOW);
delay(5000);
digitalWrite(Play, HIGH);
}
void loop()
{
// digitalWrite(Rec, HIGH);
// delay(10000);
// digitalWrite(Rec, LOW);
// delay(5000);
digitalWrite(Play, HIGH);
delay(100);
digitalWrite(Play, LOW);
delay(100);
// delay(10000);
}
HAVE FUN!