Skip to main content

3D Printer Filament Joiner

I have been looking at various ways of joining 3D printing filaments.

One method involves running one end of a filament through a short PTFE tubing, melting it with a lighter or candle, retracting it back into the tubing and immediately plunging the filament to be fused into the tubing:


One problem with this method is that you can't really control the temperature at which you melt the filament, so you frequently end up with a brittle joint that breaks upon the slightest bend.

Aliexpress even sells a contraption that works along the same line. As it uses a lighter or candle as well, it suffers from the same weakness. I am not even sure why you need a special contraption when a short PTFE tubing will work just as well.

Another method involves using shrink tubing/aluminium foil, and a heat gun:


But a heat gun is rather expensive, so I wanted to explore other alternatives.

The candle + PTFE tubing method actually works quite well when you happen to melt it at the right temperature. It’s just very difficult to get it right. I get like one good joint for every 10 attempts. So that got me thinking. Maybe we need to replace the candle with a controlled heat source that is also affordable.

After some experimentation, I came up with such a heat source that cost very little to build. It is basically a 3D printer hotend driven by a MOSFET. A hotend is only a couple of dollars off Aliexpress.


The hotend has 2 thick wires (red in photo) that should be connected to the 12V source. It also has 2 thinner wires (white in photo) connected to the thermistor that can be used to measure the hotend temperature.

You also need a 12V DC power source (anything from 1A and above should give you sufficient power to drive the hotend; I use a 12V/2A power supply that was salvaged from years past), a MOSFET that is capable of handling the power, 2 x 10K resisters, an Arduino MCU (I am using the Nano for this project), and we are good to go.

The entire circuit looks like this:
Let's break it down.

One wire from the heating element is connected to the 12V source. The other wire is connected to the MOSFET "source". The MOSFET "drain" is connected to ground.

The "gate" of the MOSFET is connected to D3 on the Arduino. When that is high, source connects to drain, the circuit is completed, and the heating element starts to heat up.

During operation, we output a PWM on D3, which controls the speed at which the hotend heats up.

It is important that all wires connected to the hotend side of things must be of a thicker gauge to handle all that current, otherwise the wires will melt down (as I learnt the hard way).

The wires from from the hotend is hooked up to a voltage divider network. The resistance of the thermistor varies with temperature, and by measuring its resistance (via the A6 pin on the Arduino), we can infer the hotend's temperature.
It's a pretty simple circuit as things go. Here's what it looks like on a prototype board:


The hotend sits on a makeshift holder made of particle board. Everything is held down by epoxy glue.

You can find the code to tune and drive the hotend on Github

heating.ino makes use of PID (proportional-integral-derivative) to stabilize on the target temperature that you want. But before you can use it, you need to figure out the PID parameters (KP, KI and KD) required for your hardware. This is done via an auto-tuning process, implemented in autotune.ino.

First, upload autotune.ino to the Arduino and observe its output via the serial window. It will take a few minutes. Upon completion, it will print out the values of KP, KI and KD, which you will need to enter into heating.ino

pwmOut = 0.00, curTemp = 187.29
pwmOut = 0.00, curTemp = 187.02
pwmOut = 0.00, curTemp = 186.42
pwmOut = 0.00, curTemp = 186.12
kp: 17.07, ki: 0.75, kd: 96.57

Usage information about the autotune library is quite scarce, and in sources that use it, the autotune code is typically integrated the PID system. Even the sample code in the Autotune library takes that approach. I have chosen to separate out the autotune and the PID code instead because I find it easier for a newcomer like myself to understand the 2 different processes.

Once you have updated the PID parameters in heating.ino,  set the target temperature (setTemp).  I find the best temperature to set is 10c below the printing temperature of the filament material. So for PLA, I use 175~180C. After that is done, you can upload the code to the Arduino and monitor its output via the serial window.

pwmOut = 206.21, diff = 41.88, curTemp = 138 / 180
pwmOut = 187.58, diff = 41.09, curTemp = 139 / 180
pwmOut = 167.37, diff = 40.28, curTemp = 140 / 180
pwmOut = 145.74, diff = 39.47, curTemp = 141 / 180
pwmOut = 179.30, diff = 38.71, curTemp = 141 / 180
pwmOut = 145.92, diff = 37.93, curTemp = 142 / 180
pwmOut = 113.38, diff = 37.12, curTemp = 143 / 180
pwmOut = 81.37, diff = 36.30, curTemp = 144 / 180
P_ON_M activated.
pwmOut = 0.00, diff = 35.46, curTemp = 145 / 180
pwmOut = 0.00, diff = 34.67, curTemp = 145 / 180
pwmOut = 0.00, diff = 33.84, curTemp = 146 / 180

When the hotend temperature is within 1% of the target temperature, the built-in LED on the Arduino will light up, and filament joining can begin. The video below shows how the 2 ends of the filament are joined:


The correct technique is to melt about 2~3mm of one end of the filament in the PTFE tubing, then align the other end to touch the melted filament, wait a little so that it becomes slightly soft as well (don't wait too long as it will become too soft!), then push the PTFE tubing through to "scoop" up all the bits.

Note that the PTFE tubing should be touching and scraping the hotend as it moves through. If you try to lift everything up too early, the plastic may cool too soon and you will not get a good joint. The PTFE tubing has a much higher melting point (327C), so it won't be damaged by the hotend temperature. Just be careful not to touch the hotend with your fingers.

With a little practice, I was able to get a higher than 9 out of 10 success rate. If for whatever reason the joint is bad, simply trim a little bit off the ends and try again.

The important result of using a controlled heat source to melt the plastic is that the joint is very strong! As shown in the video, the joint can be bent without breaking, just like a regular filament. This is because the temperature is never high enough to rearrange the crystalline structure of the plastic during melting.

Any residual PLA can then be scraped off the hotend with a penknife while it is still at temperature.

One question that often arises is how to get the PTFE tubing off the joined filament, especially when you are joining 2 spools. My suggestion is to just leave the tubing on. It will slide along the filament just fine as you print.

Alternatively, it is possible to cut the tubing off with a sharp pen knife and a steady pair of hands. As mentioned before, PTFE tubing is dirt cheap. A meter worth of tubing can be had for $2 off Aliexpress, and you only need a 3cm segment for each joint.

I plan to add a rotary knob and a tiny OLED screen to this project to make it totally self-contained. Parts have been ordered and are on their way.

Comments

Popular posts from this blog

Adding "Stereo Mixer" to Windows 7 with Conexant sound card

This procedure worked for my laptop (Thinkpad E530) with a Conexant 20671 sound card, but I suspect it will work for other sound cards in the Conexant family. I was playing with CamStudio to do a video capture of a Flash-based cartoon so that I can put it on the WDTV media player and play it on the big screen in the living room for my kids. The video capture worked brilliantly, but to do a sound capture, I needed to do some hacking. Apparently, there was this recording device called "Stereo Mixer" that was pretty standard in the Windows XP days. This allowed you to capture whatever was played to the speaker in all its digital glory. Then under pressure from various organizations on the dark side of the force, Microsoft and soundcard makers starting disabling this wonderful feature from Windows Vista onwards. So after much Googling around, I found out that for most sound cards, the hardware feature is still there, just not enabled on the software side. Unfortunately, to

Hacking a USB-C to slim tip adapter cable to charge the Thinkpad T450s

This hack is inspired by this post . A year ago, I bought an adapter cable for my wife's Thinkpad X1 Carbon (2nd Gen) that allows her to power her laptop with a 60W-capable portable battery (20V x 3A). A USB-C cable goes from the battery into the adapter, which converts it to the slim tip output required by the laptop. Everything works out of the box, so I didn't give much thought about it. Recently, I decided to buy a similar cable for my Thinkpad T450s. I know technically it should work because the T450s can go as low as 45W (20V x 2.25A) in terms of charging (though I have the 65W charger - 20V x 3.25A).  I went with another adapter cable because it was cheaper and also I prefer the single cable design. So imagine my surprise when the cable came and I plugged it into my laptop and it didn't work! The power manager just cycle in and out of charging mode before giving up with an error message saying there is not enough power. After much research and reading the Thinkwiki

Using Google Dashboard to manage your Android device backup

I used to use AppBrain/Fast Web Install to keep track of which apps I have installed on my phone, and to make it easier to reinstall those apps when the phone gets wiped or replaced. But AppBrain had been going down the tubes, and Fast Web Install had always been a hit-and-miss affair. Android's own "backup to the cloud" system had previously been even more unusable. There isn't a place where you can see what has been backed up. And when you setup a new phone with your Google account, you just have to wait and pray that your favorite apps will be restored to the phone. Typically all the stars have to be aligned just right for this to happen. More often than not, after waiting for an hour or so and nothing happens, you just curse under your breath and proceed to install your favorites apps manually via the Play Store. But I just looked again recently and was pleasantly surprised that things are much more civilized now. Firstly there is a place now where you can loo