Talking Tom

Description

     Guys, In this project we are going to make a Talking Tom by Interfacing ISD1820 Voice Recorder Module with Arduino. Although the ISD1820 Voice Recorder Module has button that can used to directly record and playback Okey,let's make it.
      
Components Required

 1. Arduino UNO   * 1
 2. ISD1820 Voice Recorder Module   * 1
 3. Jumper Wires  * 1

 Circuit Diagram











Program

int Rec = 11;
int Play = 13;


void setup()
  pinMode(Rec, OUTPUT);
  pinMode(Play, OUTPUT);
}


void loop()
{
  digitalWrite(Rec, HIGH);
  delay(10000);
  digitalWrite(Rec, LOW);
  delay(5000);
  digitalWrite(Play, HIGH);
  delay(100);
  digitalWrite(Play, LOW);
  delay(10000);
}