Introduction: Arduino Powered Singing Monkey
Every five seconds it sings for three and a half seconds.
Supplies
- Relay
- Alligator clip
- Wires
Step 1: 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.
Step 2: Wires
wire the bread board up according to the image
Step 3: Connecting the Monkey
open up the monkey and find the power switch. cut the wires and sauter on new wires to the old leads.
Step 4: Code
int relay = 13;
void setup(){
pinMode(relay,OUTPUT);
}
void loop(){
digitalWrite(relay,HIGH) ;
delay(3500);
digitalWrite(relay,LOW) ;
delay(4000);
}
Step 5: Done
You are now done and have a singing monkey!






