Lauren’s Final Spear | Halloween Costume



My goal for this project was to create a staff/walking stick/spear based on Spinel from Steven Universe. I wanted it to be something fun to carry around to Halloween parties for the rest of the week. Something striking and eye catching, creating it in my own style while keeping the tone of Spinel’s [dark + twisted love].

I really enjoy how this project came out, it feels really true to me and I was able to experiment with a few different techniques [laser. cutting, 3d printing]. I’m super interested in making more variations of this object, maybe based on different characters or moods.

Materials + Parts

3/4 inch pvc pole

Acrylic 1/8 Acrylic scrap: I ended up testing multiple various sizes and colors of acrylic sheets to see how they diffused the light

Adafruit Gemma M0

1 RGBW LED Neopixel Stick

Electrical Wires

USB Battery Pack

Solder

1 Black Feather Boa

Hot Glue

Transparent PLA

Stuffing

3D Print File Credits

Spinels Scythe Rejuvenator

Struggles
My biggest struggle was probably the 3d printing. While trying to print I ended up going through multiple versions of my design in order to troubleshoot the most efficient way to include the supports. I really enjoyed exploring the 3d printing community files, I have some printing experience but it was never something that really excited me. However, I found it really fun looking through all of the 3d print files that people upload to places like Thingiverse.

++ clearing out the supports out of something so narrow + long like the gem was way more tricky than I was expecting.

++ I did have to re-solder my Gemma 3 times because I kept messing up the ins/outs. Shoutout to Mallika + Tristan for helping me figure out what was wrong.

Sketch + 3D Printing

Circuit Diagram:


Code:

#define PIN 1
#define NUMPIXELS 8

Adafruit_NeoPixel strip(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800);

void setup() {
strip.begin();
strip.show();
}

void loop() {
// two quick pulses then rest
heartbeat();
delay(1000);
}

void heartbeat() {
for (int i = 0; i < 2; i++) {
pulse(255, 20, 100, 600, 200); // pinkish pulse: r,g,b, rise ms, fall ms
delay(150);
}
}

void pulse(int r, int g, int b, int riseTime, int fallTime) {
int steps = 30;
for (int i = 0; i <= steps; i++) { float bLevel = (float)i / steps; strip.fill(strip.Color(r * bLevel, g * bLevel, b * bLevel)); strip.show(); delay(riseTime / steps); } for (int i = steps; i >= 0; i–) {
float bLevel = (float)i / steps;
strip.fill(strip.Color(r * bLevel, g * bLevel, b * bLevel));
strip.show();
delay(fallTime / steps);
}
}

**I do feel like the photographer that was in the VFL got more progress shots than I did of this project so I’m hoping we get access to those. This was the least amount of documenting I’ve done for a project, which was surprising because initially i felt like I was capturing every step.

Lauren’s Halloween Ideas

I decided to find inspiration in the styling of some characters I’ve always really enjoyed + I know that I want to make something using acrylic sheets, the way the lights look within the transparent frame feels very enticing.


Ice Headpiece
This is the ice queen from the early 2000s movie sharkboy and lavagirl. I’ve always been drawn to the world they created around her, the headpiece is actively the cherry on top. I would love to experiment with this concept and make some sort of pierced acrylic headpiece.

Shopping List:
Acrylic sheets
Metal hoops/accessories
Headband as base
laser cutting appointment


Steven Universe Spinel
Spinel is a scorned character in Steven Universe, the way they designed her character to reflect the arc of her character has always been so satisfying to me.
a. I want to make the axe that Spinel carries. theres a red Spinel gem in the middle of a transparent/translucent “blade”. I’m curious of playing with this design and making a glowing heart scepter.
b. Spinel also has these heart shaped hair puffs. Im curious about making a headband in the shape of a heart, that could possible be covered with my hair or just worn as a headband.

Shopping List:
some sort of staff/decorated stick
fabric to wrap handle
acrylic sheets
laser cutting appointment


—————

NeoPixel LEDs 


Thanks to Josh for the Neopixel help 🙂