# Neopixel Cosmic Turtle Necklace

## Overview

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

> Cosmic Turtle&nbsp;wakes  
> Spins&nbsp;the tides with pulsing light  
> Ocean in your heart

_Turn him on_ by _putting him on_&nbsp;— the magnetic necklace clasp doubles as an on/off switch. Recharge him by plugging him handily&nbsp;into your computer with a USB cable. And when his battery dies, _he glows in the dark!_

Wear him proudly around your neck or give him to someone shiny. &nbsp;

This project is easy to customize! If you already have a Cosmic Turtle, or if for some unfathomable reason you don't like Turtles, you can still&nbsp;create a blinking, twinkling, pulsing, slick LED necklace that embraces&nbsp;your inner Spirit Animal.

# Neopixel Cosmic Turtle Necklace

## Materials

![](https://cdn-learn.adafruit.com/assets/assets/000/021/940/medium800/led_pixels_IMG_2739.jpg?1419698884)

Important Bits:

- [Pro&nbsp;Trinket 3V](https://www.adafruit.com/product/2010)
- [Pro&nbsp;Trinket Charging Backpack](../../../../adafruit-pro-trinket-lipoly-slash-liion-backpack)
- [Neopixel Jewel](https://www.adafruit.com/products/2226)
- [150mAh LiPo battery](https://www.adafruit.com/products/1317)
- Hollow necklace pendant (at least 1.5" x 2")
- Magnetic necklace clasp ([I like this one](http://www.stuff4crafts.com/magnetic-2-silver-4-pkg-blue-moon-value-pack-metal-clasps-bmvpmcl-12576.html?currency=USD&CAWELAID=600746090&gclid=Cj0KEQiAzvmkBRCm3ZbV-4-hwrYBEiQAgLOw61QklOcGuJUfe0yH-WYbAMyBffumBn9323BLPuQhfR4aAhRq8P8HAQ))

Tools & Other Stuff

- Soldering iron, solder & accessories
- Light-colored polymer clay ([I used glow-in-the-dark Sculpey](http://www.stuff4crafts.com/glow-in-the-dark-sculpey-iii-polymer-clay-2-ounces-465007.html))
- [Black 26AWG Silicone stranded wire](https://www.adafruit.com/product/1881)
- [Solid core wire in various colors](https://www.adafruit.com/products/1311)&nbsp;(you just need a tiny bit but it's good to have on hand)
- Elecrical tape
- Hot glue gun
- Oven

# Neopixel Cosmic Turtle Necklace

## Wiring

![](https://cdn-learn.adafruit.com/assets/assets/000/022/007/medium800/led_pixels_jewel_trinket_chgr.psd___100__%28Layer_5__RGB_8%29_*.jpg?1420066514)

 **Using solid core wire:**

- Neopixel PWR -\> Trinket JST&nbsp;+&nbsp;pad (on the back)
- Neopixel GND -\> Trinket GND
- Neopixel IN -\> Trinket 9

NOTE: do not use the 3V pin on the far end of the Pro Trinket (the one next to your GND connection). &nbsp;This pin is for input from an FTDI cable, not output, and your lights won't come on.

**Using Backpack Charger's included header pins:**

- Backpack BAT -\> Trinket BAT
- Backpack G -\> Trinket G
- Backpack 5v -\> Trinket BUS

**Using 26g silicone stranded wire:**

- Two Backpack switch pins to magnetic clasp

&nbsp;

# Neopixel Cosmic Turtle Necklace

## The Code

### Software Setup

If this is your first time using Pro Trinket, take a look at [Introducting Pro Trinket](../../../../introducing-pro-trinket/overview)&nbsp;to get a guided tour. &nbsp;&nbsp;

Once you've got your Pro Trinket&nbsp;up and running with [Arduino](../../../../getting-started-with-flora/download-software), you'll need to install the FastLED library.

### 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 "Pro Trinket 3V USB"&nbsp;from the list of boards. &nbsp;Plug your&nbsp;Pro Trinket&nbsp;into your computer via the onboard USB port. &nbsp;Press the "reset" button on your Pro Trinket and wait for the blinky red light, then click the upload button in Arduino.

This Twinkling Lights code was written by Mark Kriegsman. &nbsp;It slowly twinkles and fades your Neopixels on and off and gives you a variety of color palettes to choose from.&nbsp;

```auto
#include "FastLED.h"

#define LED_PIN     9
#define LED_TYPE    WS2812B
#define COLOR_ORDER GRB
#define NUM_LEDS    5

CRGB leds[NUM_LEDS];
CRGBPalette16 currentPalette;
TBlendType    currentBlending;

//  Twinkling 'holiday' lights that fade up and down in brightness.
//  Colors are chosen from a palette; a few palettes are provided.
//
//  The basic operation is that all pixels stay black until they
//  are 'seeded' with a relatively dim color.  The dim colors
//  are repeatedly brightened until they reach full brightness, then
//  are darkened repeatedly until they are fully black again.
//
//  A set of 'directionFlags' is used to track whether a given
//  pixel is presently brightening up or darkening down.
//
//  For illustration purposes, two implementations of directionFlags
//  are provided: a simple one-byte-per-pixel flag, and a more
//  complicated, more compact one-BIT-per-pixel flag.
//
//  Darkening colors accurately is relatively easy: scale down the 
//  existing color channel values.  Brightening colors is a bit more
//  error prone, as there's some loss of precision.  If your colors
//  aren't coming our 'right' at full brightness, try increasing the
//  STARTING_BRIGHTNESS value.
//
//  -Mark Kriegsman, December 2014
 
#define MASTER_BRIGHTNESS   18   // change this to change overall brightness

#define STARTING_BRIGHTNESS 128  // change this to change maximum brightness
#define FADE_IN_SPEED       5    // lower number fades in slower
#define FADE_OUT_SPEED      10   // higher number hangs around longer
#define DENSITY             255

void setup() {
  delay(3000);
  FastLED.addLeds&lt;LED_TYPE,LED_PIN,COLOR_ORDER&gt;(leds, NUM_LEDS).setCorrection(TypicalLEDStrip);
  FastLED.setBrightness(MASTER_BRIGHTNESS);
    currentBlending = LINEARBLEND;
}

CRGBPalette16 gPalette;

void loop()
{
 //Un-comment the line with the colors you like best 
  gPalette = OceanColors_p;
  //gPalette = RainbowColors_p;   
  //gPalette = HeatColors_p;
  //gPalette = PartyColors_p;
  //gPalette = CloudColors_p;
  //gPalette = RainbowStripeColors_p;
  colortwinkles();
  FastLED.show();  
  FastLED.delay(70);       // change this to change overall speed
}

enum { GETTING_DARKER = 0, GETTING_BRIGHTER = 1 };

void colortwinkles()
{
  // Make each pixel brighter or darker, depending on
  // its 'direction' flag.
  brightenOrDarkenEachPixel( FADE_IN_SPEED, FADE_OUT_SPEED);
  
  // Now consider adding a new random twinkle
  if( random8() &lt; DENSITY ) {
    int pos = random16(NUM_LEDS);
    if( !leds[pos]) {
      leds[pos] = ColorFromPalette( gPalette, random8(), STARTING_BRIGHTNESS, NOBLEND);
      setPixelDirection(pos, GETTING_BRIGHTER);
    }
  }
}

void brightenOrDarkenEachPixel( fract8 fadeUpAmount, fract8 fadeDownAmount)
{
 for( uint16_t i = 0; i &lt; NUM_LEDS; i++) {
    if( getPixelDirection(i) == GETTING_DARKER) {
      // This pixel is getting darker
      leds[i] = makeDarker( leds[i], fadeDownAmount);
    } else {
      // This pixel is getting brighter
      leds[i] = makeBrighter( leds[i], fadeUpAmount);
      // now check to see if we've maxxed out the brightness
      if( leds[i].r == 255 || leds[i].g == 255 || leds[i].b == 255) {
        // if so, turn around and start getting darker
        setPixelDirection(i, GETTING_DARKER);
      }
    }
  }
}

CRGB makeBrighter( const CRGB&amp; color, fract8 howMuchBrighter) 
{
  CRGB incrementalColor = color;
  incrementalColor.nscale8( howMuchBrighter);
  return color + incrementalColor;
}

CRGB makeDarker( const CRGB&amp; color, fract8 howMuchDarker) 
{
  CRGB newcolor = color;
  newcolor.nscale8( 255 - howMuchDarker);
  return newcolor;
}


// For illustration purposes, there are two separate implementations
// provided here for the array of 'directionFlags': 
// - a simple one, which uses one byte (8 bits) of RAM for each pixel, and
// - a compact one, which uses just one BIT of RAM for each pixel.

// Set this to 1 or 8 to select which implementation
// of directionFlags is used.  1=more compact, 8=simpler.
#define BITS_PER_DIRECTION_FLAG 1


#if BITS_PER_DIRECTION_FLAG == 8
// Simple implementation of the directionFlags array,
// which takes up one byte (eight bits) per pixel.
uint8_t directionFlags[NUM_LEDS];

bool getPixelDirection( uint16_t i) {
  return directionFlags[i];
}

void setPixelDirection( uint16_t i, bool dir) {
  directionFlags[i] = dir;
}
#endif


#if BITS_PER_DIRECTION_FLAG == 1
// Compact (but more complicated) implementation of
// the directionFlags array, using just one BIT of RAM
// per pixel.  This requires a bunch of bit wrangling,
// but conserves precious RAM.  The cost is a few
// cycles and about 100 bytes of flash program memory.
uint8_t  directionFlags[ (NUM_LEDS+7) / 8];

bool getPixelDirection( uint16_t i) {
  uint16_t index = i / 8;
  uint8_t  bitNum = i &amp; 0x07;
  // using Arduino 'bitRead' function; expanded code below
  return bitRead( directionFlags[index], bitNum);
  // uint8_t  andMask = 1 &lt;&lt; bitNum;
  // return (directionFlags[index] &amp; andMask) != 0;
}

void setPixelDirection( uint16_t i, bool dir) {
  uint16_t index = i / 8;
  uint8_t  bitNum = i &amp; 0x07;
  // using Arduino 'bitWrite' function; expanded code below
  bitWrite( directionFlags[index], bitNum, dir);
  //  uint8_t  orMask = 1 &lt;&lt; bitNum;
  //  uint8_t andMask = 255 - orMask;
  //  uint8_t value = directionFlags[index] &amp; andMask;
  //  if( dir ) {
  //    value += orMask;
  //  }
  //  directionFlags[index] = value;
}
#endif
```

There are a number of things you can change in this code to get exactly the effect you're looking for with your necklace.

- Brightness:&nbsp;play with changing&nbsp;the MASTER\_BRIGHTNESS and STARTING\_BRIGHTNESS numbers
- Speed: play with the FADE\_IN\_SPEED and FADE\_OUT\_SPEED numbers
- Color Palette: Un-comment the palette featuring the colors you want, or check out the [FastLED site](http://fastled.io/)&nbsp;for instructions&nbsp;on how to create your own palette

I used a moderate brightness so as not to blind people with Cosmic&nbsp;Turtle's shiny shell, and used an ocean palette since, well, Turtle. &nbsp;&nbsp;

# 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.

# Neopixel Cosmic Turtle Necklace

## Necklace Build

### Selecting Your Pendant

Find a pendant that speaks to you. &nbsp;You want one that's around 1.5 x 2 inches in size, with holes in it so the lights can get through. &nbsp;A bigger pendant is better! &nbsp;If it's too small, the electronics will show around the edges. &nbsp;

It's best to find one that has a concave open area inside. &nbsp;We'll be making&nbsp;the electronics as small and flat as possible, but a scooped out pendant like this turtle will give you a little more space to work with.

Or, you can [download & print](https://tinkercad.com/things/1kJah8WiBoy)&nbsp;or order [one of these 3D-printed pendants](http://shpws.me/BdX3)&nbsp;which are&nbsp;just the right size and shape. &nbsp;Order&nbsp;in metal to be super fancy! &nbsp;Or order him in white or colored plastic and paint him with shiny spray paint or enamel.

![](https://cdn-learn.adafruit.com/assets/assets/000/021/942/medium800/led_pixels_IMG_2741.jpg?1419700102)

### Light Diffusion

Knead a little ball of polymer clay until it's soft, then press it into the back of the pendant. &nbsp;You want a very thin layer -- as thin as you can get it without compromising stability. &nbsp;Work it gently into place, then hold it up to the light to be sure it will work as a light _diffuser_, and not as a light _blocker_.&nbsp;

![](https://cdn-learn.adafruit.com/assets/assets/000/021/943/medium800/led_pixels_IMG_2745.jpg?1419700282)

For this Sculpey glow-in-the-dark clay, I baked my little turtle at 275 degrees for 10 minutes. &nbsp;Read the directions, every kind of clay is a little different.

If you're using a 3D Printed pastic pendant, this will still work. &nbsp;The&nbsp;polymer clay wants a pretty low temperature. &nbsp;Don't worry.. you won't melt him!

# Neopixel Cosmic Turtle Necklace

## LED Build

### Charging System

In order to make this necklace as user-friendly as possible, we'll add a battery charger right into the design. &nbsp;That way you can just plug your necklace in to your computer with a USB Micro cable whenever he gets dim. &nbsp;(This also makes him into a wonderful gift for people who are not as tech-savvy as you are).

Solder three header pins into the charging backpack.&nbsp;

Take a utility knife and break&nbsp;the trace between the two&nbsp;connected&nbsp;pins next to the header. &nbsp;This will enable you&nbsp;to add an on/off switch to the necklace.

![led_pixels_IMG_2751.jpg](https://cdn-learn.adafruit.com/assets/assets/000/021/944/medium640/led_pixels_IMG_2751.jpg?1419701154)

![led_pixels_IMG_2754.jpg](https://cdn-learn.adafruit.com/assets/assets/000/021/945/medium640/led_pixels_IMG_2754.jpg?1419701195)

Solder&nbsp;a long (1.5 - 2 foot) black silicone 26awg wire to each of these two pins. &nbsp;These will later become your necklace cords so make them long enough to reach around your neck when the board is hanging at pendant height.

![led_pixels_IMG_2757.jpg](https://cdn-learn.adafruit.com/assets/assets/000/021/946/medium640/led_pixels_IMG_2757.jpg?1419704983)

Solder the 3 header pins into the Trinket Pro using the BUS, G, and BAT+ pins next to the USB port. &nbsp;Trim off any extra header sticking out on the back side.

![led_pixels_IMG_2759.jpg](https://cdn-learn.adafruit.com/assets/assets/000/021/949/medium640/led_pixels_IMG_2759.jpg?1419705837)

### LED Soldering

Solder a power, ground and data wire to the Neopixel Jewel as shown. &nbsp;It works best to have the wires come in from the LED side and solder on the back side.

Solid core wires work best here! &nbsp;You want them to hold their shape when you bend them and stranded wires are tougher to work with in this case.

![](https://cdn-learn.adafruit.com/assets/assets/000/021/950/medium800/led_pixels_IMG_2761.jpg?1419705985)

### Putting it All Together

Make a little sandwich of all your electronics with the LEDs on top, the battery next, then the Trinket Pro and the charging backpack on the bottom. The battery pack itself then acts as a non-conductive insulator between the metal pentant and the Pro Trinket board.

Bend the Neopixel Jewel wires around and line them up with their corresponding pins on the Trinket Pro. &nbsp;Cut them to length while you're holding the battery in place.

&nbsp;

Pull the battery out of the way and solder the Neopixel Jewel to the board, being sure to leave space to put the battery back when you're done.

&nbsp;

Jewel PWR -\> Trinket JST +  
Jewel G -\> Trinket G  
Jewel IN -\> Trinket 9

![led_pixels_IMG_2765.jpg](https://cdn-learn.adafruit.com/assets/assets/000/021/951/medium640/led_pixels_IMG_2765.jpg?1419706073)

![led_pixels_IMG_2775.jpg](https://cdn-learn.adafruit.com/assets/assets/000/021/952/medium640/led_pixels_IMG_2775.jpg?1419706110)

![led_pixels_IMG_2777.jpg](https://cdn-learn.adafruit.com/assets/assets/000/021/953/medium640/led_pixels_IMG_2777.jpg?1419706151)

Wrap the battery in electrical tape to avoid any shorts between components and help with strain relief.&nbsp;

Plug in your JST connector and slip all the components into place in their neat little stack. &nbsp;Wind the wire from the battery around so it's hidden, or you can shorten the wires and splice them back together if you prefer. &nbsp;Set them in your pendant and admire your handiwork.

![](https://cdn-learn.adafruit.com/assets/assets/000/021/956/medium800/led_pixels_IMG_2780.jpg?1419706764)

# Neopixel Cosmic Turtle Necklace

## Clasp & Finishing

### Adding the Clasp

Thread the two long black wires through the top of your pendant. &nbsp;I wound a piece of jewelry wire around the neck of my turtle to hold the wires in place and help with strain relief.

![](https://cdn-learn.adafruit.com/assets/assets/000/021/957/medium800/led_pixels_IMG_2781.jpg?1419706872)

Hold your necklace in place around your neck and decide how long you'd like it to be. &nbsp;Add an extra inch or so to the wires and snip. &nbsp;

Strip the wires that full inch -- you want a lot of bare wire here -- and slide a short piece of&nbsp;heat shrink tubing over the ends.

Slip the bare strands through the hole on each side of your magnetic clasp,&nbsp;just about all the way up to the wire shielding. &nbsp;Wind the bare ends around and around and around until the necklace clasp feels secure. &nbsp;If you can, thread the wires through the clasp's hole a second time. &nbsp;You want a lot of metal-on-metal connection here.

**DO NOT SOLDER these in place! &nbsp;A weird property of magnets is that if you heat them up past around 500 degrees, they will lose their magnetism.** Sad Christmas! &nbsp;So wind the wires around really really well, then add a dab of hot glue and slide the heat shrink over while the hot glue is wet, then shrink it on down. &nbsp; Pull gently on the wire and the magnet to make sure they're firmly in contact while the glue setsup so you have a good strong connection.

![](https://cdn-learn.adafruit.com/assets/assets/000/021/958/medium800/led_pixels_IMG_2782.jpg?1419707217)

### Finishing

Add a little hot glue around the inside of the pendant and press your lights in place. Try it on! &nbsp;How does it feel? &nbsp;(If the JST connector is a little too prickly and cornery for you, sand down the edges a bit)

#### Advanced Option:&nbsp;

If that JST connector is just too bulky (and it's amazing how bulky a JST connector can be), advanced users can desolder it from the charging backpack and solder the wires from the battery directly to the JST pads. &nbsp;Be sure not to mix up positive and negative battery wires or the whole thing might&nbsp;just catch fire. &nbsp;Cover up the connections with some hot glue to secure them in place.

### Care & Feeding

Enjoy your necklace! &nbsp;To charge, simply&nbsp;plug a micro USB cable into the port on the Trinket for a few hours. &nbsp;The charger has an indicator light to tell you when it's done. Depending&nbsp;on how you decide to set the brightness in the code, this&nbsp;necklace will glow all night long -- and when the battery dies, the glow in the dark polymer clay will take over!


## Featured Products

### Adafruit Pro Trinket - 3V 12MHz

[Adafruit Pro Trinket - 3V 12MHz](https://www.adafruit.com/product/2010)
 **Deprecation Warning: The Pro 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 Pro Trinket so that people can maintain some older projets, we no longer recommend it.** Please...

No Longer Stocked
[Buy Now](https://www.adafruit.com/product/2010)
[Related Guides to the Product](https://learn.adafruit.com/products/2010/guides)
### Adafruit LiIon/LiPoly Backpack Add-On for Pro Trinket/ItsyBitsy

[Adafruit LiIon/LiPoly Backpack Add-On for Pro Trinket/ItsyBitsy](https://www.adafruit.com/product/2124)
If you have an ItsyBitsy or Pro Trinket you probably know it's the perfect little size for a portable project. This LiPoly backpack makes it really easy to do! Instead of wiring 2 or 3 boards together to make a charging system, this little PCB sits on top of the PCB and allows a...

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

[Lithium Ion Polymer Battery - 3.7v 150mAh](https://www.adafruit.com/product/1317)
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 150mAh for a total of about 0.6 Wh. If you need a larger battery, <a...></a...>

In Stock
[Buy Now](https://www.adafruit.com/product/1317)
[Related Guides to the Product](https://learn.adafruit.com/products/1317/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)
### Silicone Cover Stranded-Core Wire - 2m 26AWG Black

[Silicone Cover Stranded-Core Wire - 2m 26AWG Black](https://www.adafruit.com/product/1881)
Silicone-sheathing wire is super-flexible and soft, and its also strong! Able to handle up to 200°C and up to 600V, it will do when PVC covered wire wimps out. We like this wire for being extremely supple and flexible, so it is great for wearables or projects where the wire-harness has to...

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

## Related Guides

- [Glowing Fascinator Hat with Gemma M0 and MakeCode](https://learn.adafruit.com/glowing-fascinator-hat-gemma-m0-makecode.md)
- [Adafriend the Virtual Pet Cube](https://learn.adafruit.com/adafriend.md)
- [Cup o' Sound](https://learn.adafruit.com/cup-o-sound.md)
- [Adafruit NeoPixel Überguide](https://learn.adafruit.com/adafruit-neopixel-uberguide.md)
- [LED Harness Bra](https://learn.adafruit.com/neopixel-led-harness-bra.md)
- [Portable Mini Timelapse Camera](https://learn.adafruit.com/portable-mini-timelapse-camera.md)
- [Animated Flying Toaster OLED Jewelry](https://learn.adafruit.com/animated-flying-toaster-oled-jewelry.md)
- [DotStar Belly Dance Fans](https://learn.adafruit.com/dotstar-belly-dance-fans.md)
- [NeoPixel LED Heart Necklace](https://learn.adafruit.com/neopixel-led-heart-necklace.md)
- [Camera LED Ring Light](https://learn.adafruit.com/camera-ring-led-light.md)
- [Zelda: Breath of the Wild – 3D Printed Guardian Sword with NeoPixel LEDs](https://learn.adafruit.com/breath-of-the-wild-guardian-sword-led-3d-printed.md)
- [Neopixel Jewel 10 Minute Necklace](https://learn.adafruit.com/10-minute-neopixel-necklace.md)
- [DotStar Fortune Necklace with Bluetooth and Touch](https://learn.adafruit.com/dotstar-fortune-necklace.md)
- [Electronic Animated Eyes for ARM Microcontrollers](https://learn.adafruit.com/animated-electronic-eyes.md)
- [Rezz-Inspired NeoPixel Glasses](https://learn.adafruit.com/rezz-inspired-neopixel-glasses.md)
