Introduction to 3D printing with BeagleBone Black

by Jason Kridner

Over on the TI Tools Insider Blog, Alejandro Erives has been talking about self-replicating machines and Stephanie Pearson day-dreamed about giving a Beagle a 3D printer and the impact on open source hardware. This prompts the question, how do you get started and where can you end up?

Here’s the quick overview of what you’ll need to produce your very own first prints in 3D plastic, before we dive into any details:

  1. Processor to control your printer — such as provided by the TI Sitara AM335x on BeagleBone Black
  2. Electronics to drive your positioning and extruder motors, extruder heating element, heating plate and limit switches — such as provided by a BeBoPr-Plus Cape, Pololu #2133 stepper motor drivers using TI DRV8825 devices and an off-the-shelf power supply
  3. Mechanical structure with drive motors, extruder, heating elements, build surface and limit switches — such as provided by a RepRap Huxley
  4. Software to run the slice up the 3D models into GCode, an interpreter for the GCode and to send pulse trains to the stepper motor drivers — such as is provided by the Machinekit Linux distribution based on Debian, Robert Nelson’s image building tools and Charles Steinkuehler’s integration work
  5. Models for the components you want to build — such as these Mendel plastic components on Thingiverse
  6. Patience — give yourself plenty of time when getting started with 3D printing and you’ll find it a fun and rewarding endeavor!

Processor

Choosing the processor is the easy part, because the AM335x on BeagleBone Black has all of the most important hardware features you might need, including a fast processor, video display output with 3D graphics rendering capabilities, Ethernet/USB connectivity, ADCs, PWMs, lots of GPIOs and a couple of independent fast microcontrollers optimized for producing interface logic. At BeagleBone Black’s rather affordable price point, nothing else is close when examining all of these features. Let’s look at how each of those elements comes into necessity.

To read the heat data, the simplest mechanisms are to utilize either an analog temperature sensor or a one-wire temperature sensor. An on-chip ADC sample the analog temperature values directly without additional hardware. The one-wire bus protocol is an alternative that enables multiple sensors to be connected along the same single-wire bus, simplifying the wiring topology and bringing data back to the processor digitally. Linux provides a driver that is capable of turning a GPIO pin into a one-wire bus port and this driver is almost trivial to enable using. Getting an accurate temperature reading has never been easier.

The multitude of GPIOs serve many purposes, in addition to providing ports for one-wire support. Each limit switch provides time-critical information to the electronic controls in the case where a motor’s position needs to be calibrated or the print head is otherwise attempted to be moved beyond the range of the printer. Every GPIO on the BeagleBone Black is capable of producing an interrupt to the main processor such that it can get notification quickly. Perhaps more importantly, several of the GPIOs have extremely low-latency connections to the PRU 32-bit 200MHz microcontrollers on-chip. These dedicated controllers are able to update the BeagleBone peripherals in real-time, without being distracted by other tasks running within the Linux environment.

These PRUs are especially useful in talking to the stepper motor drivers that need to be given pulse trains telling them when to step forward or backward. With the real-time tasks off-loaded to the PRUs, it is even possible to use a high-level language like Python to feed the pulse-train data.

Electronics

This selection is a bit more difficult with many makers of competitive electronics constantly providing minor updates to add one minor feature or another. The good news is that you can grab a solution today and reuse the rest of your system as you make incremental electronics improvements moving forward. For now, I’ve chosen the BeBoPr-Plus because it was easy for me to obtain, but keep an eye out for the Replicape from Hipster Circuits as I expect Thing Printer to be available any day now.

For more information about the BeBoPr, consider visiting the BeBoPr forum.

Next steps

In future posts, we’ll look at the Huxley assembly and software running on BeagleBone Black. In the meantime, why not give it a try on your own?