# NeoPixie Dust Bag

## Overview

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

No fairy costume is complete without a glowing pixie dust bag. This one uses a&nbsp;touch sensor to cycle through colors on the beautifully twinkling&nbsp;NeoPixel rings, all powered by a tiny GEMMA microcontroller. This sophisticated-looking, rechargeable prop is easy to build&nbsp;with just a little bit of soldering.

Info: 

You'll need:

- [Gemma M0](https://www.adafruit.com/product/3501)&nbsp;or&nbsp;[Original Gemma](http://www.adafruit.com/products/1222)&nbsp;(M0 type is recommended!) - can also substitute [Trinket M0](https://www.adafruit.com/product/3500) or [Trinket Mini](https://www.adafruit.com/product/1501)
- RGB [NeoPixel](https://www.adafruit.com/category/168)&nbsp;LEDs - two&nbsp;Flora pixels, one 12 x ring, and one 16 x ring
- Small translucent fabric pouch
- Scale model scenic snow in small plastic bag to diffuse pixels (or tissue paper, styrofoam beads, or another diffuser)
- 500mAh rechargeable lipoly battery and charger
- Tactile on/off switch
- Momentary&nbsp;[capacative touch sensor](https://www.adafruit.com/products/1374)
- 10k Ω resistor
- Heat shrink tubing or electrical tape
- Soldering iron and solder
- Solid core or stranded wire (20 to 26 gauge)
- Helping third hand tool
- Wire strippers
- Flush diagonal cutters
- Solderless breadboard, hookup wire, and alligator clips for prototyping
- Double-sided foam tape
- Needle and thread

# NeoPixie Dust Bag

## Circuit Diagram

![](https://cdn-learn.adafruit.com/assets/assets/000/049/709/medium800/led_pixels_NeoPixie_Dust_Bag.png?1514466196)

Info: 

The battery will be wired through a tactile switch to power the circuit on and off.

Power, ground, and control signals are wired from the GEMMA to the first FLORA pixel, then to the second, to the 12 LED ring, and finally to the 16 LED ring.

The momentary capacitive switch is wired as a pull-up resistor switch to ground and to the D2 pin of the GEMMA to read "button" pushes, and cycle through color choices.

&nbsp;

# NeoPixie Dust Bag

## Prototype the Circuit

![](https://cdn-learn.adafruit.com/assets/assets/000/020/462/medium800/projects_PA180132.jpg?1413749544)

Danger: 

Use a breadboard, hook-up wire, and alligator clip leads to test out the circuit. This is&nbsp;a good way to get familiar with the connections you'll be making before soldering, as well as a chance to upload the sketch and test out the lighting effects.

If this is your first time using GEMMA, work through the&nbsp;[Introducing GEMMA](../../../../introducing-gemma) guide first; you need to customize some settings in the Arduino IDE (or download ours). Once you have it up and running (test the 'blink' sketch), then download and install the NeoPixel library:

[Click to download the NeoPixel library](https://github.com/adafruit/Adafruit_NeoPixel/archive/master.zip)
Installing Arduino libraries is a frequent stumbling block. If this is your first time, or simply needing a refresher, please read the [All About Arduino Libraries](http://learn.adafruit.com/adafruit-all-about-arduino-libraries-install-use) tutorial.If the library is correctly installed (and the Arduino IDE is restarted), you should be able to navigate through the “File” rollover menus as follows:  
  
**File→Sketchbook→Libraries→Adafruit\_NeoPixel→strandtest**  
  
Connect up your NeoPixels in a solderless breadboard and use alligator clips to attach to GEMMA, referring to the circuit diagram if necessary.  
  
You’ll need to change a few lines in the code regarding the data pin (1), and number of pixels (30). The resulting (and slightly simplified) code is below:

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

From the **Tools→Board** menu, select **Adafruit Gemma 8MHz** or **Adafruit Trinket 8 MHz** as appropriate. Connect the USB cable between the computer and GEMMA, press the reset button on the board, then click the upload button (right arrow icon) in the Arduino IDE. When the battery is connected, you should get a light show from the LEDs. All your pixels working? Great! You can take apart this prototype and get ready to put the pixels in the collar. Refer to the [NeoPixel Uberguide](../../../../adafruit-neopixel-uberguide) for more info.

# NeoPixie Dust Bag

## Arduino Code

Info: 

With the circuit prototyped and the GEMMA connected to your computer, it's time to upload the NeoPixie Dust Bag sketch. This program randomly twinkles the NeoPixels and changes color each time you touch the capsense switch.

Click the "Copy Code" link at the top of the code block, then create a new sketch in the Adafruit Arduino IDE by clicking **File \> New**. Then, paste the code by clicking **Edit \> Paste** in the Arduino menu. Upload the code to your GEMMA by pressing the reset button on the GEMMA, waiting for the onboard red LED to blink, and then clicking **File \> Upload** in the Arduino IDE.

Once the code has been uploaded, your NeoPixie Dust Bag will begin to twinkle in the traditional, golden pixie dust hue. Tap the capsense switch to change it to blue. Be amazed and overjoyed! Then, keep trying out the different color shifts, or, modify the code to create your own colors.

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

Danger: 

# NeoPixie Dust Bag

## CircuitPython Code

![](https://cdn-learn.adafruit.com/assets/assets/000/049/710/medium800/led_pixels_gemma-cp.jpg?1514471799)

 **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/NeoPixie_Dust_Bag/code.py

This code requires the&nbsp; **neopixel.py** &nbsp;library. A factory-fresh board will have this already installed. If you’ve just reloaded the board with CircuitPython, create the “lib” directory and then&nbsp;[download neopixel.py from Github](https://github.com/adafruit/Adafruit_CircuitPython_NeoPixel).

# NeoPixie Dust Bag

## Fit It

![](https://cdn-learn.adafruit.com/assets/assets/000/020/463/medium800/projects_PA180137.jpg?1413749631)

Before wiring and soldering things togeter, it's a good idea to fit all of the parts&nbsp;together to get an idea of the physical layout, how it will all fit in the bag, and how the switches will be accessed and how the battery will be recharged.

Place the GEMMA "face down" (the word GEMMA and Adafruit logo should be facing up, and then set&nbsp;the two Flora pixels, 12 x ring, and 16 x ring on top of it. This will allow you to access the reset button, battery port, and USB port once assembled.

&nbsp;

&nbsp;

![](https://cdn-learn.adafruit.com/assets/assets/000/020/464/medium800/projects_PA180134.jpg?1413749668)

![](https://cdn-learn.adafruit.com/assets/assets/000/020/465/medium800/projects_PA180133.jpg?1413749694)

# NeoPixie Dust Bag

## Build It

![](https://cdn-learn.adafruit.com/assets/assets/000/020/471/medium800/projects_PA180142.jpg?1413749811)

Cut and strip short lengths of wire to connect the GEMMA to the first Flora NeoPixel. You can follow the [Circuit Diagram](../../../../assets/20408)&nbsp;image for wire color.

To wire them, pass the stripped ends of the wires through the holes on the NeoPixels and the GEMMA, solder them, and then &nbsp;snip the excess wire ends with the diagonal cutters.

&nbsp;

It helps to use a third-hand tool to hold the components during soldering. Also, be sure to solder in a well-ventilated area, preferably with a soldering exhaust fan.&nbsp;

![projects_PA180139.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/468/medium640/projects_PA180139.jpg?1413749790)

![projects_PA180140.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/472/medium640/projects_PA180140.jpg?1413749852)

![projects_PA180143.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/474/medium640/projects_PA180143.jpg?1413749917)

![projects_PA180151.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/475/medium640/projects_PA180151.jpg?1413749999)

You will need to solder multiple wires to a single pad in some cases -- for example, there are six&nbsp;connections to the GROUND pad of the GEMMA.

&nbsp;

You won't be able to fit all six wires through the through-hole, in this case it's fine to solder directly to the copper pad. Use both sides of the board if you run out of room to solder on one side.

![projects_PA180152.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/476/medium640/projects_PA180152.jpg?1413750100)

![projects_PA180154.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/477/medium640/projects_PA180154.jpg?1413750113)

![](https://cdn-learn.adafruit.com/assets/assets/000/020/478/medium800/projects_PA180158.jpg?1413750243)

Solder&nbsp;the data connection between the two Flora pixels (the blue wire in the circuit diagram) by lining up the out pin → of the first Flora with the ← in pin of the second Flora, inserting a small length of wire, and then soldering them together.

Continue soldering the remaining data, power, and ground connections to all of the NeoPixels.

![projects_PA180166.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/479/medium640/projects_PA180166.jpg?1413750474)

![projects_PA180167.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/480/medium640/projects_PA180167.jpg?1413750509)

![projects_PA180174.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/481/medium640/projects_PA180174.jpg?1413750526)

![projects_PA180178.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/484/medium640/projects_PA180178.jpg?1413750675)

![projects_PA180180.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/485/medium640/projects_PA180180.jpg?1413750694)

Continue soldering the remaining data, power, and ground connections to all of the NeoPixels.

![projects_PA180181.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/486/medium640/projects_PA180181.jpg?1413750768)

![](https://cdn-learn.adafruit.com/assets/assets/000/020/487/medium800/projects_PA180185.jpg?1413750804)

Next, you'll wire up the momentary capacative touch sensor breakout board. Bend the leads of the 10K Ohm resistor and insert&nbsp;them into the capsense board's OUT and GND connections.

Cover the bent resistor in a small piece of heat shrink tubing and heat it with the side of your soldering iron to insulate the connection. If you don't want the on-board red LED to light up when you touch the sensor, cut the trace on the board as directed [here](../../../../adafruit-capacitive-touch-sensor-breakouts/toggle-and-momentary).

![projects_PA180189.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/488/medium640/projects_PA180189.jpg?1413750862)

![projects_PA180192.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/489/medium640/projects_PA180192.jpg?1413750879)

![projects_PA180193.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/490/medium640/projects_PA180193.jpg?1413750894)

![projects_PA180196.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/491/medium640/projects_PA180196.jpg?1413750910)

Solder the wires and resistor leads to the board. This will create the circuit of the pull-up resitor, as well as provide power to the board. Cut off the excess wire strands and resistor leads.

![projects_PA180200.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/495/medium640/projects_PA180200.jpg?1413751487)

Plug the battery into the GEMMA to test the capsense board. It has an on-board LED which will light up when you touch the board.&nbsp;

![projects_PA180201.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/496/medium640/projects_PA180201.jpg?1413751655)

![projects_PA180202.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/497/medium640/projects_PA180202.jpg?1413751675)

Cover the bent resistor in a small piece of heat shrink tubing and heat it with the side of your soldering iron to insulate the connection.

&nbsp;

If you don't want the on-board red LED to light up when you touch the sensor, cut the trace on the board as directed [here](../../../../adafruit-capacitive-touch-sensor-breakouts/toggle-and-momentary).

![projects_PA180259.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/492/medium640/projects_PA180259.jpg?1413751081)

![projects_PA180262.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/493/medium640/projects_PA180262.jpg?1413751102)

![projects_PA180263.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/494/medium640/projects_PA180263.jpg?1413751303)

You'll splice the tactile switch into the battery's ground wire in order to turn the circuit on and off.&nbsp;Unplug the battery from the GEMMA before this step. Cut the battery's black wire in half with diagonal cutters, and then strip the ends.

&nbsp;

Trim the tactile switch wires down to 2" in length, and then strip the ends. Place a 1/2" length of heat shrink tubing on each of the tactile switch leads. Twist one switch lead to each of the black battery wires, then solder them each.

&nbsp;

Slide&nbsp;the heat shrink tubing over the bare connections and heat the tubing with the side of your soldering iron (or use electrician's tape) in order to insulate the connections.

![projects_PA180205.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/498/medium640/projects_PA180205.jpg?1413751760)

![projects_PA180209.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/499/medium640/projects_PA180209.jpg?1413751775)

![projects_PA180216.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/500/medium640/projects_PA180216.jpg?1413751796)

![projects_PA180218.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/501/medium640/projects_PA180218.jpg?1413751814)

![projects_PA180219.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/502/medium640/projects_PA180219.jpg?1413751845)

![projects_PA180221.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/503/medium640/projects_PA180221.jpg?1413752021)

Plug the battery JST connector into the GEMMA and test the tactile switch. It should&nbsp;turn the circuit on and off.

![projects_PA180222.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/507/medium640/projects_PA180222.jpg?1413752608)

![projects_PA180223.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/508/medium640/projects_PA180223.jpg?1413752781)

Once on, test out the capacitive sense switch to cycle through the different LED colors.

![projects_PA180227.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/510/medium640/projects_PA180227.jpg?1413752869)

![projects_PA180228.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/511/medium640/projects_PA180228.jpg?1413752948)

# NeoPixie Dust Bag

## Bag It

![](https://cdn-learn.adafruit.com/assets/assets/000/020/512/medium800/projects_PA180233.jpg?1413753036)

Dry fit all of the parts into the drawstring bag to get an idea of where things will best fit. &nbsp;This is a good time to double-check that everything still&nbsp;works, particularly the capsense switch through the fabric.

Use a small piece of double stick foam tape to affix the tactile switch to the battery.

![projects_PA180237.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/513/medium640/projects_PA180237.jpg?1413753082)

![projects_PA180239.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/514/medium640/projects_PA180239.jpg?1413753283)

With additional piece of double stick foam tape, connect the two Flora pixels to the GEMMA board, and the rings to the Flora pixels and each other.

![projects_PA180240.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/515/medium640/projects_PA180240.jpg?1413753334)

![projects_PA180241.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/516/medium640/projects_PA180241.jpg?1413753691)

![projects_PA180242.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/517/medium640/projects_PA180242.jpg?1413753707)

Place the capsense switch inside the bag where you'll be able to touch it, then use a needle and thread to stitch its two bottom&nbsp;corners to the side of the bag that the sensor is facing. Don't go through both layers of the bag.

![projects_PA180244.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/518/medium640/projects_PA180244.jpg?1413753769)

![projects_PA180246.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/519/medium640/projects_PA180246.jpg?1413753809)

![projects_PA180257.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/520/medium640/projects_PA180257.jpg?1413753856)

Place the battery/switch combination in the other bottom corner of the bag, then insert the GEMMA/NeoPixel assembly.

Fill a small plastic bag with the scale model snow (or styrofoam beads, rice, or another diffusing material of your choice).

&nbsp;

Then place the plastic diffuser bag in the pixie dust bag, in front of the GEMMA/NeoPixel assembly.

![projects_PA180265.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/521/medium640/projects_PA180265.jpg?1413753908)

![projects_PA180266.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/522/medium640/projects_PA180266.jpg?1413753931)

![projects_PA180269.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/523/medium640/projects_PA180269.jpg?1413753956)

![projects_PA180267.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/524/medium640/projects_PA180267.jpg?1413753980)

![](https://cdn-learn.adafruit.com/assets/assets/000/020/525/medium800/projects_PA180273.jpg?1413754027)

Pull the drawstring on your bag tight, and press the tactile switch to turn on the magic of the pixie dust!

Tap the capsense switch to try out the different beautiful colors. The bag will look especially wonderful&nbsp;in the dark!

![projects_PA180274.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/526/medium640/projects_PA180274.jpg?1413754133)

![projects_PA180280.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/527/medium640/projects_PA180280.jpg?1413754151)

![projects_PA180282.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/528/medium640/projects_PA180282.jpg?1413754176)

![projects_PA180283.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/529/medium640/projects_PA180283.jpg?1413754193)

![projects_PA180284.jpg](https://cdn-learn.adafruit.com/assets/assets/000/020/530/medium640/projects_PA180284.jpg?1413754216)

Enjoy spreading your pixie dust magic. Should your power run out, simply disconnect the battery JST switch from the GEMMA, and plug it in to the charger, which you'll in turn plug into a USB port. Once the battery is charged, reconnect it to your GEMMA.

![](https://cdn-learn.adafruit.com/assets/assets/000/020/793/medium800/projects_PA310150.jpg?1414770343)


## 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)
### Adafruit Trinket M0 - for use with CircuitPython & Arduino IDE

[Adafruit Trinket M0 - for use with CircuitPython & Arduino IDE](https://www.adafruit.com/product/3500)
The&nbsp;Adafruit Trinket M0 may be small, but do not be fooled by its size! It's a tiny microcontroller board, built around the Atmel ATSAMD21, a little chip with _a lot_ of power. We wanted to design a microcontroller board that was small enough to fit into any project, and low...

In Stock
[Buy Now](https://www.adafruit.com/product/3500)
[Related Guides to the Product](https://learn.adafruit.com/products/3500/guides)
### 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 Ring - 12 x 5050 RGB LED with Integrated Drivers

[NeoPixel Ring - 12 x 5050 RGB LED with Integrated Drivers](https://www.adafruit.com/product/1643)
Round and round and round they go! 12 ultra bright smart LED NeoPixels are arranged in a circle with 1.5" (37mm) outer diameter. The rings are 'chainable' - connect the output pin of one to the input pin of another. Use only one microcontroller pin to control as many as you can...

Out of Stock
[Buy Now](https://www.adafruit.com/product/1643)
[Related Guides to the Product](https://learn.adafruit.com/products/1643/guides)
### NeoPixel Ring - 16 x 5050 RGB LED with Integrated Drivers

[NeoPixel Ring - 16 x 5050 RGB LED with Integrated Drivers](https://www.adafruit.com/product/1463)
Round and round and round they go! 16 ultra bright smart LED NeoPixels are arranged in a circle with 1.75" (44.5mm) outer diameter. The rings are 'chainable' - connect the output pin of one to the input pin of another. Use only one microcontroller pin to control as many as you can...

In Stock
[Buy Now](https://www.adafruit.com/product/1463)
[Related Guides to the Product](https://learn.adafruit.com/products/1463/guides)
### Flora RGB Smart NeoPixel version 3 - Pack of 4

[Flora RGB Smart NeoPixel version 3 - Pack of 4](https://www.adafruit.com/product/1260)
What's a wearable project without LEDs? Our favorite part of the Flora platform is these tiny smart pixels. Designed specifically for wearables, these updated Flora NeoPixels have ultra-cool technology: these ultra-bright LEDs have a constant-current driver cooked right into the LED...

In Stock
[Buy Now](https://www.adafruit.com/product/1260)
[Related Guides to the Product](https://learn.adafruit.com/products/1260/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 Trinket M0](https://learn.adafruit.com/adafruit-trinket-m0-circuitpython-arduino.md)
- [NeoPixel Ring Clock](https://learn.adafruit.com/neopixel-ring-clock.md)
- [Festive Feather Holiday Lights](https://learn.adafruit.com/festive-feather-holiday-lights.md)
- [Twinkly Earwarmer Headband](https://learn.adafruit.com/twinkly-ear-warmer.md)
- [Battery Powering Wearable Electronics](https://learn.adafruit.com/battery-powering-wearable-electronics.md)
- [Capacitive Touch Unicorn Horn](https://learn.adafruit.com/capacitive-touch-unicorn-horn.md)
- [Prop-Maker Keyblade](https://learn.adafruit.com/propmaker-keyblade.md)
- [Introducing Trinket](https://learn.adafruit.com/introducing-trinket.md)
- [NeoPixel Ring Bangle Bracelet](https://learn.adafruit.com/neopixel-ring-bangle-bracelet.md)
- [Interior Purse Light](https://learn.adafruit.com/interior-purse-light.md)
- [Trinket / Gemma IR Control](https://learn.adafruit.com/trinket-gemma-ir-remote-control.md)
- [Trinket Ultrasonic Rangefinder](https://learn.adafruit.com/trinket-ultrasonic-rangefinder.md)
- [Build your own Borg (BYOB)](https://learn.adafruit.com/build-your-own-borg-byob.md)
- [Trinket / Gemma Blinky Eyes](https://learn.adafruit.com/trinket-gemma-blinky-eyes.md)
- [Gemma Color Touch Pendant Necklace](https://learn.adafruit.com/gemma-color-touch-pendant-necklace.md)
- [Circuit Playground & Fiber Optics](https://learn.adafruit.com/circuit-playground-light-pod.md)
