Arduino Powered Singing Monkey
by PHS_Engineering in Circuits > Arduino
161 Views, 0 Favorites, 0 Comments
Arduino Powered Singing Monkey

Every five seconds it sings for three and a half seconds.
Supplies
- Relay
- Alligator clip
- Wires
Get Your Things
First you are going to need to open up the monkey. then you need to get tons of wires a relay an Arduino and bread board.
Wires

wire the bread board up according to the image
Connecting the Monkey

open up the monkey and find the power switch. cut the wires and sauter on new wires to the old leads.
Code
int relay = 13;
void setup(){
pinMode(relay,OUTPUT);
}
void loop(){
digitalWrite(relay,HIGH) ;
delay(3500);
digitalWrite(relay,LOW) ;
delay(4000);
}
Done
You are now done and have a singing monkey!