Introduction: Monkey Automatons!



This instructable will guide you through the process of building a set of automaton monkeys in the style of “Hear No Evil, See No Evil, Speak No Evil.” Our design ends with two monkeys reacting at the push of a button located in the Speak No Evil Monkeys eye. This design can be extended to include the third monkey or to include separate triggers to control each monkey.
This project was conducted within the class "Things That Think" at the University of Colorado at Boulder.

Step 1: Parts and Materials

Monkeys

The monkeys that we used in this project were purchased from Oriental Trading Company here http://bit.ly/fUu07l in a set of one dozen. You can start with just one monkey. When it works, you can go up to 3 or even more (think of “eat no evil” or “do no evil” for instance :) )

Arduino Uno

To build some logic and control the behaviours, Arduino Uno was used. We recommend using Arduino Mega if you want to use more monkeys and/or devices. The Arduino Uno has built in support for two servos but more can be added if the servo inputs are spliced and placed into the correct pins on the Arduino board. A better description and documentation on the Arduino Uno can be found here http://arduino.cc/en/Main/arduinoBoardUno .
Speaker

The speaker we used for this project was a simple 1½ inch speaker. We used the speaker for the speak no evil monkey. It can be used to play notes or some pre-recorded sounds. We experimented with a smaller speaker but found that anything smaller than 1½ inches did not provide an acceptable output volume.

Fishing Line

We first thought of controlling the movements of the monkeys with gears. We then decided to use fishing lines to make these movements more natural.

Rigid Plastic Tubing

When the fishing line is inserted inside a monkey, there is some resistance to the movement because of the friction. A plastic tube was used to cover the fishing line and to protect its movement.

Wooden Dowels

These will be needed to connect the monkeys to the platform. We won’t give precise instructions for these since they will depend on your monkey. Just make sure the dowel will fit inside the monkey (bottom up!) and that you drill a hole in the top of the platform large enough to accommodate your dowel!

Momentary Switch

This is basically a button that triggers the programmed movements. A touch sensor could also be used in place of a switch.

Resistors (1k and 10k Ohm)

One of each resistance is required for our project. Resistors are necessary to control the behaviour of the electric circuit. The exact placement for these resistors will be explained further in the instructable. Bigger or more ambitious projects will require more or different resistors and different circuits.

Servo x2

For simplicity we only made two monkeys move. Both of these monkey were attached to their own servo. This helps to have the monkeys move independently from each other.

Ladyada Motor Shield

Arduino on its own cannot power itself or the servos without a USB connection or A/C Adapter. To create a more portable automaton we built a Motor Shield as described in http://www.ladyada.net/make/mshield/make.html and we connected it to the Arduino. We then connected an independent power supply and the servos to the Motor Shield.

Battery Pack

During the development phase, the power was supplied through a USB cable connected to a computer. In the production phase, we used a pack of 3 AA batteries.

Platforms

… And a platform to sit the monkeys on! We built our platforms as four sided wooden boxes that were open on the sides. The main platform that housed the Arduino, Motor Shield, and Battery Pack was slightly larger than the other two. It would also be possible to build a single platform for all three monkeys but we felt individual platforms increased the scalability of the project for future additions. 

Step 2: Designing the Circuit

In this diagram we can see the battery pack is connected to the Motor Shield by correctly attaching the +/- outputs to the screw-down terminal. The Motor Shield provides two three-pin connections to attach up to two servos simultaneously.

The circuit for the switch requires three separate wires. The first (yellow) wire is connected to a pin on the switch and to the +5V pin slot on the Motor Shield. The second (red) wire requires an in-line 1k Ohm resistor and is connected to the appropriate input pin (A0 - A5) on the Motor Shield and a pin not associated to the first wire on the switch (remember on switches like this, pins opposite each other are associated). The third (blue) wire requires an in-line 10k Ohm resistor and is connected to a pin on the switch that is associated with the red wire and to the ground (Gnd) on the Motor Shield.

When this switch is in the “off” position the current will run from the +5V on the Motor Shield, through the yellow wire, and back out through the grounded wire. When the button is pushed or switched “on” the current will run from the +5V, through the yellow wire, and choose the path of least resistance through the red wire. This will trigger whatever action we have assigned that particular input to do through our code (we will cover the code in a later step).

Step 3: Making the Monkeys

For each monkey, 2 fishing lines are used to connect the arms to the face (eyes, ears or mouth) through a plastic tube.

A third line is connecting the first two behind the monkeys head. This line is then routed through the top of the platform where the monkey sits and is connected to the servo. When setting up the monkey, platform, and servo some adjustment may have to be made in the length of this third line to get the most realistic movement from the monkey.

To pull the arms down, we added some weight to make use of gravity. The weights we used were tire alignment weights because they were easy to shape but any kind of weight (like fishing weights) would work.

Finally the switch and connecting wires were inserted in the head of the speak no evil monkey and positioned behind the eye. In our project this switch controls all the movements and the speaker. We ended up tearing out the original paper eye that is on the monkey for testing but later replaced the eye with googly eyes on all the monkeys.

Step 4: The Platforms and Servos

As we mentioned before our platforms were designed for scalability. To that end we built three separate platforms, one for each monkey. The platform that housed the Arduino Board and Batter Pack was bigger than the other two. All three platforms were designed with four walls, leaving the sides open to work inside the platform and to connect the servo to the Arduino.

In the top of each platform we drilled two holes, one to fit a dowel that was inserted in the monkey to hold it in place and another behind it to route the wires and fishing line through the platform and either to the Arduino or the servo.

To make our servo move the distance required to bring the monkeys hands up to his face we needed to cut a plastic arm that was connected to the servo to increase the movement distance. You may or may not need this depending on the servo type and the monkey that you are using.

We used a very technical and complicated procedure to hold the servo to the base of the platform. A strip of duct tape was folded in half, placed over the servo, and screwed down to the base.

Step 5: The Code

The code we wrote for this project is fairly straight forward. We feel that the best way to demonstrate the code is by viewing it. We have attached a monkey.txt file as well as the monkey.pde (native format for Arduino) that are both fully commented and can be viewed. The comments in the code make the code self explanatory.  Both files can be found in the attached images and files section for this step.

Step 6: Bringing It All Together

So now we have a completed circuit board, some monkeys, and some platforms. It’s time to put all of this together. The first step is to insert the dowel into the monkey then glue the dowel down into the top of the platform. Once this is done route the fishing line and wires through the hole behind the monkey that was drilled out for this purpose.

We suggest putting together the monkey that will be on the platform containing the circuit first. For our project, this was the See No Evil Monkey. This will allow you to test your circuitry (although you should have been testing the entire way!) and make sure at least one is working before moving on to the others. Trust us, once one is working the others are a lot easier!

So now the monkey is glued on to the platform, the wires are connected to the Motor Shield, and the fishing line is tied to the servo. It’s time to press that eye and see if it all works! Fingers crossed!



Success (we hope for you too)! If not then go back and check your wiring and your code. 40% of the problem in this project will come from crossed wires or incorrect wiring and another 40% from code issues. The other 10% will be from ghosts.

Once the first monkey is working correctly simply plug the other monkeys into the Arduino, adjust your code to accommodate the new monkeys, and away you go!