Printed It: Parametric Hex Key Holder

Desktop 3D printing is an incredible technology to be sure, but it’s not a cure-all. If you’re interested in making something in large numbers, or if production speed is a concern, 3D printing probably isn’t what you’re looking for. But on the flip side, if you want to make a few highly specialized or customized objects, desktop 3D printing represents an absolute revolution in capability for the individual hacker and maker.

In our ongoing mission to prove that desktop 3D printing isn’t just a novelty, we keep a close eye out for printable objects which play to the strengths of the technology. You won’t find any benchmarks or dust collectors here; everything featured in Printed It is a bona fide practical object. An ideal entry into this series is something that you wouldn’t need to print more than a few times, isn’t easily sourced or made via traditional means, and if possible, offers some form of customization which makes it more suitable to the individual’s needs than what’s commercially available.

Not every object we feature hits all of these marks, but this parametric hex key holder designed by [Daniel Leitner] absolutely does. This object was created to address a problem that we imagine most Hackaday readers share: taming an ever-growing collection of hex keys. What’s more, this design is something of an open source success story. It’s an idea that passed through the hands of multiple community members, becoming more refined and functional as it went. Even if you don’t personally need to wrangle some unruly hex keys, this object is a fascinating look at how 3D printing and the community that has sprouted up around it is truly evolving the process of going from concept to execution.

Made-to-Order Design

Somewhere along the line it was decided that every kit, be it an entertainment center or a laser cutter, would include a handful of hex keys. So pretty soon you’re drowning in the things, but of course you never quite have the makings of a complete set and invariably you’ll have duplicates of certain popular sizes. Since folks like us have trouble getting rid of anything in the first place, they just end up filling some dark and dusty drawer until there’s enough of them that they start planning an insurrection.

To help quell the uprising, [Daniel] leveraged the parametric capabilities of OpenSCAD to create a fully custom holder for your collection of hex keys. By entering in the various sizes and number of hex keys you have into an array at the top of the script, his code will spit out a printable model that fits your exact specifications. So if for example you need to hold a half-dozen 2.5 mm hex keys, this design has got you covered.

In a particularly nice touch, the script will even deboss the sizes of the hex keys right into the holder so there’s no doubt about which one is which. While admittedly a minor detail, this is an excellent example of the power of OpenSCAD, and is something that would be difficult to recreate with more traditional CAD tools.

Refining the Concept

While he’s responsible for the parametric OpenSCAD code, [Daniel] didn’t actually come up with the original design for the hex key holder. That honor goes to [Alex Rich], who created a “static” version of the holder a couple of years back. That version was well suited for moving your store-bought hex key sets over to a slightly more ergonomic holder, but lacked any customization and relied on a printed (as in, on paper) label for the top to show which slot was for which key.

Render of original hex holder design.

That initial design was quite popular, and pretty soon [Alex] started getting requests for custom versions. He tried to accommodate the requests and put out different variations to the core design, but it was a losing battle. There’s simply too many permutations for one person to keep updating the design for each person’s scenario. He had put out the design because he thought others might find it interesting, not to take on a part-time job.

[Daniel] saw the situation and thought it would be a perfect application for OpenSCAD. He recreated the basics of the design: a disc-shaped holder with various sized openings around the periphery, but also made some critical improvements beyond the parametric aspect. For one, the original design required support material inside the groove, but the new OpenSCAD version uses an angled face on the top side to remove this requirement with no impact on functionality.

In other communities, this might be considered a “rip-off” and kick off some sort of flame war, but not here. [Alex] not only appreciated the work that went into the OpenSCAD version of his design, but now actively points it out to anyone who asks him for a custom version of the original holder.

Printing Your Own

Since this is a customizable design, the first step is opening it up in OpenSCAD and making your modifications at the top of the file. You can enter whatever sizes you wish, but be aware there doesn’t seem to be any error checking in place. So for example if you enter in a size of 2.2 mm instead of 2.5 mm, nothing is going to stop you. The code is also surprisingly complex, so don’t be surprised if it takes up to a minute or two for OpenSCAD to generate your STL.

Once you have your STL the design is a very easy print, and relatively fast. You can use higher layer heights to speed things up, but if you’re using the parametric version with the integrated sizes, the text might come out poorly. I printed it at 0.15 mm which struck a nice balance between surface detail and speed, and the holder finished in just under an hour and a half.

After printing you need to provide either a rubber band or a suitable sized O-ring to fit into the grove. In both the original and parametric versions of the holder, the holes for each key are made loose enough that they won’t be retained from friction alone. The tension from the rubber band or O-ring is what actually holds everything in, so that the grip of the holder doesn’t degrade over time like it would be if it just used tight-fitting holes. In practice I found that O-rings work better than the rubber bands, even though the only ones I could find locally are actually much thinner than what the design calls for. When I tried with the rubber bands the keys had a tendency to get stuck on insertion, but it will certainly work if you can’t find O-rings big enough.

Work with What You Have

Critics will say that the shape of this hex holder makes it uniquely suitable for traditional manufacturing: use a lathe to cut the O-ring grove into a piece of round stock, and then put it on the drill press to make the individual key holes. You’d lose the key sizes written on the side, but it would be faster to produce and much stronger than a piece of plastic. While all that’s true, we’re talking about thousands of dollars of equipment and the dedicated workshop to hold it all versus a cheap 3D printer in a hacker’s apartment.

The point isn’t that 3D printing is always the only, or even best, way to produce these designs. But it’s absolutely the most approachable and affordable way to do it, and goes a long way towards democratizing the creation of custom physical objects.

22 thoughts on “Printed It: Parametric Hex Key Holder

      1. You reminded me of something I saw years ago, but had forgotten. (Maybe it was on HaD)
        Someone took a hex wrench and ground 3 faces off it to make a driver for screws with the triangular
        hole in the top. (Like those found holding cheap toys together)

  1. I had a thought about Benchy yesterday, that I wish instead of the little tugboat it was a useful item, a household gadget, tool, something with universal appeal. That way after you’re done printing to isolate what issues to solve, you can give the ‘thing’ away to someone and they’d be all, “Yeah, this’ll be handy.” Rather than the huge armada of plastic tugboats ending up in the trash.

    Something like the above gadget. Something with real value.

      1. But what does being parametric accomplish?

        Now you just need another tool (specific computer software and a 3D printer) to handle the model so you can print a trivial piece of plastic. Meanwhile, if you really needed one in a pinch, you’d take any old piece of plastic and drill a bunch of holes in it, using drill bits of whatever size you please, negating the need for generating particular sized holes in software.

        1. I’ve wanted to learn OpenSCAD for a while, and this is a simple way to learn programmatic object design, nice when you have a real-world item to understand the logic.

          Parametric allows you to input parameters (three 5mm values, 6mm, 7mm, 8mm, 9mm, 10mm) and have it do the work of hole sizes, offset spacing and labeling, etc. Basically, what computers are good at, and humans aren’t.

          Any solution requires some input to get an output. This solution requires a 3d printer, and freely available software.

          Your solution requires a drill, suitable drill-able material, and specific drill bits of each size (hell, those bits will cost several factorial more than the ~8 cents in PLA, ABS or PETG you’d use printing), so if you don’t have that? If you needed one in a pinch, you could use a piece of duct tape and a sharpie. Unless you don’t have duct tape or a sharpie, then you could use a box…. unless… (insert iterative regression here..)

          Now, who’s got a solution to storing hex keys using a banana, an Olive Garden take-out container, an LED flippy and a spare HDMI connector? Extra Points if the design is solar powered.

  2. I support the lofty goal of this series–

    “In our ongoing mission to prove that desktop 3D printing isn’t just a novelty, we keep a close eye out for printable objects which play to the strengths of the technology.”

    One of the weaknesses of the technology is that is utilizes plastic that generally isn’t sourced from recycled materials. So, 3-D printed doodads like this are missing an opportunity to create a re-use of existing waste materials.

    If you have a set of drill bits, the same thing could be made from just about any scrap waste material by drilling a series of holes that match the diameters of the hex bits. I’m afraid this project is still an example of trying to find a use for a device that melts plastic into shapes. Better applications of 3-D printing that would speak to the mission of this series would result in shapes that cannot be easily reproduced with simple hand or power tools.

    1. Nice to see you didn’t bother reading the whole post. What are you supposed to do if you don’t have a drill press or even a dedicated place to work? You can get a 3D printer for $150 now that can fit in even the smallest one-room apartments.

      As for the recycled material, that’s a bizarre claim. Not only is most filament made of corn and biodegradable, you can readily set up a system were old prints are ground up and re-used as raw material. So it’s really the perfect technology if your goal is using recycled materials.

        1. So if an apartment dweller only had the room/budget for one tool, you’d suggest the subtractive drill press and its array of bits that can accomplish a single task (quickly) over an additive manufacturing machine that needs no accessories other than filament to make (slowly) nearly anything that can be imagined?

          Is this a serious suggestion? To me this is clear evidence of a mentality that just can’t move on from the old ways.

      1. Corn has the same issue as corn ethanol: food is really made with fossil fuels, from fertilizers to fuels and electricity to refine it. It takes a barrel of oil to make an equivalent amount of PLA, or thereabouts.

        As for recycling old prints: how much energy are you going to use to chop it up and re-form it into filament, and then re-extrude it? Guess where that is going to come from…

        1. It’s kinda like, people keep going on about how we should ban plastic bags and use canvas bags instead.

          Turns out, the canvas bag uses 40 times more oil to make, so if you bought the plastic bag and re-used it three times, that’s about a year’s worth of use for the canvas bag.

          Then, when the person who bought the canvas bag goes home, what do they use as the bin liner? Cover for their bicycle seat? Taking out the used kitty litter? Well, they buy plastic bags in a roll instead.

    2. The 3D printer is just like any other tool, you can use it to make other stuff. It’s no replacement for existing tools, it’s just another new tool. The 3D printer is a very versatile tool in many ways but also has it’s drawbacks.

      Though it may cause a revolution in DIY rapid prototyping it is in no way a threat to conventional tools, simply because in many ways some things can be made easier, faster or more accurate using conventional tools. The fun with 3D printers is ease of making another copy of your printed project.

      Just keep in mind that:
      – the escalator never really replaced the normal stairs (even the superior elevators never really replaced the stairs, though it made higher buildings more practical).
      – books still exist today, event though we have all sorts of digital replacements for it.
      – ballpoint or pencil still exists, even though we have beautiful full color printers that can spit out multiple pages a minute.
      – television has made the need for cinema’s obsolete, yet they still exist.

    3. Recycled plastic is unsuitable for many tasks, one of which is adhesion through heated extrusion. It does not bond as well.

      What may surprise you more, recycled plastic makes for ok WATER bottles, but is unusable for Carbonated or alcoholic beverage bottles. Both the CO2 and alcohol molecules (both isopropyl and ethanol) are smaller than the micro holes left in recycled plastic. Soda in a 2 Liter bottle will go flat in less than 48 hours in a recycled bottle, and alcohol will evaporate out.

      Recycling is a great idea in theory, but less so in practice. There are limits.

      Also, ADDITIVE manufacturing (such as 3d printing) has less waste than SUBTRACTIVE (drilling, milling, etc) where you need to start with a greater volume than the end product.

    4. “Better applications of 3-D printing that would speak to the mission of this series would result in shapes that cannot be easily reproduced with simple hand or power tools.”

      Easy. Gaming terrain and miniatures. They are not easily made by hand OR traditional moulding methods as the overhangs and inner and outer model parts are difficult or impossible to cost effectively do.

      Right now, I can download free or buy cost effective .STL files and make a part at home. No longer does the product need raw materials shipped to one location, created, packed into wasteful blister packs (plus the energy for the sealing equipment, and the PTFE heat seal liner that has to be changed (and PTFE is terrible for the recycling stream) or clam shells, or plastic bags that add little to no value or end-use, that end up in a landfill, then shipped to me in a box that I need to reuse or recycle or throw out. So, I’ve eliminated how much fuel, printing, packaging, plastic, paper, glue and cut down or recycled trees and pulp scrap.

      I get a roll of filament, I print it, I paint it, and it goes on a table. Done. So there is an example.

Leave a Reply to LukeCancel reply

Please be kind and respectful to help make the comments section excellent. (Comment Policy)

This site uses Akismet to reduce spam. Learn how your comment data is processed.