PEZ Robo Dispenser Using Arduino

PEZ Robo Dispenser (1)

I was strolling down the candy aisle at the supermarket and there it was:  the PEZ dispenser, conjuring up sweet (literally) childhood memories served up by my favorite cartoon characters in squarish sugary pellets.  Then, all of a sudden, an LED went off in my head.  PEZ meets Arduino.

In this age of over-automation,  where robots do everything short of scratching nostrils, I figured that my sugar-dispensing childhood toy, The PEZ, also deserves automation.

PEZ Robo Dispenser (1)

HOW IT WORKS

Basically, I am using an ultrasonic distance sensor to decide if someone is within 20 cm from the sensor which is attached next to PEZ.  If so, Arduino will turn the servo 180 degrees back pulling with it the ear of Mickey Mouse. When Mickey’s head is pulled back, a PEZ pellet is pushed out of the mouse’s mouth.  Yummy.

After a few seconds (5 seconds in my Arduino sketch) the servo returns back to 90 degrees,  closing Mickey’s mouth and waiting for the next person in line to serve.

Step 2: Wiring Robo PEZ

SERVO

  • Black —> Arduino GND pin
  • Red —> Arduino 5V pin
  • White/Yellow —> Arduino 9 pin

ULTRASONIC SENSOR

  • GND pin —> Arduino GND pin
  • VCC pin —> Arduino 5V pin
  • TRIG pin —> Arduino 12 pin
  • ECHO pin —> Arduino 13 pin

Step 3: Linking the servo to the PEZ

Please take note how I placed the servo against the breadboard and which side is up and which is down. This is important if you wish to use my code as it.

1) Before screwing the horn to the servo, make sure the servo is turned all the way away from the bread board until it can turn no more.  You can use the servo horn without a screw to turn the servo. This is BACK position 180 aka BACK/OPEN position (see figure). You can screw the horn now as shown in figure.PEZ Robo Dispenser back (1)

2) Now rotate the horn until it’s in the 90 position  aka UP/CLOSED (see figure). Using a firm wire, bend one end into a hook and insert into the servo’s horn. Wrap the other end around Mickey Mouse’s ear.

Step 4: The Arduino Robo PEZ Sketch

/*  I have attached the Arduion Ultrasonic library to this step. This is the library that I am using in this project. Save it to Ultrasonic.rar then extract it to path:  Arduino\libraries\Ultrasonic. There are other libraries and they should work but some code modification maybe required.

I am placing this code in the public domain.
*/
——————————-

#include <Servo.h>
#include <Ultrasonic.h>

#define TRIGGER_PIN  12 // Ultrasonic sensor TRIGGER
#define ECHO_PIN     13 // Ultrasonic sensor ECHO
#define DISTANCE 20   // in Centimeters
#define WAITING 5000 // in milliseconds so this is 5 second.
#define SERVO_PIN 9
#define CLOSE_POS 90 // servo in CLOSE/UP position
#define OPEN_POS 180 // servo in OPEN/BACK position

Ultrasonic ultrasonic(TRIGGER_PIN, ECHO_PIN);
Servo myservo;  // create servo object to control the PEZ servo

Read more: PEZ Robo Dispenser Using Arduino

Leave a Comment

Your email address will not be published. Required fields are marked *