# Light Paintbrush with Circuit Playground

## Overview

![](https://cdn-learn.adafruit.com/assets/assets/000/037/195/medium800/leds_CPaint_028.jpg?1478715224)

https://youtu.be/pHWi-MtXKs4

# Painting with Light

Streaks of colorful light, suspended in midair -- ever since people&nbsp;began to capture images on film we have had a fascination with light painting and light drawing. By simply moving a light source in front of an open shutter, motion over time could be captured on camera.

We have a rich history of light painting projects here at Adafruit, as well. Check out some of [these excellent projects](../../../search?q=light%20paint&) for incredible effects that involve persistence&nbsp;of vision images painted with light, and even [thermal heat map painting](../../../diy-flir-light-painting-heat-map-photography/overview?view=all).

![](https://cdn-learn.adafruit.com/assets/assets/000/037/144/medium800/leds_CPaintBuild_008.jpg?1478671702)

A&nbsp;Circuit Playground and a camera or smartphone capable of taking long exposure photos is enough to get started. By using the on-board accelerometer, you'll be able to change colors by rotating the Circuit Playground. As an added touch, you can use a potentiometer to easily adjust the brightness of the NeoPixels.

# Light Paintbrush with Circuit Playground

## Code the Light Paintbrush

Before you&nbsp;get started, make sure you've been through the basic tutorials on using the Circuit Playground. You'll need to have installed the&nbsp;Arduino IDE, added the Circuit Playground board to Arduino, and added&nbsp;the Circuit Playground library. This excellent guide, [Introducing Circuit Playground](../../../../introducing-circuit-playground/overview) and [Circuit Playground lesson #0](../../../../circuit-playground-lesson-number-0/) will show you how to do all of that and get you going in no time!

![](https://cdn-learn.adafruit.com/assets/assets/000/037/189/medium800/leds_circuit_playground_CircuitPlayground_illo_1600.png?1478705174)

Info: 

Plug your Circuit Playground into your computer now using a USB cable, and launch the Arduino IDE. Double check that you've selected the board and port as in the Lesson #0 tutorial and are ready to upload code.

The code for the Light Paintbrush has two jobs:

- Read the on-board accelerometer to determine which color to set&nbsp;the NeoPixels
- Read the potentiometer connected to pin #10 to set the NeoPixel brightness

```auto
// ---------------------------------------------------------------------------
//Circuit Playground Light Paintbrush
// John Park
// for Adafruit Industries
//
// Use the Circuit Playground as a long exposure photography light paintbrush
// tilt to change color
// adjust brightness with the 10k potentiometer
//
 /*      +X 
 *       __
 *      /  \  
 * +Y  |    |  -Y
 *      \__/
 *      
 *       -X
 */
//
// MIT license, check LICENSE for more information
//
//
// ---------------------------------------------------------------------------

#include &lt;Adafruit_CircuitPlayground.h&gt;
#include &lt;Wire.h&gt;
#include &lt;SPI.h&gt;

int sensorPin = A10;
int sensorValue = 0;
int brightVal = (20);

int X;
int Y;

int red = 0;
int green = 255;
int blue = 0;

void setup() {
  CircuitPlayground.begin();
  CircuitPlayground.clearPixels();
  CircuitPlayground.setBrightness(brightVal);  
}

void loop() {
  sensorValue = analogRead(sensorPin);
  brightVal = map(sensorValue, 0, 1023, 0, 225);

  X = CircuitPlayground.motionX();
  Y = CircuitPlayground.motionY();

  if ( (X&gt;=1) &amp;&amp; (Y&lt;1) ) {      //+x, -y = GREEN
    red = 0 ;
    green = 255;
    blue = 0;
  }
  else if ( (X &lt;1 ) &amp;&amp; (Y&lt;1) ){ //-x, -y = BLUE
    red = 0;
    green = 0;
    blue = 255;
  }
  else if ( (X &gt;=1) &amp;&amp; (Y&gt;=1) ){ //+x, +y = RED
    red = 255;
    green = 0;
    blue = 0;
  }
  else if ( (X &lt;1) &amp;&amp; (Y&gt;=1) ){  //-x, +y = YELLOW
    red = 255;
    green = 255;
    blue = 0;
  }

  for (int i=0; i&lt;10; ++i) {
    CircuitPlayground.setBrightness(brightVal);
    CircuitPlayground.strip.setPixelColor(i, red, green, blue);
  }   
  CircuitPlayground.strip.show();
}
```

## Download the Code

You can press the button below to download the code. Unzip and move the directory _CircuitPlaygroundLightPaintbrush&nbsp;_to your Arduino sketch directory, then open it in the Arduino IDE and upload it to your Circuit Playground.

[CircuitPlaygroundLightPaintbrush.zip](https://cdn-learn.adafruit.com/assets/assets/000/037/190/original/CircuitPlaygroundLightPaintbrush.zip?1478705625)
Next you'll assemble the Light Paintbrush.

# Light Paintbrush with Circuit Playground

## MakeCode for Circuit Playground Express

Info: 

## Lots of Coding Options

There are many&nbsp;options for programming the&nbsp;Circuit Playground Express to work as a Light Paintbrush! You can hand-code it with&nbsp;the traditional, text-based Arduino IDE, as seen in the previous page of this guid, you can try your hand at the exciting new CircuitPython methods, or you can harness&nbsp;the incredibly user-friendly, yet powerful block-based interface of Microsoft's&nbsp;[MakeCode web app](https://makecode.adafruit.com/)!! (You can even go full circle and hand type code inside the MakeCode interface with Javascript!)

By simply dragging and dropping elemental code blocks, you can create Circuit Playground Express software in no time, and even test it out with the virtual Circuit Playground Express simulator built into the page.

Be sure you've gone through the&nbsp;[tutorial here on the basics of MakeCode](../../../../makecode?view=all)&nbsp;for Circuit Playground Express.&nbsp;

https://makecode.com/_8zg2qKb2MbAL

## MakeCode

You're now ready to begin coding&nbsp;your own program with the MakeCode interface to use the Circuit Playground Express as your tilt-reactive Light Paintbrush.&nbsp;

Click the&nbsp; **Projects&nbsp;** button so you can start a new project.

![](https://cdn-learn.adafruit.com/assets/assets/000/042/383/medium800/leds_sensors_cpe_makeCodeWand1.jpg?1496816117)

Click the&nbsp; **New Project...** &nbsp;button to create the new empty project.

![](https://cdn-learn.adafruit.com/assets/assets/000/042/384/medium800/leds_sensors_cpe_makeCodeWand2.jpg?1496816161)

![](https://cdn-learn.adafruit.com/assets/assets/000/042/364/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express.jpg?1496815630)

## Input

Your Light Paintbrush will display different colors depending on the angle to&nbsp;which you rotate it. To do this, you'll create inputs that check the rotation angle, and then set the entire NeoPixel ring to a particular color.

The first block you'll add is is an input block that can read the tilt orientation of the accelerometer on the Circuit Playground Express. Click on the **Input** category and choose the **on shake** block, then drag it to the canvas. (All of the accelerometer-based inputs contained within this one block.)

![](https://cdn-learn.adafruit.com/assets/assets/000/042/365/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_2.jpg?1496815636)

Click on the&nbsp; **shake** dropdown, and select the&nbsp; **tilt up** options from the list.

![](https://cdn-learn.adafruit.com/assets/assets/000/042/366/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_3.jpg?1496815640)

## Colored LEDs
To light&nbsp;the LEDs, you'll add a&nbsp; **show ring&nbsp;** block from the **Light&nbsp;** category, and then drag it inside the&nbsp; **on tilt up&nbsp;** block.

![](https://cdn-learn.adafruit.com/assets/assets/000/042/367/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_4.jpg?1496815645)

You can test this in the simulator by hovering your mouse cursor over the top of the virtual Circuit Playground Express. You'll see the board tilt a bit and the LEDs will turn red. The simulator is a great way to iterate on your program without needing to upload to the real board every time.

![](https://cdn-learn.adafruit.com/assets/assets/000/042/368/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_5.jpg?1496815650)

The default&nbsp; **show ring&nbsp;** color is red, but we'll go ahead and change the **on tilt up&nbsp;** color to green. You can do so by first clicking the green "pie wedge" color picker, and then clicking each of the circular LED dots.

![](https://cdn-learn.adafruit.com/assets/assets/000/042/369/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_6.jpg?1496815654)

Now when you hover your cursor over the top of the board in the simulator, the LEDs will turn green. Success!

![](https://cdn-learn.adafruit.com/assets/assets/000/042/370/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_7.jpg?1496815661)

To create the other three tilt direction/color block sets, right-mouse-button (RMB) click the&nbsp; **on tilt up** block and then left-mouse-button (LMB) click the&nbsp; **Duplicate&nbsp;** command from the pop-up list.

![](https://cdn-learn.adafruit.com/assets/assets/000/042/371/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_8.jpg?1496815667)

Info: 

![](https://cdn-learn.adafruit.com/assets/assets/000/042/372/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_9.jpg?1496815672)

Click on the&nbsp; **tilt up** option on the second block set and choose **tilt right.**

![](https://cdn-learn.adafruit.com/assets/assets/000/042/373/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_10.jpg?1496815678)

Using the same method as before, change the LED colors to red on the **on** &nbsp; **tilt right&nbsp;** block set.

![](https://cdn-learn.adafruit.com/assets/assets/000/042/374/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_11.jpg?1496815684)

And now, complete the set of gestures by duplicating the block set two more times, and adjusting them as seen here.

![](https://cdn-learn.adafruit.com/assets/assets/000/042/376/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_12.jpg?1496815709)

That's all there is to creating the core functions of you motion reactive, color changing Light Paintbrush! Test it out on the simulator, and then we'll add one more feature -- a set of hight/low brightness controls.

## Brightness Control
To adjust brightness between high and low, you'll click the A and B buttons. Go to the&nbsp; **Input&nbsp;** block and add an&nbsp; **on button A click** block.

![](https://cdn-learn.adafruit.com/assets/assets/000/042/375/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_13.jpg?1496815692)

Click on the&nbsp; **Light&nbsp;** category and add a&nbsp; **set brightness 0&nbsp;** block inside the&nbsp; **on button A click&nbsp;** block.

![](https://cdn-learn.adafruit.com/assets/assets/000/042/377/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_14.jpg?1496815728)

Info: 

Change the "low" brightness setting to 50. You can adjust this value later as you see fit.

![](https://cdn-learn.adafruit.com/assets/assets/000/042/378/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_15.jpg?1496815735)

Duplicate the&nbsp; **on button A click&nbsp;** block, and then switch the input on the new copy to **b**** utton B,&nbsp;**and set the brightness value to 255 (which is blindingly bright, so be careful!)

![](https://cdn-learn.adafruit.com/assets/assets/000/042/379/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_16.jpg?1496815741)

![](https://cdn-learn.adafruit.com/assets/assets/000/042/380/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_17.jpg?1496815747)

![](https://cdn-learn.adafruit.com/assets/assets/000/042/381/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_18.jpg?1496815754)

Info: 

Your program is complete! You can now dowload the .uf2 file, and upload&nbsp;it to your Circuit Playground Express by plugging it into your computer over USB, and pressing the reset button on the Circuit Playground Express to place it into bootloader mode, and then dragging the .uf2 file onto the CPLAYBOOT drive on your computer.

![](https://cdn-learn.adafruit.com/assets/assets/000/042/382/medium800/leds_CPX_Light_Paintbrush_-_Adafruit_Circuit_Playground_Express_19.jpg?1496815760)

# Light Paintbrush with Circuit Playground

## Assemble the Light Paintbrush

![](https://cdn-learn.adafruit.com/assets/assets/000/037/146/medium800/leds_CPaintBuild_001.jpg?1478671847)

With the Arduino software loaded onto the Circuit Playground Classic, your&nbsp;Light Paintbrush will need power and one additional sensor -- a potentiometer -- to control brightness. You'll use the battery holder as both power supply and handle for your Light Paintbrush. This is expedient, inexpensive, and a great example of form following function. You could build a nice enclosure for the project if you like, but the Light Paintbrush works well without one.

Info: 

Info: 

![](https://cdn-learn.adafruit.com/assets/assets/000/037/191/medium800/leds_cplayLightPaintCircuit.png?1478709784)

The first build step is to attach leads to the potentiometer. The potentiometer uses three connections to the Circuit Playground Express -- ground, signal, and voltage. The ground and voltage are references&nbsp;for the varying resistance of the middle signal leg as the knob is turned. The Circuit Playground reads these changes as analog values from 0 to 1023, which are then remapped to NeoPixel brightness values in the software.

Cut one clip end off of each alligator clip lead, and strip away a bit of insulation to expose the wire. Tin the potentiometer legs with solder, tin the wires, and then solder the wires to the legs in the order shown here.

![](https://cdn-learn.adafruit.com/assets/assets/000/037/147/medium800/leds_CPaintBuild_002.jpg?1478671861)

Then, clip the leads to the pads on the Circuit Playground Express:

- black to GND
- yellow to #10&nbsp;
- red to 3.3V

![](https://cdn-learn.adafruit.com/assets/assets/000/037/148/medium800/leds_CPaintBuild_003.jpg?1478671880)

Next, use a small piece of foam double-stick tape to connect the battery case to the back of the Circuit Playground.

![](https://cdn-learn.adafruit.com/assets/assets/000/037/149/medium800/leds_CPaintBuild_004.jpg?1478671897)

Finally, use some foam tape to attach the potentiometer to the battery case.

![](https://cdn-learn.adafruit.com/assets/assets/000/037/150/medium800/leds_CPaintBuild_005.jpg?1478671917)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/151/medium800/leds_CPaintBuild_006.jpg?1478671926)

That's it, your Light Paintbrush is complete!

Turn it on and try tilting the brush to change colors, and adjust brightness with the knob.

![](https://cdn-learn.adafruit.com/assets/assets/000/037/154/medium800/leds_CPaintBuild_009.jpg?1478671960)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/155/medium800/leds_CPaintBuild_010.jpg?1478671971)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/152/medium800/leds_CPaintBuild_007.jpg?1478671936)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/153/medium800/leds_CPaintBuild_008.jpg?1478671950)

Now comes the artistic part -- time to make some light paintings!

# Light Paintbrush with Circuit Playground

## Paint with Light

![](https://cdn-learn.adafruit.com/assets/assets/000/037/157/medium800/leds_CPaint_002.jpg?1478674262)

Now that you've built it&nbsp;, in order to paint with your Light Paintbrush you'll need a dark place and a camera or smartphone with "bulb" or long exposure mode.

On a camera, look for a "B" on the dial or check the far end of the shutter values. Bulb may require a held shutter, so it can be convenient to use a shutter in the 10-to-30 second range (notated as 10", 20", 30" and so on), or a remote trigger.

![](https://cdn-learn.adafruit.com/assets/assets/000/037/192/medium800/leds_bulb1.jpg?1478712043)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/193/medium800/leds_bulb3.jpg?1478712073)

For smartphones there are many apps available -- just search for "long exposure" or "light trails" in the app store of your choice.&nbsp;

![](https://cdn-learn.adafruit.com/assets/assets/000/037/194/medium800/leds_longEx.png?1478712122)

Now, head to a darkened room or outdoors at night. Set your camera or smartphone on a table or tripod, put it in long exposure mode with a small aperture to keep the scene fairly dark, and press the shutter.

Turn on your Circuit Playground Light Paintbrush, set the brightness knob to a medium setting, and move the Light Paintbrush in some circles and arcs. When you're done, press the camera shutter again and check your photo.&nbsp;

It may&nbsp;take some tuning to get the brightness and focus just right -- it's very helpful to have an assistant -- but once you do you'll see beautiful streaks of light with colors changing depending on the rotation arc of your arm or how you twist your wrist.

![](https://cdn-learn.adafruit.com/assets/assets/000/037/158/medium800/leds_CPaint_003.jpg?1478674278)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/159/medium800/leds_CPaint_004.jpg?1478674301)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/160/medium800/leds_CPaint_005.jpg?1478674317)

This image was a single streak during a five second exposure.

![](https://cdn-learn.adafruit.com/assets/assets/000/037/164/medium800/leds_CPaint_009.jpg?1478674354)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/162/medium800/leds_CPaint_007.jpg?1478674339)

For these jellyfish-like images, the brightness knob was twisted on and off while moving and twisting the brush.

![](https://cdn-learn.adafruit.com/assets/assets/000/037/156/medium800/leds_CPaint_001.jpg?1478674245)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/173/medium800/leds_CPaint_018.jpg?1478674432)

Less can be more.

![](https://cdn-learn.adafruit.com/assets/assets/000/037/166/medium800/leds_CPaint_011.jpg?1478674371)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/167/medium800/leds_CPaint_012.jpg?1478674380)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/168/medium800/leds_CPaint_013.jpg?1478674387)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/171/medium800/leds_CPaint_016.jpg?1478674417)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/174/medium800/leds_CPaint_019.jpg?1478674441)

More can also be more.

![](https://cdn-learn.adafruit.com/assets/assets/000/037/161/medium800/leds_CPaint_006.jpg?1478674329)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/170/medium800/leds_CPaint_015.jpg?1478674408)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/172/medium800/leds_CPaint_017.jpg?1478674426)

Here I illuminated my face briefly as well by pointing the Light Paintbrush at myself.

![](https://cdn-learn.adafruit.com/assets/assets/000/037/175/medium800/leds_CPaint_020.jpg?1478674449)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/177/medium800/leds_CPaint_022.jpg?1478674471)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/169/medium800/leds_CPaint_014.jpg?1478674395)

An external flash (or bright light turned on and off briefly) can help add your subject to the photograph without blurring.

![](https://cdn-learn.adafruit.com/assets/assets/000/037/178/medium800/leds_CPaint_023.jpg?1478674481)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/186/medium800/leds_CPaint_031.jpg?1478674565)

![](https://cdn-learn.adafruit.com/assets/assets/000/037/180/medium800/leds_CPaint_025.jpg?1478674502)

Enjoy creating art with your Circuit Playground Light Paintbrush!


## Featured Products

### Circuit Playground Classic

[Circuit Playground Classic](https://www.adafruit.com/product/3000)
Would you like to learn electronics, with an all-in-one board that has sensors and LEDs built in? **Circuit Playground** is here - and it's the best way to practice programming on real hardware with no soldering or sewing required!

This is the **Classic**...

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

[Circuit Playground Express](https://www.adafruit.com/product/3333)
 **Circuit Playground Express** is the next step towards a perfect introduction to electronics and programming. We've taken the original Circuit Playground Classic and made it even better! Not only did we pack even more sensors in, we also made it even easier to...

Out of Stock
[Buy Now](https://www.adafruit.com/product/3333)
[Related Guides to the Product](https://learn.adafruit.com/products/3333/guides)
### 3 x AAA Battery Holder with On/Off Switch and 2-Pin JST

[3 x AAA Battery Holder with On/Off Switch and 2-Pin JST](https://www.adafruit.com/product/727)
This battery holder connects 3 AAA batteries together in series for powering all kinds of projects. We spec'd these out because the box is slim, and 3 AAA's add up to about 3.3-4.5V, a very similar range to Lithium Ion/polymer (Li-Ion) batteries and have an on-off switch. That makes...

In Stock
[Buy Now](https://www.adafruit.com/product/727)
[Related Guides to the Product](https://learn.adafruit.com/products/727/guides)
### Panel Mount 10K potentiometer (Breadboard Friendly)

[Panel Mount 10K potentiometer (Breadboard Friendly)](https://www.adafruit.com/product/562)
This potentiometer is a two-in-one, good in a breadboard or with a panel. It's a fairly standard linear taper 10K ohm potentiometer, with a grippy shaft. It's smooth and easy to turn, but not so loose that it will shift on its own. We like this one because the legs are 0.2" apart...

In Stock
[Buy Now](https://www.adafruit.com/product/562)
[Related Guides to the Product](https://learn.adafruit.com/products/562/guides)
### Potentiometer Knob - Soft Touch T18 - Red

[Potentiometer Knob - Soft Touch T18 - Red](https://www.adafruit.com/product/2046)
_Oh say can you see_  
_By the knob's early light..._

Sorry - we thought that was clever. &nbsp;And while it wasn't really, this potentiometer knob definitely is. &nbsp;It's a 'soft touch' T18 knob that works great with our <a...></a...>

In Stock
[Buy Now](https://www.adafruit.com/product/2046)
[Related Guides to the Product](https://learn.adafruit.com/products/2046/guides)
### Small Alligator Clip Test Lead (set of 12)

[Small Alligator Clip Test Lead (set of 12)](https://www.adafruit.com/product/1008)
Connect this to that without soldering using these handy mini alligator clip test leads. 15" cables with alligator clip on each end, color coded. You get 12 pieces in 6 colors. Strong and grippy, these always come in handy! We often use these in conjunction with a multimeter so we...

Out of Stock
[Buy Now](https://www.adafruit.com/product/1008)
[Related Guides to the Product](https://learn.adafruit.com/products/1008/guides)
### Short Wire Alligator Clip Test Lead (set of 12)

[Short Wire Alligator Clip Test Lead (set of 12)](https://www.adafruit.com/product/1592)
Connect this to that without soldering using these handy mini alligator clip test leads. Approximately 4.5" overall cables with alligator clip on each end, color coded. You get 12 pieces in 6 colors. Strong and grippy, these always come in handy! We often use these in conjunction with a...

In Stock
[Buy Now](https://www.adafruit.com/product/1592)
[Related Guides to the Product](https://learn.adafruit.com/products/1592/guides)
### USB cable - USB A to Micro-B

[USB cable - USB A to Micro-B](https://www.adafruit.com/product/592)
This here is your standard A to micro-B USB cable, for USB 1.1 or 2.0. Perfect for connecting a PC to your Metro, Feather, Raspberry Pi or other dev-board or microcontroller

Approximately 3 feet / 1 meter long

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

## Related Guides

- [Introducing Circuit Playground](https://learn.adafruit.com/introducing-circuit-playground.md)
- [Adafruit Circuit Playground Express](https://learn.adafruit.com/adafruit-circuit-playground-express.md)
- [Circuit Playground Seashell Pendant](https://learn.adafruit.com/circuit-playground-seashell-pendant.md)
- [Chinese Dragon Puppet with Motion-Reactive Flame Effect](https://learn.adafruit.com/chinese-dragon-puppet-with-motion-reactive-flame-effect.md)
- [CircuitPython Hardware: ILI9341 TFT & FeatherWing](https://learn.adafruit.com/micropython-hardware-ili9341-tft-and-featherwing.md)
- [MicroBlocks Circuit Playground Express Ornament](https://learn.adafruit.com/microblocks-circuitplayground-express-ornament.md)
- [Case for Circuit Playground](https://learn.adafruit.com/case-for-circuit-playground.md)
- [Circuit Playground Yoyo](https://learn.adafruit.com/circuit-playground-yoyo.md)
- [Glowing Smokey Skull ](https://learn.adafruit.com/glowing-smokey-skull.md)
- [Professor Bubbleton’s Breathing Head in a Jar](https://learn.adafruit.com/professor-bubbleton-s-breathing-head-in-a-jar.md)
- [Circuit Playground Express Head-Tilt Ears](https://learn.adafruit.com/circuit-playground-express-head-tilt-ears.md)
- [Make It Pulse](https://learn.adafruit.com/make-it-pulse.md)
- [Ever-Burning Flame Painting](https://learn.adafruit.com/ever-burning-flame-painting.md)
- [Custom Controllers for MakeCode Arcade](https://learn.adafruit.com/custom-controllers-for-makecode-arcade.md)
- [Machine Learning with Marshmallows and Tiny Sorter](https://learn.adafruit.com/machine-learning-with-marshmallows-and-tiny-sorter.md)
- [Make It Glow: How to Solder NeoPixels, A Beginner's Guide](https://learn.adafruit.com/make-it-glow-how-to-solder-neopixels-a-beginners-guide.md)
- [Automatic Cat Treat Dispenser](https://learn.adafruit.com/automatic-cat-treat-dispenser.md)
