# Animated NeoPixel Glow Fur Scarf

## Intro & Materials

https://www.youtube.com/watch?v=LWIkWdCatM4

Build a fantastic light-up fuzzy scarf with seven different color modes. &nbsp;Easily switch between modes with the press of a button. &nbsp;With a little easy code hacking, you can even create your own color combinations. &nbsp;

Warning: &nbsp;Wearing this scarf in public will get you noticed. &nbsp;Children will follow you around like you're the pied piper. &nbsp;Adults and paparazzi will chase you down the street in order to get a&nbsp;photo&nbsp;with you. &nbsp;Minstrels will sing ballads about the glow you left in their hearts long after your batteries die. &nbsp;

Prepare&nbsp;for the madness of instant glow-fur celebrity.

Info: 

![](https://cdn-learn.adafruit.com/assets/assets/000/021/686/medium800/leds_IMG_2645.jpg?1418341993)

For this project you will need:

- 1 - 1.5&nbsp;yds x 9&nbsp;inches of white fun fur
- [1 - 1.5 meters of White 60 LED Neopixel Strip](https://www.adafruit.com/products/1138)&nbsp;(no more than 100 pixels will run with the gemma so keep it under 100)
- [Gemma M0](https://www.adafruit.com/product/3501)&nbsp;or&nbsp;[Original Gemma](http://www.adafruit.com/products/1222)&nbsp;(M0 type is recommended!)
- [2500mAh Lithium Ion Polymer Battery](https://www.adafruit.com/products/328)&nbsp;(don't forget the&nbsp;[charger](https://www.adafruit.com/products/1304))
- [Tactile On/Off Switch with Leads](https://www.adafruit.com/products/1092)
- [Membrane LED Keypad](https://www.adafruit.com/product/1333)&nbsp;(not pictured)
- Soldering iron&nbsp;&&nbsp;solder
- A few pieces of&nbsp;[26g stranded wire](https://www.adafruit.com/product/1970)
- One&nbsp;[jumper wire](https://www.adafruit.com/products/1957)
- Heat shrink
- Needle & thread
- Two heavy duty sew-in snaps
- [USB LiIon/LiPoly charger](https://www.adafruit.com/product/1304)

Also helpful to have:

- Hot glue gun
- Heat gun
- 1/2 inch clear heat shrink
- Sewing machine

![](https://cdn-learn.adafruit.com/assets/assets/000/021/824/medium800/leds_glowfur1.jpg?1418840955)

# Animated NeoPixel Glow Fur Scarf

## Wiring

![](https://cdn-learn.adafruit.com/assets/assets/000/021/734/medium800/leds_glowfur_scarf2_circuit.jpg?1418694301)

Info: 

### LED&nbsp;Strip:

- Gemma Vout -\> +5v
- Gemma D1 -\>&nbsp;DI (or DIN on some strips)
- Gemma GND -\> GND

### Membrane&nbsp;LED Keypad:

- Gemma GND -\> Center pin
- Gemma D2 -\> Left pin

Danger: 

# Animated NeoPixel Glow Fur Scarf

## Arduino Code

Info: 

### Software Setup

Before you get started, follow the&nbsp;&nbsp;[Introducing Gemma M0 guide](../../../../adafruit-gemma-m0/)&nbsp;or&nbsp;[Introducing GEMMA guide](http://learn.adafruit.com/introducing-gemma)&nbsp;

### FastLED Library

You will also need to install the **FastLED** library in Arduino (`Sketch > Include Library > Manage Libraries...`)

### Libraries? Why? What's a Library?

In a nutshell, Arduino libraries&nbsp;have&nbsp;a lot of pre-written functions that make your neopixels easy to command. &nbsp;You can do fancy stuff without being a code guru. Yay Libraries!

FastLED is a fast, efficient, easy-to-use Arduino library for programming addressable LED strips and pixels. &nbsp;It has a lot of features to get your animations up and running fast -- and it has a lot of code samples available if you're just learning to code.

[All about Arduino Libraries](../../../../adafruit-all-about-arduino-libraries-install-use/arduino-libraries)&nbsp;will&nbsp;tell you everything you ever wanted to know about libraries, including more detailed installation instructions.

Once your curiosity is satiated and your library is installed, copy and paste the code into your Arduino window.

Go to your Tools menu and select Gemma from the list of boards. &nbsp;Plug your Gemma into your computer via the onboard USB port. &nbsp;Press the "reset" button on your Gemma and wait for the blinky red light, then click the upload button in Arduino.

https://github.com/adafruit/Adafruit_Learning_System_Guides/blob/main/Animated_NeoPixel_Glow_Fur_Scarf/Animated_NeoPixel_Glow_Fur_Scarf.ino

Taking a look at the code, you'll see that there are a few variables at the top you can change.

**#define NUM\_LEDS 78** &nbsp;-- change this number to match the number of LEDs in your scarf.

**#define BRIGHTNESS 200** &nbsp;-- change this number to make your scarf brighter (woo hoo!) or dimmer (longer battery life). &nbsp;0 is totally dark, max bright is 255.

**#define SATURATION 255** &nbsp;-- lower number to make the colors more pastel / less saturated. &nbsp;Max is 255.

**#define SPEED 10** -- 10 is kind of a slow crawl of color. &nbsp;Higher numbers make it move faster.

**#define STEPS 2** &nbsp;-- How wide the bands of color are. 1 = more like a gradient, 10 = more like stripes

You'll also see a custom purple color palette. &nbsp;You can play around with this and change it to&nbsp;whichever colors you like. &nbsp;All the supported color&nbsp;names&nbsp;can be found in the keywords.txt document you downloaded along with the FastLED library.

# If you encounter trouble…

Any time you&nbsp;hit a roadblock&nbsp;with a neopixel&nbsp;project, we’ll usually ask that you start with the “strandtest” example from our own Adafruit\_NeoPixel library. This helps us narrow down whether it’s a hardware or software issue. The library is installed similarly to FastLED or any other in Arduino (`Sketch > Include Library > Manage Libraries...`)

You’ll find the strandtest example under&nbsp; **File→Sketchbook→Libraries→Adafruit\_NeoPixel→strandtest**

**If strandtest fails to run, this suggests a hardware issue** …for example, connecting to the wrong Gemma&nbsp;pin.

If you’re new to Arduino programming and LEDs, we usually suggest starting with the Adafruit\_NeoPixel library…it’s pretty basic, the strip declaration is more conventional, and we can stay on top of keeping it compatible with our own products and the most mainstream Arduino boards.

As FastLED is a more “bleeding edge” third-party library, **we can’t always guarantee compatibility across versions or with specific boards.** You can find help through their **[community on Google+](https://plus.google.com/communities/109127054924227823508)**. This is potent stuff, written by people with a deep appreciation for LED art, and we wanted to showcase it.

# Animated NeoPixel Glow Fur Scarf

## CircuitPython Code

![](https://cdn-learn.adafruit.com/assets/assets/000/051/101/medium800/microcontrollers_gemma-cp.jpg?1518836289)

 **GEMMA&nbsp;M0** &nbsp;boards can&nbsp;run&nbsp; **CircuitPython** &nbsp;— a different approach to programming compared to Arduino sketches. In fact,&nbsp; **CircuitPython comes&nbsp;factory pre-loaded on GEMMA&nbsp;M0**. If you’ve overwritten it with an Arduino sketch, or just want to learn the basics of setting up and using CircuitPython, this is explained in the&nbsp;[**Adafruit GEMMA&nbsp;M0 guide**](../../../../adafruit-gemma-m0/circuitpython-setup-1).

Info: 

Below is CircuitPython code that works&nbsp;similarly (though not exactly the same) as the Arduino sketch shown on a prior page. To use this, plug the GEMMA M0 into USB…it should show up on your computer as a small&nbsp; **flash drive** …then edit the file “ **code.py** ” with your text editor of choice. Select and copy the code below and paste it into that file,&nbsp; **entirely replacing its contents** &nbsp;(don’t mix it in with lingering bits of old code). When you save the file, the code should&nbsp; **start running almost immediately** &nbsp;(if not, see notes at the bottom of this page).

**If GEMMA M0 doesn’t show up as a&nbsp;drive, follow the GEMMA M0 guide link above to prepare the board for CircuitPython.**

https://github.com/adafruit/Adafruit_Learning_System_Guides/blob/main/Animated_NeoPixel_Glow_Fur_Scarf/code.py

This code requires two libraries be installed:

- **neopixel**
- **adafruit\_fancyled**

&nbsp;A factory-fresh board will have the neopixel library already installed. If you’ve just reloaded the board with CircuitPython, create the “lib” directory and then copy in the neopixel.mpy and adafruit\_fancyled folder from the [latest release of the Adafruit\_CircuitPython\_Bundle](https://github.com/adafruit/Adafruit_CircuitPython_Bundle/releases/tag/20180213).&nbsp;

The [FancyLED library](https://github.com/adafruit/Adafruit_CircuitPython_FancyLED) being using in this CircuitPython example is not the same as the [FastLED](https://github.com/FastLED/FastLED)used for Arduino. FancyLED has a subset of FastLED features and some different syntax. The [FancyLED tutorial provides an excellent overview](../../../../fancyled-library-for-circuitpython/overview).&nbsp;

The file system layout on your gemma M0 should look like this:

```
$ pwd
/Volumes/CIRCUITPY
$ find .
.
./boot_out.txt
./.fseventsd
./.fseventsd/fseventsd-uuid
./lib
./lib/neopixel.mpy
./lib/adafruit_fancyled
./lib/adafruit_fancyled/adafruit_fancyled.mpy
./lib/adafruit_fancyled/fastled_helpers.mpy
./main.py

```

# Animated NeoPixel Glow Fur Scarf

## Battery & Switch

The gemma has a tiny on/off switch onboard. &nbsp;You can skip this step and just use that switch, but adding a clicky switch you can feel without opening up the scarf and looking inside can be really helpful.

![](https://cdn-learn.adafruit.com/assets/assets/000/021/826/medium800/leds_IMG_2731.jpg?1418849634)

Lithium Polymer batteries are wonderful things. &nbsp;They are small, compact and light and carry a lot of power, and will keep your LEDs running for a nice long time.

However, they do have their drawbacks -- it's good to know what the dangers are before you commit.

LiPo batteries are pretty volatile. &nbsp;If they get wet or get punctured, they can catch fire.. not a good thing when you've got them involved with your clothing. &nbsp;

They are also rather delicate. &nbsp;The batteries come with a handy JST connector, but the solder points going into the battery terminal are small and brittle. &nbsp;To keep them from breaking or doing anything dangerous, we need to add some strain relief.

I also like to add a switch to these batteries, as pulling the connector in and out of your microcontroller places wear and tear on the wires. &nbsp;Having a switch is easier and safer all around.

**If you’re particularly safety-minded (e.g. if the scarf will be worn by a child), the LiPo cell can be replaced by a [3xAA battery holder](https://www.adafruit.com/products/771), with single-use&nbsp;alkaline cells.** The battery holder already has a switch built in. Add a JST connector by cutting and splicing one end of a&nbsp;[JST battery extension cable](https://www.adafruit.com/products/1131).&nbsp;You'll need to edit the code to limit the brightness to a level the alkaline cells can sustain. Try a brightness value of 50 to start and work up or down from there.

![](https://cdn-learn.adafruit.com/assets/assets/000/021/758/medium800/leds_IMG_2695.jpg?1418701125)

Cut the red power wire in the middle and strip about 1/2" of insulation from each side. &nbsp;Strip the same amount from both leads&nbsp;of your switch, and slide some heat shrink on to each one. &nbsp;

Connect one lead to each power wire. &nbsp;Wind the wires around a whole bunch of times before your solder -- you want these connections really solid. &nbsp;Once the connections are good, slide the heat shrink down and shrink it in place.

![](https://cdn-learn.adafruit.com/assets/assets/000/021/827/medium800/leds_IMG_2731.jpg?1418849670)

Using a rubber band, secure the wires to the battery in such a way that tugging on the JST connector or on the switch doesn't pull on the wires where they connect into the battery. &nbsp;Don't use cable ties around the battery itself, or pull it too tight! &nbsp;You do NOT want to puncture this battery! &nbsp;We're trying to make it safer, not make it explode.

For good measure, add a blob of hot glue to the point where the wires connect to the battery to discourage them even more from disconnecting.

# Animated NeoPixel Glow Fur Scarf

## LED Assembly

### Cut LEDs

Decide how long you want your scarf to be. &nbsp;Mine is just shy of 1.5 yds long, but if you're tall you may want it longer. &nbsp;

**The gemma board will run&nbsp;up to around 100 pixels.** &nbsp;It doesn't have the processing power for more, so if you have more than that in your scarf you may want to use a [Flora](https://www.adafruit.com/product/659) or a [Circuit Playground](https://www.adafruit.com/product/3000).&nbsp;

Lay out the fun fur face down and mark your scarf length on the&nbsp;back. &nbsp;Then lay your LED strip on top of the fur and cut it carefully to the same length along the cut line.&nbsp;

### LED Wiring

Look at the LED strip and figure out which is the "in" end (the arrows will be pointing down the strip away from this end).

If you're using a brand-new strip and there's a connector soldered on, your job is easy. &nbsp;Cut off the connector so you have bare wires to solder onto the gemma.

If there's no connector soldered on, you'll need to add your own wires.

&nbsp;

Tin the three solder pads with your soldering iron. &nbsp;Strip&nbsp;a tiny bit of insulation off the end of three wires and solder them on to the three pads. &nbsp;I used red for 5V, yellow&nbsp;for DI, and black for G.

&nbsp;

![led_strips_neopixels_soldered.jpg](https://cdn-learn.adafruit.com/assets/assets/000/041/084/medium640/led_strips_neopixels_soldered.jpg?1493163049)

### Membrane Switch Wiring

Take your jumper wire and snip it in half. &nbsp;Slide one pin into the center slot and the other into the left-hand slot of the membrane switch. &nbsp;They don't like to stay put, so slide a piece of heat shrink over the whole connector, fill the heat shrink with hot glue, and shrink it &nbsp;down with your heat gun.

![led_strips_switch_shrink.jpg](https://cdn-learn.adafruit.com/assets/assets/000/041/090/medium640/led_strips_switch_shrink.jpg?1493165914)

![led_strips_switch_glued.jpg](https://cdn-learn.adafruit.com/assets/assets/000/041/091/medium640/led_strips_switch_glued.jpg?1493165925)

![](https://cdn-learn.adafruit.com/assets/assets/000/021/796/medium800/leds_IMG_2674.jpg?1418772850)

### Testing

Plug your battery into your gemma. &nbsp;Secure the wires with alligator clips (or just wind them tightly in place). &nbsp;Your lights will come on -- this is a great time to test your switch and make sure all your lights are working correctly before you solder everything together.

![](https://cdn-learn.adafruit.com/assets/assets/000/041/092/medium800/led_strips_fully_wired.jpg?1493165961)

### Gemma Wiring

Solder all 5 wires to the Gemma:

- Switch&nbsp;left pin to Gemma D2
- Switch&nbsp;center pin to Gemma GND
- LEDs 5v to Gemma Vout
- LEDs GND to Gemma GND
- LEDs DIN to Gemma D1

Notice that you have two wires both going to the GND pad on the Gemma! &nbsp;Be sure they're both in place before you solder.

### Finishing

Now it's time to seal up the LED strip to keep it weatherproof and minimize breakage. &nbsp;

Slide a piece of clear 1/2' heat shrink over the LED strip. &nbsp;With the heat shrink positioned over the solder connections, fill up the area inside the heat shrink with hot glue. &nbsp;

![led_strips_neopixels_heatshrink.jpg](https://cdn-learn.adafruit.com/assets/assets/000/041/086/medium640/led_strips_neopixels_heatshrink.jpg?1493163518)

![led_strips_neopixels_gemma.jpg](https://cdn-learn.adafruit.com/assets/assets/000/041/087/medium640/led_strips_neopixels_gemma.jpg?1493163531)

Then, take a heat gun or hair dryer and point it at the heat shrink to shrink it down. &nbsp;It's best to do this quickly, before the glue sets up. &nbsp;

This will create a plastic seal that will greatly increase the strength of your connections.&nbsp;

Do the same at the other end of the LED strip.

# Animated NeoPixel Glow Fur Scarf

## Create the Scarf

### Pattern & Cutting

The scarf pattern is a simple rectangle:&nbsp;

- Length: 1.5 to 2 yds&nbsp;
- Width: 8.5 inches

Lay out your fur face down and measure. Mark your cut lines on the back with a marking pen. &nbsp;

Fun fur doesn't like to be cut with scissors! &nbsp;It does, however, very much like to be ripped with your bare hands. &nbsp;Make a small incision with scissors at the beginning of your 1.5 yard cut line, then grab the fur and tear it down the line. &nbsp;(Be sure to make&nbsp;your best Incredible Hulk face and enjoy the delicious tearing sound.) &nbsp;Repeat for the&nbsp;8.5" side.

![](https://cdn-learn.adafruit.com/assets/assets/000/021/750/medium800/leds_IMG_2701.jpg?1418699671)

### Placing the LEDs

Fold the scarf in half lengthwise and make a crease, then unfold and mark the center line on your crease. &nbsp;

Fold the edge in to the center mark and make another crease,&nbsp;to find the 1/4 line, and mark that. &nbsp;

Place your LED strand along the 1/4 mark, making sure the ends don't extend past the fur. &nbsp;With a needle and thread, hand-stitch the fun fur to the silicone sleeve of the LEDS every 6-8 inches to hold it in place. &nbsp;Be careful not to stick the needle through the LED strand, just through the silicone.

![](https://cdn-learn.adafruit.com/assets/assets/000/021/751/medium800/leds_IMG_2714.jpg?1418699893)

### Secure the Electronics

Once your LEDs are secure, stitch the Gemma to the fun fur through the two unusued pads. &nbsp;Secure the membrane switch right along&nbsp;the short edge of the fur by stitching over it several times.

Sew two heavy-duty snaps along the edge of the scarf, folding it along the center line to be sure the snaps line up.

![](https://cdn-learn.adafruit.com/assets/assets/000/021/752/medium800/leds_IMG_2703.jpg?1418700184)

### Sew It Together

Once all your components feel secure, fold the scarf in half lengthwise, fur-side in (inside-out). &nbsp;

Stitch carefully along the short side opposite the Gemma and snaps, being careful not to hit the LED strand. &nbsp;Stitch lengthwise along the raw edge, pushing the fur inside as much as possible as you sew. &nbsp;A sewing machine is helpful here, but you can do it by hand with a little patience. &nbsp;Backstitch to secure at the end of the long side.

![](https://cdn-learn.adafruit.com/assets/assets/000/021/753/medium800/leds_IMG_2708.jpg?1418700393)

Carefully turn your scarf right-side out through the open end. Be careful not to kink the LED strip…though “flexible,” it doesn’t take kindly to sharp bends.

Plug in the battery, snap the snaps closed, and switch your scarf on. &nbsp;&nbsp;

![](https://cdn-learn.adafruit.com/assets/assets/000/021/754/medium800/leds_IMG_2715.jpg?1418700525)

### Care & Feeding

You can hand-wash this scarf, or spot clean it if it gets dirty. &nbsp;Just be sure to remove the battery before washing&nbsp;and let it get completely and totally dry before turning it on again. &nbsp;

Be prepared for lots of attention while wearing this scarf!&nbsp;

![](https://cdn-learn.adafruit.com/assets/assets/000/021/825/medium800/leds_glowfur2.jpg?1418841005)


## Featured Products

### Adafruit GEMMA M0 - Miniature wearable electronic platform

[Adafruit GEMMA M0 - Miniature wearable electronic platform](https://www.adafruit.com/product/3501)
The **Adafruit Gemma M0** is a super small microcontroller board, with just enough built-in to create many simple projects. It may look small and cute: round, about the size of a quarter, with friendly alligator-clip sew pads. But do not be fooled! The Gemma M0 is incredibly...

In Stock
[Buy Now](https://www.adafruit.com/product/3501)
[Related Guides to the Product](https://learn.adafruit.com/products/3501/guides)
### Adafruit GEMMA v2 - Miniature wearable electronic platform

[Adafruit GEMMA v2 - Miniature wearable electronic platform](https://www.adafruit.com/product/1222)
 **Deprecation Warning: The Gemma 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 Gemma so that people can maintain some older projects, we no longer recommend it.** <a...></a...>

No Longer Stocked
[Buy Now](https://www.adafruit.com/product/1222)
[Related Guides to the Product](https://learn.adafruit.com/products/1222/guides)
### Arduino GEMMA - Miniature wearable electronic platform

[Arduino GEMMA - Miniature wearable electronic platform](https://www.adafruit.com/product/2470)
What do you get when you combine&nbsp;an Adafruit classic with geniuses at Arduino? The Arduino GEMMA!&nbsp;It's a tiny wearable platform board with a lot of might in a 1" diameter package. Powered by a Attiny85 and programmable with an Arduino IDE over USB, you'll be able to...

No Longer Stocked
[Buy Now](https://www.adafruit.com/product/2470)
[Related Guides to the Product](https://learn.adafruit.com/products/2470/guides)
### Adafruit Metro M4 feat. Microchip ATSAMD51

[Adafruit Metro M4 feat. Microchip ATSAMD51](https://www.adafruit.com/product/3382)
Are you ready? Really ready? Cause here comes the fastest, most powerful Metro ever. The **Adafruit Metro M4** featuring the **Microchip ATSAMD51**. This Metro is like a bullet train, with its 120MHz Cortex M4 with floating point support. Your code will zig and zag...

Out of Stock
[Buy Now](https://www.adafruit.com/product/3382)
[Related Guides to the Product](https://learn.adafruit.com/products/3382/guides)
### Adafruit NeoPixel Digital RGB LED Strip - White 60 LED

[Adafruit NeoPixel Digital RGB LED Strip - White 60 LED](https://www.adafruit.com/product/1138)
You thought it couldn't get better than [our world-famous 32-LED-per-meter Digital LED strip](http://adafruit.com/products/306) but we will prove you wrong! You wanted **twice the LEDs**? We got it (well, its 1.875 times as many but that's within a margin of...

In Stock
[Buy Now](https://www.adafruit.com/product/1138)
[Related Guides to the Product](https://learn.adafruit.com/products/1138/guides)
### Membrane LED Keypad + extras

[Membrane LED Keypad + extras](https://www.adafruit.com/product/1333)
This membrane keypad has a single key, but it does have an embedded surface-mount red LED installed. The flex cable is also extra-long, so we can think of a lot of wearable and portable projects that would use this sort of switch and have an LED as feedback (say, to indicate that an action is...

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

[Lithium Ion Polymer Battery - 3.7v 2500mAh](https://www.adafruit.com/product/328)
Lithium-ion polymer (also known as 'lipo' or 'lipoly') batteries are thin, light, and powerful. The output ranges from 4.2V when completely charged to 3.7V. This battery has a capacity of **2500mAh** for a total of about 10 Wh. If you need a smaller battery, <a...></a...>

Out of Stock
[Buy Now](https://www.adafruit.com/product/328)
[Related Guides to the Product](https://learn.adafruit.com/products/328/guides)
### Tactile On/Off Switch with Leads

[Tactile On/Off Switch with Leads](https://www.adafruit.com/product/1092)
Squeeze once to turn on, squeeze again to turn off! This clicky switch makes a great power switch or mode toggler. We like this switch because it's easy to embed in a seam for easily powering up/off wearable and fabric projects. Can handle up to 14V and 2 Amps! This is a really satisfying...

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

## Related Guides

- [Adafruit Metro M4 Express featuring ATSAMD51](https://learn.adafruit.com/adafruit-metro-m4-express-featuring-atsamd51.md)
- [Larson Scanner Shades (Trinket-Powered NeoPixel LED Strip Glasses)](https://learn.adafruit.com/larson-scanner-shades.md)
- [Using DS18B20 Temperature Sensor with CircuitPython](https://learn.adafruit.com/using-ds18b20-temperature-sensor-with-circuitpython.md)
- [Glowing Fascinator Hat with Gemma M0 and MakeCode](https://learn.adafruit.com/glowing-fascinator-hat-gemma-m0-makecode.md)
- [CircuitPython Hardware: LED Backpacks & FeatherWings](https://learn.adafruit.com/micropython-hardware-led-backpacks-and-featherwings.md)
- [Controlling Objects in Unity with a 9 DoF Sensor and Arduino](https://learn.adafruit.com/controlling-objects-in-unity-with-arduino.md)
- [Disco Band Camp Jacket](https://learn.adafruit.com/disco-band-camp-jacket.md)
- [3D Printed NeoPixel LED Gas Mask](https://learn.adafruit.com/3d-printed-el-wire-laser-neopixel-led-gas-mask.md)
- [GEMMA Hoop Earrings](https://learn.adafruit.com/gemma-hoop-earrings.md)
- [Playa Festival Bike](https://learn.adafruit.com/playa-festival-bike.md)
- [Debugging the SAMD21 with GDB](https://learn.adafruit.com/debugging-the-samd21-with-gdb.md)
- [Close Encounters Hat](https://learn.adafruit.com/close-encounters-hat.md)
- [3D Printed LED Microphone Flag](https://learn.adafruit.com/3d-printed-led-microphone-flag.md)
- [Starduino: 8-Bit Super Mario Tree Topper](https://learn.adafruit.com/starduino-neopixel-8-bit-mario-star-tree-topper.md)
- [VU Meter Baseball Hat](https://learn.adafruit.com/vu-meter-baseball-hat.md)
- [Mystical LED Halloween Hood](https://learn.adafruit.com/mystical-led-halloween-hood.md)
