3D Printed Quadcopter

Picture of 3D Printed Quadcopter
This amazing looking device is a quadcopter. The project built completely from scratch using 3D printed parts, some cheap electronics, and a modified version of the AeroQuad software. The purpose of the project was to create a DIY quadcopter for under $200 and push the limits of what the 3D printer in our laboratory can do. You can see the full project page here.Step 1: ComponentsThe goal of our design is to keep the parts relatively cheap (under $200) and light enough to allow 3D printed parts. Our quadcopter design consists of four main components:Rotors – Brushless DC motors that can provide the necessary thrust to propel the craft. Each rotor needs to be controlled separately by a speed controller.

Frame – The structure that holds all the components together. These parts are all 3D printed so they need to be designed to be strong but also lightweight.

Prop Guard – Styrofoam structure around the props to protect the device in the event of a collision.

Microcontroller & Sensors – The Arduino microcontroller loaded with a 9 degree of freedom sensor from sparkfun.  This allows the quadcopter to adjust for stability during flight.

Step 2: Rotors

For those of you who are looking for an easy way to calculate the power requirements for your RC device, you should check out the online calculator eCalc. It’s an amazing tool that helps you decide what components to purchase depending on the payload that you want to carry. For our project we chose the 1900 KV HobbyKing Outrunners because it best satisfied our criteria for power, weight, and price.  If you attach an eight inch diameter propeller to each of the motors you get around 270 g of thrust per rotor. This is more than enough thrust to lift the frame and the small lithium ion battery that powers the quadcopter. Make sure you buy the counter-rotating to counteract the torque effect of the props.

Step 3: Frame

We created the quadcopter frame’s using the makerBot Thing-o-matic 3D printer. The printed parts are made of ABS plastic; the same material used for Lego bricks. The components of the frame were printed separately and then later assembled together using interference fits and screws. Some of the parts had to be printed diagonally because they were too long to be printed on the platform. The total weight of our quadcopter frame turned out to be 176 g. You can get these parts from my thingiverse page.

Step 4: Prop Guard

For the safety of the craft and of those around it’s flight zone, we wanted to build some sort of protector around the quadcopter. The CAD model that was drawn for the Styrofoam protector was converted into a template which was then used to trace the lines where the Styrofoam needed to be cut. The circles and curves were cut using a custom made compass device with a Styrofoam cutter attached to the end.

Step 5: Mechanical Assembly

Step 6: Electronics & Software

The 9 Degrees of freedom sensor stick (9DOF) contains 3 sensors: an accelerometer, a gyroscope, and a magnetometer. Each sensor can be communicated with using I2C from analog pins 4 and 5 on the Arduino Uno. We powered the sensor stick using the 5 volts out available on the Arduino Uno.  I2C also requires pull-up resistors on the data (SDA) and clock (SCL) buses.  We used two pull up resistors soldered to the 5 volt output of the Arduino shield and SCL/SDA. To prevent the sensor from receiving too much noise during flight, the sensor was soldered to an Arduino ProtoShield on the pins.  The other end of the 9DOF was glued to the shield. The source code for the project is based on the AeroQuad software  and can be found here.

Leave a comment