# Galaxy Pendant

## Introduction

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

This pendant&nbsp;contains one small Galaxy from Pandora's Cluster.&nbsp; The gravitational pull of this galaxy is such that you'll feel everyone's&nbsp;eyes pulled toward you whenever you wear it. It's encased in solid resin to keep the stars and planets inside from spinning out of control or escaping.&nbsp;

It's tough enough to keep its&nbsp;galaxy's inner gravities from tearing a hole in our reality, which makes this pendant safe for hot tubbing, night diving, or teething babies. &nbsp;It is&nbsp;fully submersible and 100% playa-proof. &nbsp; &nbsp;

The magical&nbsp;inner workings&nbsp;include an inductive wireless battery charger&nbsp;and a gravity-activated on/off switch --&nbsp;right side up turns it on, upside down (or lying flat) turns it off. &nbsp;Yes. &nbsp;Just like magic.&nbsp;

### Electronic Guts

- [Trinket 5v](https://www.adafruit.com/products/1501)
- [Pro Trinket Backpack Charger](https://www.adafruit.com/product/2124)
- Neopixel Strip (60/m recommended), 8-10 pixels
- [Lithium ion Polymer Battery - 100mAh](https://www.adafruit.com/product/1570)
- [Inductive Charging Set](https://www.adafruit.com/product/1407)
- [9v AC Adapter](https://www.adafruit.com/product/63)
- [Mercury tilt switch](http://www.frys.com/product/1908343)

### Crafty Stuff

- [Clear Epoxy Craft Resin](http://www.amazon.com/Environmental-Technology-8-Ounce-Casting-Craft/dp/B000XAR0DM/ref=sr_1_6?s=home-garden&ie=UTF8&qid=1435185312&sr=1-6&keywords=mold+builder)
- [2" Jewelry Mold](http://www.amazon.com/Resin-Epoxy-Jewelry-Casting-Cabochons/dp/B00AM2JNN6)
- [2 part Mold Maker](http://www.amazon.com/Easy-Mold-Silicone-Molding-Casting/dp/B00JIRJBOW/ref=sr_1_2?s=home-garden&ie=UTF8&qid=1435185346&sr=1-2&keywords=mold+putty)&nbsp;(or [Sugru](http://www.amazon.com/Sugru-Self-Setting-Rubber-Black/dp/B00KX6LTYM/ref=sr_1_3?ie=UTF8&qid=1435185463&sr=8-3&keywords=sugru)&nbsp;works too)
- Necklace chain and clasp
- Pretty diffusion materials (I used mosiac&nbsp;glass)
- [Measuring cups &&nbsp;stirring sticks](http://www.amazon.com/Resin-Mechanique-Mixing-Sticks-50-Pack/dp/B00CB38LP0/ref=pd_sim_201_29?ie=UTF8&refRID=14THRZZN6WN4WCM71M13)
- [Protective gloves](http://www.amazon.com/Liberty-Glove-Industrial-Disposable-Thickness/dp/B00C9P9D52/ref=sr_1_sc_1?ie=UTF8&qid=1435185541&sr=8-1-spell&keywords=disposable+bue+gloves)

### Tools

- Soldering iron & accessories
- Hot glue gun
- 3D Printer (optional)
- 26 AWG wire

# Galaxy Pendant

## The Code

### Software Setup

If this is your first time using Trinket, it's a great idea to check out the [Introduction to Trinket](../../../../introducing-trinket/introduction)&nbsp;guide first.

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

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

Open up the Arduino library manager:

![](https://cdn-learn.adafruit.com/assets/assets/000/084/285/medium800/led_strips_library_manager_menu.png?1573825501)

Search for the&nbsp; **FastLED&nbsp;** library and install it

![](https://cdn-learn.adafruit.com/assets/assets/000/084/286/medium800/led_strips_fastled.png?1573825551)

We also have a great tutorial on Arduino library installation at:  
[http://learn.adafruit.com/adafruit-all-about-arduino-libraries-install-use](http://learn.adafruit.com/adafruit-all-about-arduino-libraries-install-use "Link: http://learn.adafruit.com/adafruit-all-about-arduino-libraries-install-use")

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

```
#include &lt;FastLED.h&gt;


#define NEO_PIN     4
#define NUM_LEDS    9      //set number of LEDs in your strip
#define SPEED       10     //change motion speed here
#define STEPS       10
#define BRIGHTNESS  90     //change brightness here
#define COLOR_ORDER GRB
CRGB leds[NUM_LEDS];


CRGBPalette16 currentPalette;
TBlendType    currentBlending;


void setup() {
  delay( 1000 ); // power-up safety delay
  

  FastLED.addLeds&lt;WS2812B, NEO_PIN, COLOR_ORDER&gt;(leds, NUM_LEDS).setCorrection( TypicalLEDStrip );
  FastLED.setBrightness(  BRIGHTNESS );
  currentBlending = LINEARBLEND;
  currentPalette = OceanColors_p;                   // Un-comment the color scheme you want
  //currentPalette = RainbowColors_p;  
  //currentPalette = HeatColors_p;
  //currentPalette = PartyColors_p;
  //currentPalette = CloudColors_p;
  //currentPalette = RainbowStripeColors_p;
  //currentPalette = ForestColors_p;
 
}

void loop() {
  static uint8_t startIndex = 0;
  startIndex = startIndex + 1; /* motion speed */

  FillLEDsFromPaletteColors( startIndex);

  FastLED.show();
  FastLED.delay(1000 / SPEED);
}

//this bit is in every palette mode, needs to be in there just once
void FillLEDsFromPaletteColors( uint8_t colorIndex) {
  uint8_t brightness = BRIGHTNESS;
  
  for( int i = 0; i &lt; NUM_LEDS; i++) {
    leds[i] = ColorFromPalette( currentPalette, colorIndex + sin8(i*16), brightness, currentBlending);
    colorIndex += STEPS;
  }
}
```

# If you encounter trouble…

Any time you hit a roadblock with a NeoPixel 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.&nbsp;

Open up the Arduino library manager:

![](https://cdn-learn.adafruit.com/assets/assets/000/084/287/medium800/led_strips_library_manager_menu.png?1573825700)

Search for the&nbsp; **Adafruit Neopixel&nbsp;** library and install it

![](https://cdn-learn.adafruit.com/assets/assets/000/084/288/medium800/led_strips_neopixel.png?1573825729)

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

 **If strandtest fails to run, this suggests a hardware issue** …for example, connecting to the wrong Trinket&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.

# Galaxy Pendant

## Wiring

![](https://cdn-learn.adafruit.com/assets/assets/000/034/626/medium800/led_strips_wiring3.jpg?1470500923)

### Necklace Wiring

NOTE: The G pin on the Trinket and on the Backpack Charger both have two wires attached. &nbsp;Take note and solder them in at the same time.

- **Neopixel 5v** to Trinket BAT
- **Neopixel Din** to Trinket #4
- **Neopixel G** to Trinket G

- **Backpack Chgr BAT** to&nbsp;Trinket BAT
- **Backpack Chgr G** to Trinket G&nbsp;AND to&nbsp;Induction Coil -
- **Backpack Chgr 5v** to Induction Coil +
- Backpack Chgr switch pins to Mercury Tilt or Vibration Switch (cut the trace before soldering to activate the switch)
- **Backpack Chgr +** and **-** to battery + and - (remove the connectors and solder directly for a smaller form factor)

![](https://cdn-learn.adafruit.com/assets/assets/000/026/212/medium800/led_strips_wiring_base.jpg?1436201621)

### Charging Base Wiring

- Coil - to AC Adapter -
- Coil + to AC Adapter +

# Galaxy Pendant

## Charging Base

![](https://cdn-learn.adafruit.com/assets/assets/000/026/229/medium800/led_strips_IMG_4380.jpg?1436215797)

[Download Charging Base .stl Files](http://www.thingiverse.com/thing:913650)
Download and 3d print the Inductive Charging Base. &nbsp;

You can also [order one from Shapeways](http://shpws.me/ISVo). &nbsp;

Note: This base holds the induction coil nicely in place, but it isn't necessary for charging. &nbsp;You can simply place the necklace on top of the bare coil and it will still work.

Cut the barrel off the end of your AC adapter and use your multimeter to determine which end is the + and which is the - wire.

Solder the + wire to the red wire and the - to the black wire on the remaining inductive coil.

![led_strips_IMG_4377.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/225/medium640/led_strips_IMG_4377.jpg?1436215684)

Pop the coil up through&nbsp;the 3d printed charging base ring&nbsp;and then onto the cap.

Add a zip tie around the adapter wires for strain relief, and pop the bottom onto the charger. &nbsp;If needed, glue it all in place.

![led_strips_IMG_4383.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/226/medium640/led_strips_IMG_4383.jpg?1436215724)

# Galaxy Pendant

## Electronics Assembly

We are trying to get the whole electronics package as small and compact as possible. &nbsp;This can mean&nbsp;a lot of fiddling and trimming to get wire lengths exactly right, and assembling and placing the components in a logical order. &nbsp;Have patience.

### Upload the Code

If you haven't done it yet, start by uploading the code to the Trinket. &nbsp;This will make it easier to test later on to&nbsp;be sure your connections are good.

### Prepare the&nbsp;LiPoly Backpack

Carefully clip the JST connector off. Clean up and&nbsp;tin the + and - pads with your soldering iron.

&nbsp;

Use a utility knife to cut the trace between the two pads to enable the switch.

&nbsp;

![led_strips_IMG_4376.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/209/medium640/led_strips_IMG_4376.jpg?1436195616)

### Stack the Components
1. Bend the wires around and use a dab of hot glue to secure the green circuit board neatly on one edge of the induction coil.

&nbsp;

2. Solder 1&nbsp;wire into the BAT, #4 and 5v holes. &nbsp;Twist 2 wires together and solder both into the G hole on the trinket. &nbsp;Place the trinket on top of the coil and secure it with another dab of hot glue.&nbsp;

![led_strips_IMG_4385.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/282/medium640/led_strips_IMG_4385.jpg?1436298618)

![led_strips_IMG_4388.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/283/medium640/led_strips_IMG_4388.jpg?1436298639)

![led_strips_IMG_4390.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/284/medium640/led_strips_IMG_4390.jpg?1436298658)

3. Set the battery&nbsp;charger on top of the trinket (don't glue it down yet). &nbsp;Twist one of the G wire from the trinket and the G wire from the coil&nbsp;together and solder them to the G hole on the battery charger.

&nbsp;

4. Attach the power wire from the induction coil into the BAT hole on the charger.&nbsp;

&nbsp;

5. Attach the power wire from the trinket to the 5V hole on the battery charger.

![led_strips_IMG_4392.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/285/medium640/led_strips_IMG_4392.jpg?1436298703)

![led_strips_IMG_4394.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/286/medium640/led_strips_IMG_4394.jpg?1436298725)

![led_strips_IMG_4396.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/287/medium640/led_strips_IMG_4396.jpg?1436298748)

6. Feed the remaining 3 wires underneath the battery charger so they're all on the same side, and trim to about 1".

&nbsp;

7. Remove the silicone case from your LED strip and tin the pads. &nbsp;Solder the 3 wires to their corresponding pads, being sure you're using the "data in" side of the strip. &nbsp;Secure this with another dab of hot glue.

&nbsp;

![led_strips_IMG_4397.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/288/medium640/led_strips_IMG_4397.jpg?1436298788)

![led_strips_IMG_4399.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/289/medium640/led_strips_IMG_4399.jpg?1436298809)

8. Secure the battery next to the trinket, on top of the coil's green circuit board, with a dab of hot glue. &nbsp;

&nbsp;

Cut the red wire and solder to the + pad on the charger. &nbsp;Then, cut the black wire and solder to the - pad. &nbsp; **Do NOT shortcut and cut them both at once or you may short your battery with the wire cutters.** &nbsp;These LiPo batteries can pack a wallop, so be very careful not to touch the two wires together!

&nbsp;

![led_strips_IMG_4401.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/290/medium640/led_strips_IMG_4401.jpg?1436298857)

9. Slide the leads of the mercury tilt switch most of the way through the switch holes, leaving enough room for it to bend down just past flat -- you want it tilted down just a smidge past level, so that the necklace is off (mercury bead is at the top of the tube away from the leads) when the necklace is resting flat on the table. Hold the necklace so the switch is OFF to avoid burning up your components, and solder in place. Trim the leads. Tilt the assembly and the lights should come on.

10. Bend the LEDs into a ring with the lights facing inwards and secure with hot glue.

![led_strips_IMG_4402.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/322/medium640/led_strips_IMG_4402.jpg?1436330457)

![led_strips_IMG_4403.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/323/medium640/led_strips_IMG_4403.jpg?1436330487)

![](https://cdn-learn.adafruit.com/assets/assets/000/026/295/medium800/led_strips_IMG_4407.jpg?1436298949)

### Test It

Before you go any further, put the necklace&nbsp;through its paces. &nbsp;Tilt it on and off and make sure you're happy with the action. &nbsp;If you're not, bend the tilt switch around (gently!) until you are.&nbsp;

Place it on top of the charging base and be sure the red charging light comes on strongly. &nbsp; Leave it there a while and be sure it's charging.

This is also a good time to tweak the code and decide on the colors and the brightness. &nbsp;After the next step you won't be able to access the Trinket anymore so make sure you're 100%&nbsp;satisfied before moving on.

I also added a small piece of electrical tape to cover the lights on the charger and the Trinket, so they won't shine through the center of my necklace.

# Galaxy Pendant

## Resin Casting

Here's the step that makes this necklace indestructable.&nbsp;

**Be VERY SURE that&nbsp;everything is working and that you're happy with the brightness and colors you've selected, since once you've cast the resin you will not be able to change the code!**

If you've never worked with casting resin before, it's a good idea to do a test run before immersing all your electronics. &nbsp;Resin can be fiddly -- be sure to follow the directions EXACTLY and mix very well, or you may end up with a bowl of sticky goo and have to start over with all new components.&nbsp;

The 2" jewelry molds work great to give a perfectly smooth finish on the front of your necklace, but they're not quite deep enough for this project. &nbsp;Use a little bit of mold-making putty or sugru to build up the edges of one of the molds about 1/2" or so. &nbsp;Be sure your extra walls are stuck down to the mold very well, so the resin doesn't leak out through the gap.&nbsp;

![led_strips_IMG_4337.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/213/medium640/led_strips_IMG_4337.jpg?1436201951)

Once the mold is ready, place your glass bits or diffusion materials in the bottom. &nbsp;They shouldn't take up more than about 1/4". &nbsp;

&nbsp;

You want something that's opaque enough to hide your electronics, while being translucent enough to let the light through.&nbsp;I used opaque mosaic glass tiles that I crushed into little bits with a hammer.

![led_strips_IMG_4409.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/312/medium640/led_strips_IMG_4409.jpg?1436304868)

Set your electronics inside the mold with the induction coil at the top and the LEDs lining the edges. &nbsp;Be sure the induction coil is as level as possible, and that it is the highest point inside the mold. &nbsp;Peek from underneath to be sure your LEDs aren't showing from the front.

&nbsp;

Put on your protective gloves. &nbsp;Following the manufacturer's directions, mix up the resin **really well\*** and slowly pour it into the mold. &nbsp;Try not to cringe as it coats your electronics in goo. &nbsp;&nbsp;

&nbsp;

**\*** when they say mix for two full minutes, they mean Mix For Two Full Minutes.&nbsp;

![led_strips_IMG_4410.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/314/medium640/led_strips_IMG_4410.jpg?1436304919)

![led_strips_IMG_4411.jpg](https://cdn-learn.adafruit.com/assets/assets/000/026/315/medium640/led_strips_IMG_4411.jpg?1436304942)

 **Be sure the resin fully covers the inductive coil -- but just barely, you want it right near the surface.&nbsp;**

Let the resin cure overnight and then pop it out of the mold. &nbsp;Hold up your pendant and rotate it slowly until you see the lights appear.

&nbsp;

# Galaxy Pendant

## 3D Printed Setting

![](https://cdn-learn.adafruit.com/assets/assets/000/026/319/medium800/led_strips_IMG_4417.jpg?1436330102)

Pop your cabochon out and admire it.

Print out the pieces of the jewelry setting and charging base. &nbsp;I had the best luck printing the pieces one at a time.

[Download from Thingiverse](http://www.thingiverse.com/thing:913498/#files)
![](https://cdn-learn.adafruit.com/assets/assets/000/026/324/medium800/led_strips_22mm_waterproof_necklace_setting_preview_featured.jpg?1436331098)

This file fits a cabochon that's 22mm tall. &nbsp;You may need to edit the files to make the setting taller or shorter to fit your necklace. &nbsp;[You can edit them on Tinkercad here.](https://www.tinkercad.com/things/b8PNgYXW4Yz)

Or, if you don't have a 3d printer you can order the [setting](http://shpws.me/ISNB "Galaxy Necklace Setting")&nbsp;from Shapeways here.

Place the pendant inside the back ring and place the front ring on top. &nbsp;Be sure it fits snugly, but can be twisted left and right so the tilt switch can be activated and the necklace turned on and off while it's being worn.

Glue the front ring to the back ring, being careful not to get any glue on the resin pendant (or it won't turn in the setting).

Add a necklace chain and clasp to finish it off.&nbsp;


## Featured Products

### 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)
### Adafruit Trinket - Mini Microcontroller - 5V Logic

[Adafruit Trinket - Mini Microcontroller - 5V Logic](https://www.adafruit.com/product/1501)
 **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/1501)
[Related Guides to the Product](https://learn.adafruit.com/products/1501/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...

In 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 100mAh

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

In Stock
[Buy Now](https://www.adafruit.com/product/1570)
[Related Guides to the Product](https://learn.adafruit.com/products/1570/guides)
### Inductive Charging Set - 5V @ 500mA max

[Inductive Charging Set - 5V @ 500mA max](https://www.adafruit.com/product/1407)
The squarish board with two chips on it is the transmitter (power with 9V). &nbsp;The longer board is the output and&nbsp;you can connect that to the part of&nbsp;your project that needs powering.

Inductive charging is a way of powering a device without a direct wire connection. Most...

In Stock
[Buy Now](https://www.adafruit.com/product/1407)
[Related Guides to the Product](https://learn.adafruit.com/products/1407/guides)
### 9 VDC 1000mA regulated switching power adapter - UL listed

[9 VDC 1000mA regulated switching power adapter - UL listed](https://www.adafruit.com/product/63)
This is a really nice power supply. It's a switching DC supply so it's small and light and efficient. It is thin so it fits in power strips without blocking other outlets. The output is regulated so you'll get a steady 9V up to 1000mA (1 Amp) of current draw. 5.5mm/2.1mm barrel...

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

## Related Guides

- [Morning Star POV Double Staffs](https://learn.adafruit.com/pov-dotstar-double-staff.md)
- [3D-Printed Bionic Eye](https://learn.adafruit.com/3d-printed-bionic-eye.md)
- [Raspberry Gear](https://learn.adafruit.com/raspberry-gear.md)
- [Introducing ItsyBitsy 32u4](https://learn.adafruit.com/introducting-itsy-bitsy-32u4.md)
- [NeoPixel Infinity Mirror Coaster](https://learn.adafruit.com/infinity-mirror-coaster.md)
- [Trinket / Gemma Mini-Theremin](https://learn.adafruit.com/trinket-gemma-mini-theramin-music-maker.md)
- [n3rfgun](https://learn.adafruit.com/n3rfgun.md)
- [Trinket / Gemma IR Control](https://learn.adafruit.com/trinket-gemma-ir-remote-control.md)
- [Adafruit Pro Trinket LiPoly/LiIon Backpack](https://learn.adafruit.com/adafruit-pro-trinket-lipoly-slash-liion-backpack.md)
- [Ray Gun Blaster](https://learn.adafruit.com/ray-gun-blaster.md)
- [CircuitPython Animated Sprite Pendants](https://learn.adafruit.com/circuitpython-sprite-animation-pendant-mario-clouds-flying-toasters.md)
- [3D Printed Camera LED Ring](https://learn.adafruit.com/3d-printed-camera-led-ring.md)
- [Really Simple Animatronic Tail](https://learn.adafruit.com/really-simple-animatronic-tail.md)
- [Talking d20 20-Sided Gaming Die](https://learn.adafruit.com/talking-d20-20-sided-gaming-die.md)
- [Purple People Eater](https://learn.adafruit.com/purple-people-eater.md)
