Close
0%
0%

Automatic Print Ejector

A device for removing your completed prints by punching them with a boxing glove

Similar projects worth following
The purpose of this device is to remove finished objects from the printer in the most amusing Rube Goldbergish way possible. The original plan was to have a boot swing down and kick the part off the bed, but we decided that a boxing glove would be more hilarious. It is inspired by similar things from old cartoons.

Its made entirely from printed parts and things we had laying around. The printer being victimized is an OpenBeam Kossel Pro.

Mechanics

I started off by quickly designing some linkages in Solidworks. The holes fit some little ball bearings we had laying around. Everything is held together with M3 bolts. We had an assortment of different sized bearings, so I had to design parts with a couple different hole sizes. All of the ones posted online, though, are made to fit 9.5mm outer diameter bearings. The holes also include an extra 0.3mm to account for the tolerances of printing.

This was a fun project because most components took less than 30 minutes to print. I could be designing the next thing while the last thing was printing. There was no waiting. In some cases its better to plan everything out at the beginning before you build it, but it can be more fun to just dive in and figure things out as you go along. That's what I did with this project. I ended up with a lot of trashed parts, but who cares.

Everything was printed in PLA since I was not worried about anything getting warm. Print settings:

  • 0.2 mm Layers
  • 2 Perimeters
  • 30% Infill

In order to actuate the scissor mechanism, I added a gear to the end of one of the linkages. I also found an old stepper motor to drive it. I could have used a hobby servo, but the stepper is what we had and its got more torque anyways. It also conveniently had a small gear already on the shaft.

This is the bracket I designed to hold the motor and everything. The plan was that the entire device would jut out from the side of the printer, supported by a length of OpenBeam. As you can see, engineering is an iterative process.

At this point it became apparent that only driving one linkage wouldn't work. The entire assembly would just rotate down instead of extending outward. Both of the end linkages need to be forced together or pulled apart in order for the mechanism to work. I added a second gear with inward facing teeth. This way it would be driven in the opposite direction, forcing the linkages together.

Since the gears have different radiuses, there are slightly different gear ratios and one linkage moves slightly farther than the other. This makes the whole thing rotate downward a few degrees when it extends. Oh well. Its good enough.

The boxing glove model was found through googling and I modified it in Blender with a square hole in the bottom to connect it to the arm. This glove turned out to be the most difficult thing to print. Not because it is a complicated shape, but purely because of a series of unfortunate coincidental issues with the printer (some of which involved fire). When it finally did print, the support structure under the fingers failed, so it doesn't have fingertips. I decided I don't care since you won't see that side much anyways.

This is when I ran into the next problem. How do you keep the boxing glove horizontal? I designed a fork shaped thing that would slide over the bolts in the center of the linkages. This makes sure that whatever is attached to the end stays parallel to the mechanism.

Last step was to attach the beam to the bottom and bolt it onto the side of the printer.

I had to design some corner brackets as well in order to connect the beam to the printer's frame. The bed is in the way so I could not use the official OpenBeam T-Brackets. Fortunately I remembered to put some extra nuts in the beams when I was building the printer. Because the thing is mounted perpendicularly on one side, it punches the objects straight into the tower on the opposite side. Eventually I will make some 30 degree / 60 degree corner brackets so it will punch in the right direction.

The 24 cm beam is just barely long enough. The print head narrowly misses the glove while doing the auto-calibration routine and bumps into it a little bit when printing all the way out to the edges.

The finished product:

Electronics

Wiring was pretty straightforward. I salvaged an old Pololu stepper driver from one of our spare...

Read more »

  • 1 × NEMA 17 Stepper Motor
  • 1 × Polulu Stepper Motor Driver
  • 1 × OpenBeam 24 cm Extrusion
  • 34 × 623ZZ Ball Bearings 3mm ID, 9.5mm OD
  • 14 × M3 x 12 Bolts

View all 14 components

  • LASERS

    Tyler Anderson09/05/2015 at 22:44 0 comments

    Good news, everyone. The boxing glove is now laser guided. This means it can detect when the object has been successfully removed, and automatically start the next print!

    I added an attachment to one of the bed clamps to hold the laser diode. The little arm lets you adjust the height and angle, so you can get the beam perfectly parallel to the surface. This bed clamp also includes our modifications for mounting FSRs. As usual, designs are on Thingiverse.

    On the other side is the photo cell, taped to binder clip. If the laser hits the photocell, we know that the object is gone.

    The laser is wired directly to one of the auxiliary 5 volt power pins on the Brainwave, so it runs continuously. In the future I might want to hook it up to a digital output so it can be turned on and off as needed. The photo cell is hooked up to the spare thermistor connector on the Brainwave.

    Parts

    Code

    Two new gcode commands have been introduced. M809 is for testing. It simply reads the analog value from the photo cell. G43 is the fun one. It tries a couple times to punch the part off. If it succeeds, the print continues. If not, it gives up and waits for the user to take action. Heres the interesting part of the code:

    // Punch repeatedly until object is ejected, or give up after a while and pause printing
    void punchAndLaser(int punchCount, float speed)
    {
      int x = 0;
      bool bedClear = false;
      while (x < punchCount and not bedClear) {
        punch(speed);
        x++;
        if (analogRead(TEMP_1_PIN) < LIGHT_THRESHOLD) {
          bedClear = true;
        }
      }
      if (bedClear) {
        SERIAL_ECHOLN("Success!");
      } else {
        SERIAL_ECHOLN("Failure :(");
        Stop();
      }
    }

    Usage

    Add the following line to your custom end gcode. G43 accepts 2 parameters. C is the number of times it will attempt to punch before giving up. F is the punch speed, the same as G42.

    G43 C3 F300
    To chain several prints together, you will need to generate gcode files for each and concatenate them together. This is easy enough from the command line.

    $ cat object1.gcode object2.gcode > object1and2.gcode

  • Fixed Mounting Angle

    Tyler Anderson08/15/2015 at 18:55 0 comments

    Minor update, I finally designed some proper 60 degree brackets for mounting to the side of the Kossel Pro. This way, things are not punched directly into the tower on the opposite side. It also gives more room so that the fist doesn't get in the way of the end effector. Files are on Thingiverse. Heres pictures.

View all 2 project logs

Enjoy this project?

Share

Discussions

suicidal.banana wrote 05/22/2015 at 14:42 point

Thats just brilliant haha, well played, skull for u

  Are you sure? yes | no

davedarko wrote 05/20/2015 at 22:28 point

How did I miss that??

  Are you sure? yes | no

Alex Rich wrote 05/20/2015 at 22:08 point

Hell yeah, nice project!

  Are you sure? yes | no

Similar Projects

Does this project spark your interest?

Become a member to follow this project and never miss any updates