-
3D Printing Using Flexible Filament (TPU)
Through my short journey with 3D printing, I've spent a lot of time reading through the 3D Printing SubReddit and something that I found interesting was people talking about printing using flexible filament (TPU). While I didn't have a real use for printing squishy things, I was curious. A few weeks ago, I purchased a roll of SainSmart Flexible TPU filament to see if I could print.
The forums and other references indicated that printing flexible filament was difficult because pushing the filament through the printer was like pushing a wet noodle! Some people had said that they printed with the stock printer, others said that for best results they modified the printer into a direct drive system. I was up for the challenge!
Before I started, I had already made the following modifications to my printer:
- Replaced the extruder with an all metal one
-
Replaced the Bowden feed tube with a Capricorn one. The basic gist behind this change was that the tighter tolerances on the tubing doesn't allow the filament to wiggle around and bunch up. In addition, when switching filaments, I don't have to purge as much filament as very little gets stuck in the tube.
-
Added a filament guide that I printed. This should create a smoother path for the filament.
-
Added a filament runout sensor with guide. The main goal with this modification was to be notified when filament runs out so I can change it during a print. It also really helps feed the filament (with the flexible filament, I have to push down the microswitch to feed it).
-
Added a filament holder with bearings. This took awhile to print, but has been great. On my first flexible print, I noticed the extruder was having trouble pulling the filament because the roll wasn't spinning freely. I helped things along, but realized that reducing friction would be a big help.
-
Leveled the bed manually and with the BLTouch.
Other than that, I'm using the stock magnetic bed that I cleaned.
My Cura settings are pretty straightforward.
For the TPU material settings, I used:
- Print temperature: 215°C
- Build plate temperature: 50°C
Profile settings:
- Infill density: 10% (I was printing something squishy)
- Print Speed: 20 mm/s (I'm going to try increasing this as things worked well)
- Regular Fan Speed: 0%
- Regular Fan Speed at Layer: 1
- Material Flow: 110%
- Enable Retraction: Off
That's really all there was to my settings. Since I'm sometimes not the most adult person, I thought it would be funny to print a Poop Emoji for my son. It was squishy (10% infill) and I printed it at 50% of the original size keeping the print time to about 2 hours. My son absolutely loved the print. I was amazed at the print as I did it on the first try with my cold printer.
I'm going to keep experimenting with TPU and try to figure out what else I can print. I have no need for flexible filament, but why not print more stuff!
-
Installing a BLTouch on an Ender 3 Pro
I recently purchased a Creality Ender 3 Pro 3D printer as an "upgrade" to my Monoprice Select Mini Pro printer. There were a few reasons I decided to do this:
- Larger print area. While the Select Mini Pro is a great little printer, I am limited to what I can print and I've started getting interested in printing lithophanes which can get a bit larger than the printer can handle.
- Automatic bed leveling has no fallback. The Mini Pro uses an inductive sensor for automatic bed leveling and if that fails, I either have to replace it or am pretty much out of luck (someone has posted instructions on how to level the bed if the sensor fails, but it is a tad cumbersome).
- No ability to switch out the build plate for glass or another material. I've done a lot of reading about 3D printing and people swear by glass build plates and the Select Mini Pro doesn't make it easy to add one. A shim has to be added to the Z axis limit switch and then you have to figure out the bed leveling.
- Limited to what filament types can be used. The printer has a maximum build plate temperature of 70°C and limited nozzle temperature which can limit the filaments used. Also, I've read that while some people have had success with TPU (a flexible filament), it may not work so well.
- No ability to modify the firmware for different features. The Ender 3 runs the Marlin firmware which is open source and can be easily modified.
In any case, I've read about manual bed leveling and while doable, it seems like a lot of work and I like easy! After setting up the printer and running it for a few days, I decided to install the BLTouch automatic bed leveling probe. In the weeks leading up to setting up the printer and the probe, I had read numerous articles and watched a number of videos on the subject, so I thought I was prepared for it. Parts of the setup seemed a bit daunting, but nothing I couldn't handle.
The first step to installing the probe was printing out a mount for it. Thingiverse has a number of options. I settled on this mount as it was adjustable. Printing it and attaching the BLTouch was quite easy; I didn't have the right size M3 screw, so I had to cut off a longer one.
After attaching the BLTouch, I had to run the extension wires through the sleeve that had the other wires. This was a little bit of a pain. The only mistake I made here that bit me later on is that the extension cable became disconnected and the BLTouch failed to operate causing the nozzle to hit the build plate. Oops. The lesson here was to hot glue the connectors together so that any jiggling of the cables wouldn't cause them to disconnect. The second lesson is to always make sure the BLTouch performs its self test when the printer powers up.
Fhew, I'm exhausted just writing that up! After the wires were run, I had to attach them to the motherboard. The BLTouch has 2 connections; the first is done through a pin 27 connector and is just unplug the LCD cable, plug in the connector, plug in the LCD again and attach the 3 wires from the BLTouch making sure the orientation was correct by verifying the labeled pins were attached to the correct, color coded wires. The second part of attaching to the motherboard was to replace the Z axis end stop. The extension cable I bought had a non-keyed connector that just plugged in. Unfortunately it wasn't a secure connection so I used hot glue on it the first time I connected it. On my second poke at the motherboard (due to troubleshooting the connector that came loose as I mentioned earlier), I decided to just cut the wires on the Z axis end stop, solder on the extension cable and use some heat shrink tubing. I had to make sure the white wire was towards the front and the black wire was towards the back. This was a much better connection and has less of a chance of coming close. After I buttoned up the motherboard, it was onto the firmware.
Once I initially got the printer setup and running properly, I upgraded the firmware mostly to know that I had thermal runaway protection and had the latest changes. Compiling the firmware was straightforward and explained in various posts and videos. Most of the posts talk about installing the initial firmware with a bootloader using an Arduino board. As I don't have any Arduino boards around, I opted for installing using a Raspberry Pi 3B that I purchased to run OctoPrint. I used this guide which was easy to follow and perform the initial install. The printer didn't come with a boot loader which required the extra steps to install the firmware the first time; why this was done, I have no idea. Over the course of a few days, I managed to pick the options I wanted for my firmware. Unfortunately my Creality 1.1.4 board doesn't have much space on it, so I had to disable SD card support. This wasn't a big deal as I do all my printing through OctoPrint. Using the base Ender 3 Marlin 2.0.1 example, I made the following changes:
Old Configuration.h:
#define SHOW_CUSTOM_BOOTSCREEN #define BAUDRATE 115200 #define CUSTOM_MACHINE_NAME "Ender-3" //#define BLTOUCH #define NOZZLE_TO_PROBE_OFFSET { 10, 10, 0 } #define MIN_PROBE_EDGE 10 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z #define Z_CLEARANCE_DEPLOY_PROBE 10 // Z Clearance for Deploy/Stow //#define Z_MIN_PROBE_REPEATABILITY_TEST //#define PROBING_FANS_OFF // Turn fans off when probing //#define AUTO_BED_LEVELING_BILINEAR //#define RESTORE_LEVELING_AFTER_G28 //#define LEVEL_BED_CORNERS' //#define Z_SAFE_HOMING #define SDSUPPORT //#define NOZZLE_PARK_FEATURE //#define SLIM_LCD_MENUS
New Configuration.h:
//#define SHOW_CUSTOM_BOOTSCREEN #define BAUDRATE 250000 #define CUSTOM_MACHINE_NAME "Ender 3 Pro" #define BLTOUCH #define NOZZLE_TO_PROBE_OFFSET { -44, -16, 0 } #define MIN_PROBE_EDGE 44 #define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z / 5 #define Z_CLEARANCE_DEPLOY_PROBE 15 // Z Clearance for Deploy/Stow #define Z_MIN_PROBE_REPEATABILITY_TEST #define PROBING_FANS_OFF // Turn fans off when probing #define AUTO_BED_LEVELING_BILINEAR #define RESTORE_LEVELING_AFTER_G28 #define LEVEL_BED_CORNERS #define Z_SAFE_HOMING //#define SDSUPPORT #define NOZZLE_PARK_FEATURE #define SLIM_LCD_MENUS
Old Configuration_adv.h:
//#define BABYSTEP_DISPLAY_TOTAL // Display total babysteps since last G28 //#define BABYSTEP_ZPROBE_OFFSET // Combine M851 Z and Babystepping //#define BABYSTEP_ZPROBE_GFX_OVERLAY // Enable graphical overlay on Z-offset editor //#define ADVANCED_PAUSE_FEATURE
New Configuration_adv.h:
#define BABYSTEP_DISPLAY_TOTAL // Display total babysteps since last G28 #define BABYSTEP_ZPROBE_OFFSET // Combine M851 Z and Babystepping #define BABYSTEP_ZPROBE_GFX_OVERLAY // Enable graphical overlay on Z-offset editor #define ADVANCED_PAUSE_FEATURE
Downloading the firmware after the first install was easily done through OctoPrint without having to install jumper wires and remove the motherboard. It is so easy that I made changes, recompiled, and uploaded new firmware a few times.
Was I done yet? Of course not! I hadn't even leveled the bed! Some guides say to add a G29 command to Cura settings which runs the auto bed leveling on every print. Auto bed leveling is slow and that's just a waste of time. So I decided that I'll just level the bed every few days. I started up the printer, did an Auto Home, verified that touching the probe sent the hot end up (if it didn't, I would have stopped the printer). Using OctoPrint, I sent
G28; auto home
-
Addicted to 3D Printing
I wrote about 3D printing a few months ago and at the time was using a DaVinci 3D printer. Unfortunately the printer didn't last long and despite my best efforts, I couldn't get it to keep printing; it was making a grinding noise while feeding and the cost to replace the hot end with shipping was about 1/3 the cost of a new, low-end printer. I decided to cut my losses and purchased a Monoprice Select Mini Pro. This printer cost me about $180 and when it arrived, I was printing pretty quickly.
The Select Mini Pro, unlike the DaVinci printer, requires a bit more tinkering to go from a model to a print. Printing requires a process called slicing and one of the more popular programs is called Cura which exposes a ton of options to control the print. As I didn't want to have to copy the files to the SD card to print, I setup OctoPrint running on a Raspberry Pi 2. This put the printer on the network and made it easier to monitor the printer.
I've been printing things like crazy and as I may have already mentioned, I'm addicted! I added a camera to the Raspberry Pi and can now see the progress of my prints without being next to the machine.
With all the success I've had, I've also had a number of failures. Sometimes these failures have been my fault (I ran the nozzle into the bed and damaged the bed and nozzle and when replacing the nozzle I didn't screw it in when everything was hot leading to oozing of material) and sometimes not my fault (the coupling holding in the feed tube broke).
I've learned a number of things about this hobby with the first thing being that everyone has a different opinion on how to fix things! Something that is a recurring topic on Reddit is how to get the prints to adhere to the print bed with lots of different suggestions. I started using blue painter's tape and had great success with that. Then I moved my printer to the garage and found I needed to use a glue stick in addition to the painter's tape. The day after I was printing some whistles, the prints stopped sticking to the bed no matter what I tried. Then it dawned on me that the garage temperature dipped a few degrees; this was enough to cause a problem. I returned from Home Depot with some rigid polystyrene foam insulation and built an enclosure for the printer. With this enclosure, I decided to try printing right on the print bed without the tape; this worked quite well now that I had more control over the temperature of the print bed. With every problem, there is a solution, but it requires some research and a lot of trial and error!
The bottom line is that 3D printing is a hobby and if you're not comfortable futzing and repairing things, then the consumer grade printers are definitely not for you!
-
A year of meditation
A number of years ago, a friend of mine suggested I start meditating to help with stress. He said he used an app called headspace. I gave it a try for awhile and was trying to do it pretty consistently. However, I stopped as soon as my stress went away and I really got bored of the meditations. Also, the narrator's voice wore on me. Since then, I tried an app called Calm and really enjoyed the Daily Calm meditation as it was different each day and wasn't repetitive. The next time stress entered my life, I picked up meditation again and like my first try at regular meditation, I stopped when my stress levels decreased.
Last year, I had two flare ups of my ulcerative colitis both requiring me to consult my gastroenterologist. After the second flare up, I decided to consider meditation just like a medication that I had to take daily. I figured it couldn't hurt because my colitis issues almost always were caused by some type of stress. When I visited my doctor after I started meditation and told him about it, he said "yeah, I've been meditating for 40 years and there is definitely a connection between the brain and the gut". I really didn't need his confirmation about meditation, but it was good to know that my doctor was on the same page with not quite an alternative treatment (I'm still on a daily medication), but an additional way to help.
Throughout the last year, I've meditated for about 10 minutes a day mostly using the Daily Calm. While meditating longer might help, I feel good about doing the ten minutes. There have been times that I didn't have cell coverage to get the Daily Calm, so I had to use another meditation that I downloaded. While not as enjoyable as the Daily Calm, it had to do.
Now that I've passed 365 consecutive days of daily meditation, I think I can say that it is part of my life. I don't have a particular time that I meditate, but it is usually towards the end of my workday.
Thank you Calm for helping me achieve this and integrate meditation into my life!