Archive for the ‘Mechanical’ Category

DIY Custom Heating Element

Wednesday, April 4th, 2012


A few years ago I made a BBQ smoke generator. I was fairly happy with the design, but felt that for the “next time” I would make a few changes.

One of my main issues was the size. I really wanted to make it smaller, but I didn’t want to pay for a small cartridge heater.

It occurred to me a couple of days ago that I might be able to modify a stock toaster-oven heating element to make a smaller heater. If I cut out a small section and drove it at a proportionally smaller voltage, I wondered, could I get a small heater with the same temperature as the big boy? It turns out that the answer is yes.

I went through a few fits and starts getting this thing to work. My main issue is that I’m still learning to weld, and welding wire requires a lot of finesse. I’m not going to bother with the trials and tribulations though. Here’s how I made a custom heating element:

Cut to Length


A heating element is a nichrome coil embedded in a steel tube using ceramic. In a toaster-oven they wire 2 in series, so each element is designed to see 60V. I had a 12V power supply, so I wanted to use 1/5 of the total element length. A pipe cutter made quick work of the cuts.

Ream


I needed to attach metal contacts to the wire. To give myself enough wire for a bond, and to have room to support the contact, some free space would be required. A metal file and some elbow grease left me with a 1/4″ cavity at each end of my cut section.

Weld

Attaching things to nichrome is a tricky proposition. Because it gets so hot you can’t use solder, and mechanical connections are unreliable. I decided TIG welding was the way to go.


Easy in theory, blindingly difficult (for me) in practice. In the end though, welding for 250mS at the lowest setting created a permanent bond bond between contact and wire.

Insulate


To keep this welded bond electrically isolated, and to give the contact some rigidity, I filled the previously-created cavity with furnace cement.


Next time around I might do this in several small additions rather than all at once. I think that would give me a more solid fill.

Burn Baby Burn


It actually works! I applied 12V to the element and was easily able to make some wood smoke. It didn’t get red-hot, but I suspect this is because my cut section was a bit long. At any rate, I’m really excited at the prospect of making inexpensive small heaters for use in my projects. I should probably get some more welding practice first though.

flattr this!

Collapsible Knitting Needle

Sunday, January 22nd, 2012

I needed a break. I’ve been working hard on the osPID for several months, and I just needed to not look at code or control algorithms for a little bit. Nothing says “break” like an out-of-left-field project.


I only started knitting recently. Something that’s been bothering me about it is the length of the needles. They’re 14″ long, and I’ve been worried they’ll be bent while riding in my backpack.

It occurred to me that some sort of collapsible needle might be useful in this situation. Taking my inspiration from elastic tent poles, I got to work on my “not PID” project.

construction



The first thing to do was cut the needles in half. I used a pipe cutter for a nice clean cut, then cleaned up the seam with a drill.


With the needles prepped, I then used a lathe to make the supporting inserts.


I didn’t quite get the diameter of the inserts right, so I touched things up at the sanding station.



To get some decent springiness, I looped 3 rubber bands together, then doubled that over. This was pulled through the insert and locked in place with a piece of paperclip. I then super-glued the insert into the pointed half of the needle.



The last thing to do was anchor the other end of the rubber bands in a hole drilled in the cap.

Results



I’m really happy with how these turned out. The weight increase was negligible, and the seam is almost invisible. It puts a slight drag on the yarn, but nothing major, and I haven’t had any hangs yet. Also, because the halves are connected, you can fold the needle with your knitting on it, without worrying that things are going to fall off.

flattr this!

A Proper Multi-Color Print

Sunday, October 16th, 2011

I’ve played around with printing multiple colors using a single extruder, but by and large all the multi-color action was restricted to a single layer. There’s a good reason for this: every color change takes time, and having 2 or more colors run throughout the part would require a color change ON EVERY LAYER.

But I had to try. I had a great idea: a fairly understated bottle opener with different color text embedded on each side. To the uninitiated it’s a neat little thing, but to people who know 3D printing its a: “wait, what? how did you do that?”

Well, here’s “how I did that.” It took a LOT of time. I didn’t call it “The Saturday Killer” for nothing.

The Basic Idea:

Create a bottle opener with some multi-color text on the side. I chose a reference to the classic Simpsons line: “Beer. Cause Of. Solution To. Problems.” I knew it would be a complicated task, but it turned out to be even more complicated than I thought.

Step 1: Generate a separate STL for each color

Having already created the opener in OpenSCAD, this step was straight-forward. Position text on the sides (more on the font later,)

…use the Difference Command to create an opener with word holes,

…and use the intersection command to get a text object to fill each of those holes.

Step 2: Split each STL into printable segments

For the different colors to dovetail correctly, they can only be printed 2 layers at a time. To split the objects from step 1 into two-layer slices I used the difference command to remove all but a 2 layer section.


I then Generated an STL, moved the cubes, and repeated until I had all my slices.

Step 3: !#@$%@#$: Realize that this is way more complicated than you first thought.

Because you’re interlacing two or more STLs, how things are skeined becomes really important. If you’ve got a curve in the Z direction, or a transition that happens within a layer, things may skein one way for one color, but in a different way for the mating color.

So I needed to do a LOT more work, mainly on the text. I tried using a stock thingiverse font at first, but all the rounded corners were a killer, and I couldn’t get it to size correctly to an even number of layers. So I rolled my own:

If you look closely you’ll see that the text is blocky. This was done to confuse Skeinforge a little as possible. There are no diagonals or curves anywhere, and all transitions and openings take into account the layer thickness, as well as the width of the extrusion. This way there’s less confusion about how much plastic goes where, and the different colors are more likely to dovetail correctly.

Another thing that I added was a solid bar behind all the text. This caused the tool path to be much more continuous, resulting in nice, smooth letters.

Step 4: Actually Print

Now that all these parts were created they just needed to be printed out sequentially, with the Z-offset being adjusted at the appropriate time. My main aha moment during this process was that you need to turn off raft when skeining all but the first print, otherwise you get way too much plastic laid down.

I -of course- learned this the hard way. I first tried printing 4 openers at a time, and by the time I got to the middle of the opener there was so much plastic that the extruder started to catch leading to misalignment.

I scrapped that print and started printing a single opener, realizing the raft thing just after I started. The results were much better:

Step 5: Enjoy

I’m really proud of this thing, but I spent WAY too much time creating it. Hopefully this quick post did a good-enough job of explaining the process. I wanted to share this project, but for my sanity I just need to be DONE.

opener: http://www.thingiverse.com/thing:12592
font: http://thingiverse.com/thing:12618

flattr this!

Three-Color 3D Print

Friday, September 30th, 2011

I’ve been making bottle openers for friends, and I recently struck upon the perfect design for my friend Matt. For some reason, he still pines for a hockey team that left our home state in 1997 (THEN won the Stanley Cup.) His opener got a Whalers Logo:

Up to this point, all my openers have been single color. But combine the fact that I’m jealous of the new dual extruder with the fact that Matt was my Best Man, and I decided that this time I would go the extra mile.

The procedure was straight-forward, and a huge pain in the butt:

  • First I printed a blank opener in the base color
  • Then I adjusted the Z-Height of the Thingomatic by 5.76mm (the height of the opener base)
  • When I switched the color to blue and printed the tail, the printer deposited the plastic on the white base as if it were the build platform
  • After switching colors AGAIN, I printed the W and the opener was done

This was a fairly simple multi-color design, but by breaking up the model ahead of time, this technique could be used for any part.

flattr this!

Making a Custom Bottle Opener

Saturday, September 3rd, 2011

I recently posted an improved bottle opener design to Thingiverse. Unlike the mighty bottle opener, this is one that I’m proud to give out, and people are happy to receive.

Because I did the model in OpenSCAD, it turns out to be really easy to create personal, one-of-a-kind gifts for my friends. In this post I’ll go through the steps I took to make an opener for my friend deWit. He skis, and he’s pretty good:

Ok, maybe he’s really good. Anyway, this has been my favorite skiing picture since it was taken a few years back. I thought it might be nice to capture some of this awesomeness in opener form.

Step 1: Get the image into Inkscape


The first thing I did was use the Windows snipping tool to copy into Inkscape just the section I wanted.

Step 2: Trace


Using the Bezier tool I then created a rough outline of what I wanted to print. This was going on a pretty small area, so I couldn’t get that much detail. Also important to note, I only used straight lines. No splines; they don’t seem to work in the upcoming steps.

Step 3: Save as DXF


Having served its purpose, I deleted the image to leave just the outline. I then saved the file as a DXF into my OpenSCAD directory.

Step 4: Import into OpenSCAD

This was the only painful part. Getting the DXF into OpenSCAD is a simple matter of calling the linear_extrude function. The problem is that the scale, position, and rotation of theDXF were way off. As a result I also needed to add scale, rotate, and translate commands to get the DXF stuff into place.

The code selected in the image above moves the part by [-89,86,thickness], rotates it 90 degrees, and scales by 70% on the x and y axes.

Once I was happy with the placement I exported to STL and moved over to ReplicatorG.

Step 5: Check the GCODE

Just because I drew this outline didn’t mean that that’s exactly what would get printed by the Makerbot. We’re working with a 0.5mm stream here, and some details may have been lost. Luckily you can visualize the gcode before the part gets printed.

In the Skeinforge profile, I made sure that SkeinLayer was turned on. This brings up a tool path visualization after the gcode is generated. Going to the last layer showed me the tool path I was interested in:

So here we can see that I lost some important detail. The ski-poles and backpack straps are missing. Time to tweak!

Step 6: Tweak


When I traced out the poles and straps I made them too thin. As a result Skeinforge just ignored them. By editing the nodes on my path I was able to make the tin spots a little thicker. I then repeated steps 3-5 and was rewarded with this:


OK! Printing time.

Step 7: Print!

Aaaand done. Pretty cool right? Maybe not as cool as hucking air off the wall at Kirkwood, but I’m pretty happy with the results. As you can see the detail is pretty poor, but that’s the nature of the medium and the size of the canvas.

This one is really pushing the limit of what you can fit into that tiny space. Here’s two more that I did that might give you a better idea of what can be accomplished if you choose an image that doesn’t require as much detail:

I’ve been having a lot of fun making these. It’s feels great to be able to give an inexpensive gift that’s personal and useful.

flattr this!

3D Printing Home Improvement

Monday, August 29th, 2011

I’ve lived in my house for 2 years now. 2 weeks after we moved in, someone who shall remain nameless turned our 2 bathroom house into a 1.5 bath.

They were cleaning the bathroom (that’s how you know it wasn’t me.) While leaning on the D-Shaped shower curtain rod for support, the whole thing came down. Come to find out the support brackets were woefully inadequate.

“I should really do something about that…” but we only really NEEDED one shower, and you can’t buy the brackets separately, so I did nothing. I wasn’t going to spend $100 for a shower we’d never use.

Flash forward to the present. We’re going to have a house guest staying with us for the next couple months. Now having 2 showers makes a lot of sense, but I still didn’t want to spend $100. So I set about designing a set of support brackets that would be a bit stronger.

I designed 2 sizes. one with the original hole spacing, and a smaller one in case the first guy wouldn’t fit on the Thingomatic’s build platform.

It turns out that I had to go with the smaller one. “Smaller.” Each bracket was was still a 3 hour print. It would have been faster if I hadn’t done 100% fill, but these are load bearing so I didn’t want to take any chances.

I’m not all that happy with the print quality, but they should be fine. I did the white one first, and about 2.5 hours in I accidentally disconnected usb, stopping the print. oh well. The next day I printed the yellow one. I used yellow because we were almost out of white and I didn’t think I’d have enough. The plastic wasn’t flowing as well with the yellow. I probably should have used a different temperature, but again, on a 3 hour print you just let it go.


All in all I’m really happy in the “problem solved” department. I’m not going to be doing pull-ups off this thing any time soon, but I’m pretty sure that the brackets will be the last thing to break if this ever comes down again.

flattr this!

Mighty Bottle Opener

Friday, June 17th, 2011

I’ve been wanting something printable that I could carry around with me, especially after this Colbert Report thing. I finally settled on designing a bottle opener: something I could show off.

Mighty Opener

There’s already a bottle opener you can print, and it works really really well. Unfortunately it’s the size of a small moon, so you can’t really carry it with you everywhere. The reason it’s so big is because it uses a penny to bear the load. You need to have something metal to save the plastic, and a coin is an ingenious, albeit large, solution.

To make the opener smaller the coin would have to go. Using a bottle cap came to me almost immediately, but finding the correct implementation took some time. The Coin-Op uses the coin to support the full load, and initially that’s what I tried to do with a folded over cap. Things improved greatly when I discovered that ABS is strong enough to lift a cap, it just needs a protective layer to keep it from being chewed up.

And thus the Mighty Bottle Opener was born! As you can see, naming things is not my forte. I was looking for something that would encompass everything great about this new opener I designed: It’s smaller, lighter, key-chainable, yet still really strong.

Creating the Protector

…And then it was awful. The bottle cap barb above protected the plastic, but it kept getting pulled out by the opening process. There’s way more outward force than I anticipated. Of course I had already uploaded this awesome thing to Thingiverse, and it had gotten featured. Luckily it was project night down at Sprout so I started redesigning.

paperclip manipulation

I settled on using a paperclip looped all the way around to the back of the opener. Now any outward force on the protector is resisted by something stronger than friction. I was kicking myself because Aaron from dinostudios had suggested using a paperclip maybe a week before. Oh well.

paperclip protector

So there you go. A fantastic bottle opener and a design story to boot. We’ll see how well this design holds up. It’s still listed as a “work in progress” just in case.

UPDATE: This opener never really panned out. It works well when printed in PLA, but with ABS I was never able to effectively protect the plastic. I’ve posted a new design that works far better.

flattr this!

Laser-Cut Business Cards

Saturday, June 4th, 2011

laser cut business cards
laser cut still wraps nicely

I’ve really been saturating the blog with ear-bud wrap posts lately. This should be the last one for a while. I decided to order some laser-cut copies of the earbud-wrap business card. They were a bit expensive, but I’ve been wanting to laser-cut something for some time. I went with 2-color acrylic, and I think they turned out really well.

flattr this!

Earbud-Wrap Business Card

Sunday, May 15th, 2011

I made one last (for now) modification to my Credit Card Earbud Holder. The wrap now ends with an over-pass that really locks everything in place. As before, it’s insanely easy to remove the wrap.

Wrapped
Bundle slides right off
<2 Second Removal

The other thing I realized is that, if laser cut from thin plastic, this would make a really neat business card. I don’t really feel like paying for a laser-cut version at the moment, so I just printed out a shipping label to illustrate. If you DO feel like laser cutting this bad boy, I’ve uploaded the plans to Thingiverse. (The plans will also help you if you just want to make one out of an old card)

UPDATE: I got some of these laser cut. They look amazing.

flattr this!

My Take on the Credit Card Earbud Holder

Thursday, May 12th, 2011

Yesterday on Lifehacker they posted a forehead-smack idea. Take a credit card, cut it up a bit. You’re left with a free, light, earbud holder. I’ve got a bunch of old cards lying around, so I made one.

Bud Holder - Theirs

I Didn’t like it. My design grievances:

  • You wrap in the short direction, which means more wrapping to get the job done
  • Having the earbuds stored on either side means you need to put in each bud individually
  • It takes just as long to unwrap as it does to wrap

It needed some work to compete with my current method. The beauty of using cards is that they’re easy to work with and plentiful (in my house at least.) It only took about an hour (7-10 iterations) to settle on a winner. Meet my new earbud holder:

Bud Holder - Mine
Bud Holder - Mine

  • The earbud slots are wide and next to eachother, so you can get the buds in quickly with one motion
  • You wrap the long way, so you’re done in half the time
  • The way the plug is clipped ensures that the wrap stays put, but…
  • Because the wrap isn’t in channels, it slides right off once the plug is detached. WAY faster.

UPDATE: I went through a few more iterations and came up with an improved design.

flattr this!