hariprasath513
Published

Talking Tom Cloned

It repeats your voice.

BeginnerShowcase (no instructions)4,230
Talking Tom Cloned

Things used in this project

Story

Read more

Schematics

Wiring

DIY

Code

the same one in the content /don't get confused

Arduino
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);
}  

Credits

hariprasath513
1 project • 0 followers
Contact

Comments

Please log in or sign up to comment.