# 3D Printed Glowing Mace Prop

## Overview

https://youtu.be/JaP2hzsd36Q

![](https://cdn-learn.adafruit.com/assets/assets/000/035/837/medium800/leds_hero-1.jpg?1474477476)

## The Morning Star

More&nbsp;commonly known as a "mace", this medieval weapon has been popularized by one of DC Comics heroines, Hawkgirl.&nbsp;Hawkgirl carries a mace made of Nth metal, which generates electric currents and repels magical energies.&nbsp;

From Wikipedia:

> A **morning star** is any of several medieval [club](https://en.wikipedia.org/wiki/Club_(weapon) "Club (weapon)")-like weapons that included one or more spikes. Each used, to varying degrees, a combination of blunt-force and puncture attack to kill or wound the enemy.

![](https://cdn-learn.adafruit.com/assets/assets/000/035/839/medium800/leds_hero-3.jpg?1474477515)

## 3D Printing & Electronics

This project is uses 3D Printing and electronics to create a cosplay prop that lights up. The head of the mace is an icosahedron with 18 individual spikes. Inside the head is a NeoPixel Jewel that&nbsp;glows bright and animates a color wheel. The handle houses an&nbsp;Adafruit Trinket and 2200mAh battery. On the bottom of the pommel features&nbsp;a metal pushbutton with a red LED ring.

There's a total of 28 3D printed parts, most of which screw together via custom threads. This project utilized some special filaments such as Wood and Steel composite PLA materials, making an interesting combination.&nbsp;

![](https://cdn-learn.adafruit.com/assets/assets/000/035/840/medium800/leds_hero-4.jpg?1474477537)

## Get Inspired &&nbsp;Remix

If a&nbsp;Moring Star isn't your jam, you could easily use this tutorial as a guide for making a number of different cosplay props. The components and circuit can totally be used in lots of different ways, for example, this could be a sword, battle axe or even a wearable gauntlet.&nbsp;

The goal of this project is to inspire cosplayers and prop makers to use electronics in their builds. By incorporating micro-controllers and NeoPixel LEDs, you're giving&nbsp;your props&nbsp;that extra dimension, adding value and depth that makes it stand out.

![](https://cdn-learn.adafruit.com/assets/assets/000/035/838/medium800/leds_hero-2.jpg?1474477496)

## Prerequisite Guides

We suggest walking through the following guides to get a better understanding of the components and Arduino IDE. We also have great tutorials on learning how to solder.

- [Collin's Lab: Soldering](../../../../collins-lab-soldering/video?view=all)
- [Adafruit's Uber NeoPixel Guide](../../../../adafruit-neopixel-uberguide)
- [Adafruit Trinket](../../../../introducing-trinket/downloads?view=all)

## Parts

All of the components used in this project are listed below and in the right hand sidebar.&nbsp;

- [Adafruit Trinket](https://www.adafruit.com/products/1500)
- [NeoPixel Jewel](https://www.adafruit.com/products/2226)
- [Switched JST Breakout](https://www.adafruit.com/products/1863)
- [Metal On/Off pushbutton w/ Red LED Ring](https://www.adafruit.com/products/916)
- [2200mAh Cylindrical&nbsp;Battery](https://www.adafruit.com/products/1781)
- [Adafruit Micro Lipo Charger](https://www.adafruit.com/products/1904)

## Tools & Supplies

You'll need some tools and supplies to complete this project, but feel free to improvise and use any materials you like.

- [3D Printer](https://www.adafruit.com/categories/245) & [Filament](https://www.adafruit.com/products/2080)
- [Soldering Iron](https://www.adafruit.com/categories/84) & Solder
- [Wire Strippers](https://www.adafruit.com/products/527) / [Cutters](https://www.adafruit.com/products/152)
- [Panavise Jr.](https://www.adafruit.com/products/151) / [Helping Third Hands](https://www.adafruit.com/products/291)
- USB Cable & [Wire](https://www.adafruit.com/categories/473)
- Super glue / E6000 Adhesive

![](https://cdn-learn.adafruit.com/assets/assets/000/035/841/medium800/leds_hero-5.jpg?1474477554)

## Lighting Effects

The photos shown here are not photoshopped, they're just taken with a long exposure. This results in the&nbsp;" **Light Painting**" effect that's a common photography technique. NeoPixel LEDs can get pretty bright, enough for the diffusion to be visiable even in well lit&nbsp;environments.

![](https://cdn-learn.adafruit.com/assets/assets/000/035/842/medium800/leds_hero-6.jpg?1474477575)

# 3D Printed Glowing Mace Prop

## Circuit Diagram

![](https://cdn-learn.adafruit.com/assets/assets/000/035/846/medium800/leds_circuit-diagram-cropped.png?1474483040)

## Wired Connections

The circuit diagram above shows how the components will be wired together. This won't be 100%&nbsp;exact in the actual circuit but it's a very close approximation. Some of the connections, such as the positive and negative pads on the bottom of the Trinket, are not visible in the diagram, so it's a good reference, but not exact. Note, the order of the connections on the push&nbsp;button are different than the physical one.

- Adafruit Trinket Power to C1 on Push&nbsp;Button
- Adafruit Trinket GND to GND on JST Switch
- Adafruit Trinket GND to GND on NeoPixel Jewel
- Adafruit Trinket BAT+ to PWR on NeoPixel Jewel
- Adafruit Trinket #0 to Data Input on NeoPixep Jewel
- Push Button LED + to GND on JST Switch
- Push Button LED – to C1 on Push Button
- JST Switch + to NO on Push Button&nbsp;

## Battery Power

The circuit will be powered by a 3.7V 2200mAh Lithium ion cylindrical battery via JST connection. The battery plugs directly into the Switched JST-PH 2-pin breakout board.

# 3D Printed Glowing Mace Prop

## Code

## Getting Code Onto Trinket

In this portion of the guide, we'll get code uploaded to the **Adafruit Trinket** micro-controller. If you don't write / understand code, don't&nbsp;to worry! You don't need to be a programmer to be able to upload prewritten code :-)&nbsp;

We'll walk you through the whole process.&nbsp;

First, visit the Trinket tutorial page by clicking the button below. Follow the instructions to download & setup the Arduino IDE and install drivers.

[Getting started with Trinket!](https://learn.adafruit.com/introducing-trinket/)
Make sure you are able to get sketches compiled and uploaded, especially the blink example in the tutorial. Once you are comfortable with using the Trinket, you can continue!

## Install Adafruit NeoPixel Library

Next, we need to add support for NeoPixels.

Visit the Adafruit NeoPixel tutorial to install the NeoPixel library!

[Install NeoPixel Library](https://learn.adafruit.com/adafruit-neopixel-uberguide/arduino-library-installation)
## Uploading Code to Board

Now that we have the Adafruit boards & NeoPixel library installed, we can get our code ready to upload onto the board. Select all of the code listed below in the black box and copy it to your clip board. Then, in Arduino IDE, paste it in the sketch window (making sure to overwrite anything currently there). Next, goto the **Tools** menu \> **Board** and select **Adafruit Trinket** &nbsp;(if you're using the **3V Adafruit Trinket** version use **Trinket 8Mhz**. If you're using the **5V Trinket** , select **Trinket 12Mhz** ). Now you can click on the " **check mark**" icon to verify the code. If it's all good, we can continue to upload the code to the board.

## Connect USB Data Cable to Trinket

Be sure to use a micro USB cable that can transfer data - A USB cable that ONLY charges devices will simply not work. Plug it into the microUSB port on the Adafruit Trinket board and the USB port on your computer (try to avoid connecting to a USB hub). As soon as you plug it in, you'll see a red LED blink on the Adaruit Trinket - This let's you know the board is ready to except code. While the LED is blinking, click on the Upload button (It's a right arrow icon, next to the chekc mark). The Arduino IDE will notify you if the upload is successful and&nbsp;completed.

```auto
#include <Adafruit_NeoPixel.h>
#ifdef __AVR__
  #include <avr/power.h>
#endif

#define PIN 0

// Parameter 1 = number of pixels in strip
// Parameter 2 = Arduino pin number (most are valid)
// Parameter 3 = pixel type flags, add together as needed:
//   NEO_KHZ800  800 KHz bitstream (most NeoPixel products w/WS2812 LEDs)
//   NEO_KHZ400  400 KHz (classic 'v1' (not v2) FLORA pixels, WS2811 drivers)
//   NEO_GRB     Pixels are wired for GRB bitstream (most NeoPixel products)
//   NEO_RGB     Pixels are wired for RGB bitstream (v1 FLORA pixels, not v2)
//   NEO_RGBW    Pixels are wired for RGBW bitstream (NeoPixel RGBW products)
Adafruit_NeoPixel strip = Adafruit_NeoPixel(7, PIN, NEO_GRB + NEO_KHZ800);

// IMPORTANT: To reduce NeoPixel burnout risk, add 1000 uF capacitor across
// pixel power leads, add 300 - 500 Ohm resistor on first pixel's data input
// and minimize distance between Arduino and first pixel.  Avoid connecting
// on a live circuit...if you must, connect GND first.

void setup() {
  // This is for Trinket 5V 16MHz, you can remove these three lines if you are not using a Trinket
  #if defined (__AVR_ATtiny85__)
    if (F_CPU == 16000000) clock_prescale_set(clock_div_1);
  #endif
  // End of trinket special code


  strip.begin();
  strip.show(); // Initialize all pixels to 'off'
}

void loop() {
  rainbow(20);
}

void rainbow(uint8_t wait) {
  uint16_t i, j;

  for(j=0; j<256; j++) {
    for(i=0; i<strip.numPixels(); i++) {
      strip.setPixelColor(i, Wheel((i+j) & 255));
    }
    strip.show();
    delay(wait);
  }
}

// Input a value 0 to 255 to get a color value.
// The colours are a transition r - g - b - back to r.
uint32_t Wheel(byte WheelPos) {
  WheelPos = 255 - WheelPos;
  if(WheelPos < 85) {
    return strip.Color(255 - WheelPos * 3, 0, WheelPos * 3);
  }
  if(WheelPos < 170) {
    WheelPos -= 85;
    return strip.Color(0, WheelPos * 3, 255 - WheelPos * 3);
  }
  WheelPos -= 170;
  return strip.Color(WheelPos * 3, 255 - WheelPos * 3, 0);
}
```

# 3D Printed Glowing Mace Prop

## 3D Printing

![](https://cdn-learn.adafruit.com/assets/assets/000/035/848/medium800/leds_3d-parts.jpg?1474484534)

## 3D Printed Parts

There's a total of 28 parts the need to be printed. They're listed below in a table. The **d2m-spike-face.stl** part will need to be printed 18 times. The **d2m-frame-a.stl** and **d2m-frame-b.stl** parts are not the same / duplicate of each other.&nbsp; **d2m-frame-a.stl** features an opening for the **d2m-led.stl** part.

[Edit Design](https://a360.co/3UB6TKL)
[Download STLs on Pinshape](https://pinshape.com/items/26476-3d-printed-glowing-icosahedron-mace-with-spikes)
[Download STLs on Youmagine](https://www.youmagine.com/designs/glowing-icosahedron-mace-with-spikes)
[Download STLs on Thingiverse](http://www.thingiverse.com/thing:1791386)
## Reorient Parts Flat on Bed

Do not print the parts "as-is". You'll need to reorient the parts so they're flat on the bed. Use your best judgement so they do not require any support material. Most slicing programs will allow you to select a face and place flat on the bed of the 3D printer.&nbsp;

## Large Parts

Some of the parts, such as the rod and handle are fairely large and may not fit on the bed of every 3D printer. these could optionally be printed in halves and glued together.

## Support Material & Rafts

Although there are no support material or rafts required, I do recommened adding some brims to the parts for best bed adhesion. The **d2m-rod.stl** &nbsp;file is a rather tall part (180mm) and could easily topple over while printing, so a large brim can help keep it on the bed of the 3D printer.

## Post-Processing & Finishing Techniques

I printed the spikes and the d20 frame halves in Proto Pasta's steel&nbsp;composite PLA. This material can be sanded down and polished using a rock tumbler or polishing compound. The only other parts the were sanded down was the rod. This was sanded and spray painted with a nickel / silver color, which gave it a smooth finish.

# 3D Printed Glowing Mace Prop

## Wiring Part I

## Repurpose USB Cable

Let's start building our circuit by getting an old USB cable. Chances are you have one laying around.&nbsp;We'll use this USB cable to connect our NeoPixel Jewel to the Adafruit Trinket. The length of the USB cable should be somewhere over 15in (38cm).

![leds_usb-cable.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/849/medium640/leds_usb-cable.jpg?1474492708)

## Trim USB Cable

Next, we'll need to snip off the connectors from both ends of the cable. Our cable should be approximately&nbsp;15in (38cm) in legnth. Since this&nbsp;wire needs to&nbsp;connet the NeoPixel Jewel to the Adafruit Trinket, it needs to be long enough to go travel through&nbsp;the 3D printed rod and handle.&nbsp;

![leds_usb-cable-cut.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/851/medium640/leds_usb-cable-cut.jpg?1474492902)

![leds_usb-cable-trimmed.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/852/medium640/leds_usb-cable-trimmed.jpg?1474492936)

## Strip USB Cables

Now we'll need to remove insulation from both ends of the cable using either a pair of wire strippers or a hobby knife. Once you remove the insulation, you'll find four individial wires. There's also very fine strandes of wire and a wrapper of sorts. Go ahead and snip these away, leaving just the four wires. They'll most likely be color coded like shown in the photo.

![leds_usb-cable-strip.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/853/medium640/leds_usb-cable-strip.jpg?1474493092)

![leds_usb-cable-stripped.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/854/medium640/leds_usb-cable-stripped.jpg?1474493152)

## Strip Wires

We'll only need three of the four wires, so feel free to snip it away. Next, use the pair of wire stirppers to remove insulation from the three wires. We'll expose about 5mm of bare wire.

![leds_usb-cable-snip-white.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/855/medium640/leds_usb-cable-snip-white.jpg?1474493559)

![leds_usb-cable-strip-3.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/856/medium640/leds_usb-cable-strip-3.jpg?1474493585)

## Tin Wires

Now it's time to tin our three wires by applying a bit of solder to the tips of the bare wires. I suggest using a pair of helping third hands to keep&nbsp;the wires steady while soldering. You'll need to do this for both ends of the cable.

![leds_usb-cable-tin.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/857/medium640/leds_usb-cable-tin.jpg?1474493646)

## Solder Wires to NeoPixel Jewel

Next, we can connect the three wires to the NeoPixel Jewl. Again, I suggest using a pair of helping third hands to keep things steady while you solder. I like to tin the pads on the NeoPixel Jewel first - applying small amounts of solder to the pins labeled **Data Input** , **5DC**  **Power** and **GND**. Then, use the tip of the soldering iron to heat up the pads while insterting wires into the pad. Feel free to use the same color scheme for consistency&nbsp;(red to power, black to ground, green to data input). With that complete, we're left with a long cable connected to our NeoPixel Jewel.

![leds_jewel-wires.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/858/medium640/leds_jewel-wires.jpg?1474493716)

![leds_jewel-wired.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/859/medium640/leds_jewel-wired.jpg?1474493771)

# 3D Printed Glowing Mace Prop

## Wiring Part II

## Components

Let's gather our components. Here, we'll need our metal on/off button, the JST switch breakout, and the Adafruit Trinket.

![leds_prep-components-wiring.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/861/medium640/leds_prep-components-wiring.jpg?1474494017)

## Prep&nbsp;On/Off Button

The on/off button comes with a hex washer, go ahead and remove it by unscrewing it from the button. We won't be using it in this project, but I wouldnt disguard it.

![leds_button-remove-washer.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/860/medium640/leds_button-remove-washer.jpg?1474493955)

## Wire for LED

Next, we'll need to get a piece of wire to connect the LED of our push button to power it. So, cut of piece of wire about the length of the push button. Here, I'm using 30AWG silicone cover stranded wire - it's my favorite! Then, use wire strippers to remove a bit of insulation from both ends of the wire, then apply some solder to "tin" them. These helps prevent the strands from fraying and makes it easier to connect to components.

![leds_button-led-pos-wire.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/863/medium640/leds_button-led-pos-wire.jpg?1474494426)

![leds_button-wire-tin.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/864/medium640/leds_button-wire-tin.jpg?1474495113)

## Connect Wire to LED on&nbsp;Button

Now we can tin the leads of the on/off button. Use the tip of the soldering iron to heat up the lead and apply a bit of solder - it should just flow / stick nicely. Then, while heating up the tinned lead labled "+",&nbsp;place the wire onto the heated solder and let it cool. It will fuse to the postive lead of the LED on the on/off button.

![leds_secure-button.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/862/medium640/leds_secure-button.jpg?1474494255)

![leds_button-solder-led-wire.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/872/medium640/leds_button-solder-led-wire.jpg?1474495748)

## Wires for Trinket & JST Breakout

We'll need two sets of two wires, a total of four wires, for connecting our next set of components. They can be the same legnth, approximately the legnth of the Adafruit Trinket. Again, we'll strip and tin both ends of each wire.

![leds_trinket-wires-cut.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/865/medium640/leds_trinket-wires-cut.jpg?1474495186)

![leds_jst-wires.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/866/medium640/leds_jst-wires.jpg?1474495241)

## Solder Wires to Trinket

OK, now that we have some wires prepaired, we'll use two of them to connecto the positive and negative pads on the Adafruit Trinket. I suggest using a panavise jr. or pair of helping third hands to keep the Trinket steady while soldering. On the bottom of the Adafruit Trinket, you'll see two pads labeld "+" and "–". We can apply some solder to these by tinning them. Then, heat up the solder using the tip of the soldering iron and lay a wire onto the pad. Here, I used blue for negative, red for positive.&nbsp;

![leds_trinket-wires-solder.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/869/medium640/leds_trinket-wires-solder.jpg?1474495398)

## Solder Wires to JST Breakout

Next, secure our JST switched breakout to a panavise jr or helping thirld hands and tin up the pins (GND, GND, + and SW). Then, we can solder on remaining two wires to the + and GND labeled pins. Once that's done, we can connect the wire connected to the negative pad on the Adaruit Trinket, to one of the GND pins on the JST switched breakout.

![leds_jst-wires-solder.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/870/medium640/leds_jst-wires-solder.jpg?1474495474)

![leds_trinket-gnd-jst.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/871/medium640/leds_trinket-gnd-jst.jpg?1474495536)

## Heat Shrink Positive Connections

Now we need to connect the positive wire from the LED on the button AND the positive wire from the Adafruit Trinket to the same lead on the button. This can be a little tricky, but I found it easy if both wires were jointed together - you can use a piece of heat shrink tubing (like I have) or a piece of electrical tape will work too.&nbsp;

![leds_shrink-tubing-positive-wires.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/875/medium640/leds_shrink-tubing-positive-wires.jpg?1474495885)

## Solder Positive Connections to Common

Once both wires are close to each other, you should be able to solder them to the lead on the on/off button labeled C1 (common). I found using a pair of tweezers to hold the wires to&nbsp;be helpful. It's a bit tricky because we need to solder two wires to one lead at the same time.&nbsp;

![leds_positive-wires-common.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/876/medium640/leds_positive-wires-common.jpg?1474495992)

## Solder Negative to LED

Next, we'll need to connect the negative wire from the JST switched breakout to the negative labeled lead on the LED of the on/off button. This lead will have a "–" symbol on it.

![leds_jst-gnd-led-btn.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/877/medium640/leds_jst-gnd-led-btn.jpg?1474496116)

## Solder Positive to NO

Now we can&nbsp;connect the positive (+) wire coming from the JST switched breakout to the NO1 (normally open) labeled lead on the on/off button.

![leds_jst-pwr-N0.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/878/medium640/leds_jst-pwr-N0.jpg?1474496188)

## Test Circuit

Our circuit is nearly completed! Now is a good time to test it out and see if our connections are working correctly. Plug in the JST connector from the battery to the JST connector on the JST switched breakout. Then, push the on/off button all the way in. It should lock / toggle on and the red LED should light up!

The Trinket should also turn on, a green and red LED light will light up aswell.

![leds_test-btn-jst-circuit.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/879/medium640/leds_test-btn-jst-circuit.jpg?1474496256)

# 3D Printed Glowing Mace Prop

## Assembly

## Insert Jewel To Holder

With most of our circuitry complete, let's start the assembly! Grab the wired NeoPixel Jewel and thread the end of the cable through **the&nbsp;d2m-led.stl** part. Then, press the&nbsp;NeoPixel Jewel into the holder until the PCB&nbsp;clips into place.

![leds_insert-jewel-to-holder.gif](https://cdn-learn.adafruit.com/assets/assets/000/035/889/medium640thumb/leds_insert-jewel-to-holder.jpg?1474566268)

## Insert USB&nbsp;To Cap

Next, thread the end of the cable from the NeoPixel Jewel through the&nbsp; **d2m-cap.stl** part.

![leds_insert-usb-to-cap.gif](https://cdn-learn.adafruit.com/assets/assets/000/035/890/medium640thumb/leds_insert-usb-to-cap.jpg?1474566545)

## Insert&nbsp;USB To Rod Handle

Now you can thread the wire from the NeoPixel Jewel through the rod.

![leds_insert-usb-to-rod-handle.gif](https://cdn-learn.adafruit.com/assets/assets/000/035/891/medium640thumb/leds_insert-usb-to-rod-handle.jpg?1474567189)

## Bond Holder To Cap

Next, we'll need to attach the **d2m-led.stl** part to **d2m-cap.stl**. I used super glue because it dries fast and has a great bond. Once dry, screw on the **d2m-cap** part onto the rod until they're fully tightened.&nbsp;

![leds_add-glue-to-jewel-holder.gif](https://cdn-learn.adafruit.com/assets/assets/000/035/892/medium640thumb/leds_add-glue-to-jewel-holder.jpg?1474567579)

## Install Button to Pommel

&nbsp;Now we can install the button to the pommel. First, we'll need to inser the JST switched breakout and Adafruit Trinket through the hole on the bottom of the pommel. Then, we can press the button in until it's flush with the bottom of the pommel.

![leds_button-install-pomel.gif](https://cdn-learn.adafruit.com/assets/assets/000/035/895/medium640thumb/leds_button-install-pomel.jpg?1474567933)

## Solder NeoPixel Wires to Trinket

Next, we'll need to connect the three wires from the NeoPixel Jewl to the Adafruit Trinket. **Positive** (red) to **BAT+** , **Negative** &nbsp;(ground) to **GND** , and **Data Input** to **#0**.

![leds_trinket-neopixel-solder.jpg](https://cdn-learn.adafruit.com/assets/assets/000/035/899/medium640/leds_trinket-neopixel-solder.jpg?1474568577)

## Final&nbsp;Circuit Test

With all of our connections complete we can test out our circuit. Plug in the JST connector from the battery to the JST connector on the JST switched breakout. Then, push the button until the&nbsp;circuit powers on.

![leds_final-circuit-test.gif](https://cdn-learn.adafruit.com/assets/assets/000/035/898/medium640thumb/leds_final-circuit-test.jpg?1474568424)

## Install Circuit Into Handle

We can fit the battery, JST breakout and Adafruit Trinket into the handle by carefully stuffing each component. You have to be very careful not to break any of the connections and ensure none of the pads from the components touch each other. Start by inserting the battery all the way into the handle. Then, the JST breakut, followed by the Adafruit Trinket. Once they're in a good spot, you can twist the pommel onto the end of the rod until they're fully tightened.

![leds_install-circuit-handle.gif](https://cdn-learn.adafruit.com/assets/assets/000/035/915/medium640thumb/leds_install-circuit-handle.jpg?1474572750)

## Apply Glue to Frame&nbsp;B

Now it's time to work on the head of the mace. I used E6000 adhesives to secure **frame B** &nbsp;to the icosahedron shell. Lightly apply glue to the edges and fit it over the top of the shell. **Frame B** should go over half of the shell - **Frame A** has an opening that needs to match up with the opening on the icosahedron.

![leds_apply-glue-frame-1.gif](https://cdn-learn.adafruit.com/assets/assets/000/035/916/medium640thumb/leds_apply-glue-frame-1.jpg?1474572456)

## Apply Glue to&nbsp;Frame A

Just like we did for frame B, apply some glue to the edges. Then, orient the frame so the opening lines up with the opening on the icosahedron.&nbsp;

![leds_apply-glue-frame-2.gif](https://cdn-learn.adafruit.com/assets/assets/000/035/918/medium640thumb/leds_apply-glue-frame-2.jpg?1474572492)

## Join Two Frames Together

Firmly press the two halves together. I layed&nbsp;a 2.5lbs weight on top of the isosahedron to keep the two halves tight. Wait about an hour for the glue to fully cure.

![leds_glue-frame-halves.gif](https://cdn-learn.adafruit.com/assets/assets/000/035/919/medium640thumb/leds_glue-frame-halves.jpg?1474572519)

# 3D Printed Glowing Mace Prop

## Assembly II

## Secure Icosahedron To Rod

Place the handle + rod + neopixel jewl assembly over the opening of the icosahedron. Press down until the d2m-led part snaps into place. Ensure the three mounting holes line up.

We need to secure the head of the mace to the&nbsp; **d2m-led.stl** part using 4x 4-40 (3/8 long) machine screws.&nbsp;Insert one screw into the one of the holes on the bottom of the part and use a screw driver to fasten the screw until goes through the d2m-led.stl and&nbsp;d2m-shell.stl.

&nbsp;

You may find it easier to fasten a screw into each hole to "tap" and create threads before securing the two parts together.

![leds_d20-install-screws.gif](https://cdn-learn.adafruit.com/assets/assets/000/035/925/medium640thumb/leds_d20-install-screws.jpg?1474572749)

## Attach Spikes

Once the icosahedron is secured to the rod+handle assembly, we can work on attaching the 18 spikes to the icosahedron. I used super glue here because it dries fast and has a tight bond. Apply glue to the bottom of each spike and press it down onto one of the 18 faces of the icosahedron. Wait for the glue to dry before starting on the next spike. The tall spike,&nbsp;d2m-spike-top.stl is meant to attach to the head / top of the icosahedron.

![leds_glue-spikes-d20.gif](https://cdn-learn.adafruit.com/assets/assets/000/035/926/medium640thumb/leds_glue-spikes-d20.jpg?1474572775)

![](https://cdn-learn.adafruit.com/assets/assets/000/035/965/medium800thumb/leds_guide-loop-thumb.jpg?1474649543)

## Final Build

Wohoo! Our build is now complete. Press the button to turn on the circuit. When you need to recharge the battery, you can use an [Adafruit Micro Charger](https://www.adafruit.com/products/1304) or [Adafruit Micro Charger Jack](https://www.adafruit.com/products/1904). Unscrew the pommel from the handle to access the battery or circuit.&nbsp;


## Featured Products

### Adafruit Trinket - Mini Microcontroller - 3.3V Logic

[Adafruit Trinket - Mini Microcontroller - 3.3V Logic](https://www.adafruit.com/product/1500)
 **Deprecation Warning: The Trinket bit-bang USB technique it uses doesn't work as well as it did in 2014, many modern computers won't work well. So while we still carry the Trinket so that people can maintain some older projects, we no longer recommend it.** <a...></a...>

In Stock
[Buy Now](https://www.adafruit.com/product/1500)
[Related Guides to the Product](https://learn.adafruit.com/products/1500/guides)
### NeoPixel Jewel - 7 x 5050 RGB LED with Integrated Drivers

[NeoPixel Jewel - 7 x 5050 RGB LED with Integrated Drivers](https://www.adafruit.com/product/2226)
Be the belle of the ball with the NeoPixel Jewel! &nbsp;We fit seven of our tiny&nbsp;5050 (5mm x 5mm) smart RGB LEDs onto a beautiful, round&nbsp;PCB with mounting holes and a chainable design to create what we think is our most elegant (and evening-wear appropriate) NeoPixel board...

Out of Stock
[Buy Now](https://www.adafruit.com/product/2226)
[Related Guides to the Product](https://learn.adafruit.com/products/2226/guides)
### Switched JST-PH 2-Pin SMT Right Angle Breakout Board

[Switched JST-PH 2-Pin SMT Right Angle Breakout Board](https://www.adafruit.com/product/1863)
This switched JST connector is the best way to quickly prototype with our LiPoly batteries. We paired a genuine JST connector with a slide switch that can do up to 600mA. Both are soldered onto a breadboard-friendly breakout. There's two ground pins, one 'switched' power pin, and...

In Stock
[Buy Now](https://www.adafruit.com/product/1863)
[Related Guides to the Product](https://learn.adafruit.com/products/1863/guides)
### Adafruit Micro-Lipo Charger for LiPo/LiIon Batt w/MicroUSB Jack

[Adafruit Micro-Lipo Charger for LiPo/LiIon Batt w/MicroUSB Jack](https://www.adafruit.com/product/1904)
Oh so handy, this little lipo charger is so small and easy to use you can keep it on your desk or mount it easily into any project! Simply plug it via any MicroUSB cable into a USB port and a 3.7V/4.2V lithium polymer or lithium ion rechargeable battery into the JST plug on the other end....

In Stock
[Buy Now](https://www.adafruit.com/product/1904)
[Related Guides to the Product](https://learn.adafruit.com/products/1904/guides)
### Rugged Metal On/Off Switch with Red LED Ring

[Rugged Metal On/Off Switch with Red LED Ring](https://www.adafruit.com/product/916)
These chrome-plated metal buttons are rugged and look real good while doing it! Simply drill a 16mm hole into any material up to 1/2" thick and you can fit these in place, there's even a rubber gasket to keep water out of the enclosure. On the front of the button is a flat metal...

In Stock
[Buy Now](https://www.adafruit.com/product/916)
[Related Guides to the Product](https://learn.adafruit.com/products/916/guides)
### Lithium Ion Cylindrical Battery - 3.7v 2200mAh

[Lithium Ion Cylindrical Battery - 3.7v 2200mAh](https://www.adafruit.com/product/1781)
Need a big battery for your project? This lithium-ion battery contains a 2200mAh and a protection circuit that provides over-voltage, under-voltage, and over-current protection. Yet, it is slim and easy to fit into many project cases.  
  
This cell can provide 2 **C** of...

In Stock
[Buy Now](https://www.adafruit.com/product/1781)
[Related Guides to the Product](https://learn.adafruit.com/products/1781/guides)
### Ultimaker 2+ 3D Printer

[Ultimaker 2+ 3D Printer](https://www.adafruit.com/product/2673)
The **Ultimaker 2+** is one of our favorite 3D printers on the market. It's a well-built open-source compact machine with an excellent UX.&nbsp;Every inch of the Ultimaker 2+ is designed to create the most effortless and reliable 3D printing experience ever!&nbsp;<a...></a...>

No Longer Stocked
[Buy Now](https://www.adafruit.com/product/2673)
[Related Guides to the Product](https://learn.adafruit.com/products/2673/guides)
### Filament for 3D Printers in Various Colors and Types

[Filament for 3D Printers in Various Colors and Types](https://www.adafruit.com/product/2080)
Having a 3D printer without filament is sort of like having a regular printer without paper or ink. &nbsp;And while a lot of printers come with some filament there's a good chance you've been printing up a storm and need something new. &nbsp;That's why we've started carrying a...

Out of Stock
[Buy Now](https://www.adafruit.com/product/2080)
[Related Guides to the Product](https://learn.adafruit.com/products/2080/guides)

## Related Guides

- [Lie Ren's Stormflower Gun Blade](https://learn.adafruit.com/stormflower-gun-blade.md)
- [NeoPixel Novelty Cufflinks with Scrolling Text](https://learn.adafruit.com/neopixel-novelty-cufflinks-with-scrolling-text.md)
- [Battery Powering Wearable Electronics](https://learn.adafruit.com/battery-powering-wearable-electronics.md)
- [Serial Debugging with GEMMA](https://learn.adafruit.com/serial-debugging-with-gemma.md)
- [DIY Bluetooth Gamepad](https://learn.adafruit.com/diy-bluetooth-gamepad.md)
- [Guardian Robot with LEDs](https://learn.adafruit.com/guardian-robot-with-leds.md)
- [Timelapse Spy Camera](https://learn.adafruit.com/timelapse-spy-camera.md)
- [Fix-It Felix Jr. Hammer with Sound FX](https://learn.adafruit.com/fix-it-felix-jr-hammer.md)
- [Adding Third Party Boards to the Arduino v1.6.4+ IDE](https://learn.adafruit.com/add-boards-arduino-v164.md)
- [PiGRRL - Raspberry Pi Gameboy](https://learn.adafruit.com/pigrrl-raspberry-pi-gameboy.md)
- [Multi-tasking the Arduino - Part 3](https://learn.adafruit.com/multi-tasking-the-arduino-part-3.md)
- [Introducing Trinket](https://learn.adafruit.com/introducing-trinket.md)
- [LED Harness Bra](https://learn.adafruit.com/neopixel-led-harness-bra.md)
- [NeoPixel Flame Torch](https://learn.adafruit.com/neopixel-flame-torch.md)
- [Trinket / Gemma IR Control](https://learn.adafruit.com/trinket-gemma-ir-remote-control.md)
