# Raspberry Pi Pokemon Finder

## Overview

https://youtu.be/aSlRnKYBSVI

![](https://cdn-learn.adafruit.com/assets/assets/000/034/787/medium800/raspberry_pi_hero-with-laptop.jpg?1471229396)

## Reverse Lure Module!

In this project we’ll show you how to find Pokemon with the Raspberry Pi.&nbsp;It looks like a lure module, but instead of attracting Pokemon, it lets you know when they’re close.&nbsp;

It like getting a notification when Pokemon are nearby. This can be really useful, especially when you’re at work or stuck in class.&nbsp;So now you don’t have to keep your mobile device open or keep checking every ten minutes.

![](https://cdn-learn.adafruit.com/assets/assets/000/034/789/medium800/raspberry_pi_hero-for-txt.jpg?1471265827)

## How Does It Work?

When a common Pokemon appears, this first LED turns on. The second LED lights up when rare Pokemon are nearby, and when legendary Pokemon show up, the third LED will turn on.

By loading some python code onto the Raspberry Pi, you can connect to the unofficial Niantic Pokemon API and get request when a Pokemon spawns in your area. In the JSON configuration file, you can specify any location.

## Warning, Warning, Warning!!

This is really risky hacker business and could potentially get you banned! This is completely against Niantic’s terms of service.

It’s a proof of concept for educational hacking only! Niantic doesn’t like it when folks use the API and they’ll probably shut down access to it - So if you’re watching this, it may or may not work.

So fair warning, Don’t use this on your main account! And there’s no guarantee it’ll work at all - but the case is pretty cool!

![](https://cdn-learn.adafruit.com/assets/assets/000/034/791/medium800/raspberry_pi_parts-crop.jpg?1471269062)

## Parts

- [Raspberry Pi Zero](https://www.adafruit.com/products/2885)
- [Tiny OTG Adaper USB Micro to USB](https://www.adafruit.com/products/2910)
- [Mini WiFi Module](https://www.adafruit.com/products/814)
- [3mm LED](https://www.adafruit.com/products/778)
- [220ohm Resistor](https://www.adafruit.com/products/2780)
- [Perma-Proto Flex-PCB](https://adafruit.com/products/1518)

## Tools and Supplies

- [Soldering Iron](https://www.adafruit.com/categories/84?q=soldering%20iron&) + [Solder](https://www.adafruit.com/categories/84?q=solder%20wire&)
- [30AWG Silicone-coated wire](https://www.adafruit.com/products/2051)
- [Wire Strippers](https://www.adafruit.com/products/527)
- [3D Printer](https://www.adafruit.com/categories/245) + [Filament](https://www.adafruit.com/products/2080)

![](https://cdn-learn.adafruit.com/assets/assets/000/034/794/medium800/raspberry_pi_hero-1.jpg?1471271106)

# Raspberry Pi Pokemon Finder

## Software

Not only can you make this lovely Lure-like case, you can make the Pi Zero act as a reverse-Lure, _a Pokemon Finder!_ By loading some python software into the Pi, you can connect to the unofficial Niantic Pokemon API and determine when a Pokemon spawns in your area.

Thanks to James for the writeup!

Danger: 

Connecting to Niantic's servers and using the API is _completely against the terms of service._ It's a fun hack but is not authorized by Niantic and can cause the account used to be soft-banned or perhaps even perma-banned!

**Do not use your main account!**

Also, Niantic doesn't particularly like it when people use the API and they are very likely to shut access to it (again) soon!

**This code may not work past when this was written on August 11, 2016. There is no guarantee or support or expectation that this will work at all!**

Danger: 

Info: 

[Code on Github](https://github.com/adafruit/Raspberry-Pi-Pokemon-Detector)
# Prepare Pi Zero

[Start by loading up Jessie Lite on your Raspberry Pi](../../../../adafruit-raspberry-pi-lesson-1-preparing-and-sd-card-for-your-raspberry-pi/)

You'll also need to log into a shell on your Pi Zero, [we prefer using a USB console cable](../../../../adafruits-raspberry-pi-lesson-5-using-a-console-cable/you-will-need?view=all) but you can also connect a keyboard and use HDMI or connect an ethernet adapter and ssh to `raspberrypi.local`

Either way, get your Pi Zero up and running and you are logged in. **Expand Filesystem** from within `sudo raspi-config`. Reboot with the WiFi adapter connected to the USB OTG port

[Then set up the WiFi adapter, we prefer to do it this way](../../../../adafruits-raspberry-pi-lesson-3-network-setup) but there's other techniques, just do whatever you like to get the Pi Zero on the network.

Reboot and make sure you can `ping raspberrypi.org` successfully

# Install packages

Once networking is working, run the following at the shell to install pkgs:

- `sudo apt-get update`
- `sudo apt-get install git python python-pip python-dev`
- `sudo pip install --upgrade pip`

# Install Pokemon Go API

From the shell, get the latest PGoAPI with `git clone https://github.com/keyphact/pgoapi`

![](https://cdn-learn.adafruit.com/assets/assets/000/034/669/medium800/raspberry_pi_gitclone.png?1470964224)

cd in the new directory (`cd pgoapi`) and then find and download the latest encryption file. As of this writing it was available at http://pastebin.com/raw/fCSw0Fz4

Run `wget http://encryptionfilelocationhere -O encrypt.c` to save it as encrypt.c

![](https://cdn-learn.adafruit.com/assets/assets/000/034/670/medium800/raspberry_pi_wgetenc.png?1470964471)

Compile it into a linked library (libencrypt.so) with `gcc -std=c99 -shared -o libencrypt.so -fPIC encrypt.c`

![](https://cdn-learn.adafruit.com/assets/assets/000/034/671/medium800/raspberry_pi_compileenc.png?1470964544)

You'll need to install a bunch of software, luckily it's in a file so you can just run

`sudo pip install -r requirements.txt`

To do them all

![](https://cdn-learn.adafruit.com/assets/assets/000/034/672/medium800/raspberry_pi_piping.png?1470965146)

Grab the **adapokefinder.py** file with **&nbsp;** `wget https://raw.githubusercontent.com/adafruit/Raspberry-Pi-Pokemon-Detector/master/adapokefinder.py -O adapokefinder.py`

# Time to configure!

Create your config with `mv config.json.example config.json` and then edit it with `nano config.json` - put in your account and the location you want to monitor

**Remember, do not use your main account!**

![](https://cdn-learn.adafruit.com/assets/assets/000/034/673/medium800/raspberry_pi_config.png?1470965914)

# Test it out

That's it! time to test. Run **python adapokefinder.py** and make sure you authenticate and see pokemon 'appear'

![](https://cdn-learn.adafruit.com/assets/assets/000/034/674/medium800/raspberry_pi_runit.png?1470966351)

# Raspberry Pi Pokemon Finder

## Circuit Diagram

![](https://cdn-learn.adafruit.com/assets/assets/000/034/786/medium800/raspberry_pi_pifinder_bb.png?1471222677)

## Circuit Diagram

Use the circuit diagram to reference for connecting the components together. The diagram does not depict exact wire lengths or size of components.

## Wired&nbsp;Connections

- LED 1 Cathode&nbsp;to Resistor
- LED 2 Cathode to Resistor
- LED 3 Cathode to Resistor
- LED 1 Anode to GPIO 17
- LED 2 Anode to GPIO 22
- LED 3 Anode to GPIO 27

## 5V Power

To power the Raspberry Pi, you'll need a [5V power supply](https://www.adafruit.com/products/1994) / wall adapter. The Pi needs 5V power via a microUSB cable. This project is not meant to be portable.

# Raspberry Pi Pokemon Finder

## 3D Printing

![](https://cdn-learn.adafruit.com/assets/assets/000/034/793/medium800/raspberry_pi_3d-parts.jpg?1471270446)

[Download STLs](http://www.thingiverse.com/thing:1720970)
[Download Source](https://a360.co/44tcQws)
## Slice Settings

Below are some recommended slice settings. We used simplify3D to slice these parts and generate the gcode. These parts were printed on a Sigma BCN3D using a .4mm nozzle and 1.75mm filament.

- .2mm layer height
- 220C extruder / 65c bed
- 20% infill
- 4&nbsp;top/bottom layers
- 2 shells / parameters
- 60mm/s printing speed with 120mm/s travel

## Tolerances

The top&nbsp;cover&nbsp;should have&nbsp;a friction fit to the case, but you might find it&nbsp;difficult to snap together. Tolerances will differ depending on the 3D printer. If you find the pieces are too tight, you may need to use a filing tool on the edges to loosen up the tolerances.

## CNC Milling Acrylic

The lm-cover.stl part&nbsp;was designed to be CNC milled or laser cut. Although it can be 3D printed, the details on the top will not appear because they're produced via CAM tools. The STL and source file is available to download so you can adjust the CAM tools to work with a number of milling machines.&nbsp;

![](https://cdn-learn.adafruit.com/assets/assets/000/034/792/medium800/raspberry_pi_Screen_Shot_2016-08-15_at_10.06.07_AM.png?1471270319)

# Raspberry Pi Pokemon Finder

## Wiring LEDs

## Prepping LEDs

Let's start off by getting our parts together for wiring our LEDs. In this project, I used a piece of flexible PCB, a 220ohm resistor and 3x 3mm LEDs.

![raspberry_pi_leds-flex-1.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/749/medium640/raspberry_pi_leds-flex-1.jpg?1471098218)

![raspberry_pi_leds-flex-2.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/750/medium640/raspberry_pi_leds-flex-2.jpg?1471098237)

## Ground Wires

We'll need some wires to connect our LEDs together. Here, I'm using 30AWG silicone coated stranded wire. I'll started with making four pieces of wire for our ground connections. Three of these pieces are 10cm in length. The four, is shorter and a bit longer than the piece of flex PCB.

![raspberry_pi_led-wires-10cm.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/751/medium640/raspberry_pi_led-wires-10cm.jpg?1471098402)

## Tinning Wires

Next, remove 2-3mm of insulation from the tips of each wire. Then, apply some solder to the tips to tin them. This will prevent the stranded wire from fraying and makes it easier to solder to LEDs and the GPIO.

**Pro Tip: Use a helping third hand to hold multiple wires to tin more than one wire at a time.**

![raspberry_pi_led-wires-tin.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/752/medium640/raspberry_pi_led-wires-tin.jpg?1471098434)

![raspberry_pi_led-wires-tin-multiple.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/753/medium640/raspberry_pi_led-wires-tin-multiple.jpg?1471098453)

## LED Ground Wire

Trim the **short** leg from the LED - This is the ground (cathode). Then, apply some solder to it and connect one of the three long wires by soldering it in place.

![raspberry_pi_led-ground-shorten.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/754/medium640/raspberry_pi_led-ground-shorten.jpg?1471098586)

![raspberry_pi_led-wire-ground.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/755/medium640/raspberry_pi_led-wire-ground.jpg?1471098606)

## Repeat LED Ground Wires

Repeat this process for the other two LEDs.

![raspberry_pi_leds-ground-wired.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/756/medium640/raspberry_pi_leds-ground-wired.jpg?1471098837)

## Prep Signal Wires

Next up, let's prep our wires for the signal connections. You only need 3 wires, this can be different colors to help tell them apart. Same length (10cm) just like the ground wires.

![raspberry_pi_led-signal-wires.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/757/medium640/raspberry_pi_led-signal-wires.jpg?1471098911)

## Wire Signal

Just like we did for the ground (cathode), trim the power (annode) legs from the LED and apply solder to tin. Then, connect one of the singal wires to it.

![raspberry_pi_led-signal-tin.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/758/medium640/raspberry_pi_led-signal-tin.jpg?1471098993)

![raspberry_pi_led-signal-wire.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/759/medium640/raspberry_pi_led-signal-wire.jpg?1471099005)

## Wired LEDs

Now we have our three LEDs wired up.

![raspberry_pi_leds-wired.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/760/medium640/raspberry_pi_leds-wired.jpg?1471099161)

## Installing&nbsp;LEDs

We can now install&nbsp;the LEDs into the 3D printed antenna part. Insert the ground and signal wires from one of the LEDs into one of the holes in the part. Thread it through and pull the wire until the head of LED is touching the atenna part. It should have a snug fit.

![raspberry_pi_led-insert-antenna.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/761/medium640/raspberry_pi_led-insert-antenna.jpg?1471099274)

![raspberry_pi_led-inserted-antenna.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/762/medium640/raspberry_pi_led-inserted-antenna.jpg?1471099385)

## Installed LEDs

Repeat for the other two LEDs.

![raspberry_pi_led-installed-antenna-2.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/763/medium640/raspberry_pi_led-installed-antenna-2.jpg?1471099459)

## Connecting Ground Wires

Now it's time to connect our ground wires together. Start by tinning the holes on the flexible PCB. This will help connect the ground wires to them easier. Then, solder each wire into a pad on the flexible PCB.

![raspberry_pi_flex-tin.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/764/medium640/raspberry_pi_flex-tin.jpg?1471099605)

![raspberry_pi_flex-wires.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/765/medium640/raspberry_pi_flex-wires.jpg?1471099650)

## Wiring&nbsp;Resistor

We'll need to connect a resistor to avoid burning out the LEDs. Cut one of the legs from the resistor short and solder on the short ground wire by tinning.

![raspberry_pi_resist-secure.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/766/medium640/raspberry_pi_resist-secure.jpg?1471099802)

![raspberry_pi_resist-wire.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/767/medium640/raspberry_pi_resist-wire.jpg?1471099858)

## Connecting Resistor

Insert the remaining leg from the resistor into the last hole on the flexible PCB. Then, solder the leg in place. Flip the flexible PCB over and solder the other ground wires to the leg - this will make the flexible PCB strong and less likely to break. After that, you can trim the excess leg from the resistor.

![raspberry_pi_flex-wired-top.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/768/medium640/raspberry_pi_flex-wired-top.jpg?1471100064)

![raspberry_pi_flex-wired-back.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/769/medium640/raspberry_pi_flex-wired-back.jpg?1471100079)

## Heatshrink Connections

We'll need to insulate to exposd resistor and flex PCB so it doesn't short anything out when we install it on the Pi. We can do this by using a piece of heat shrink tubing (or electrical tape).&nbsp;Slip the piece over the short ground wire and heat it up to tighten the tubing.

![raspberry_pi_led-prep-heatshrink.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/770/medium640/raspberry_pi_led-prep-heatshrink.jpg?1471100197)

![raspberry_pi_led-heat-shrunk.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/771/medium640/raspberry_pi_led-heat-shrunk.jpg?1471100212)

## Assembled LEDs

Alright, now we have our LEDs assembled and ready to connecto to the Raspberry Pi!

![raspberry_pi_led-ready.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/772/medium640/raspberry_pi_led-ready.jpg?1471100284)

## Tinning GPIO

Let's add some solder to the GPIO listed here:

- Ground
- GPIO 17
- GPIO 27
- GPIO 22

![raspberry_pi_pi-prep.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/773/medium640/raspberry_pi_pi-prep.jpg?1471100412)

![raspberry_pi_pi-tin-gpio.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/774/medium640/raspberry_pi_pi-tin-gpio.jpg?1471100475)

## Connect LEDs to GPIO

Now it's time to solder the&nbsp;signal wires from the LEDs to the GPIO pins on the Raspberry Pi. You'll want to take note of which wire is connected to which LED on the antenna part. Below, I've listed out the LEDs, wire color, GPIO and pin number.

- Ground - Blue Wire - Pin #9
- Tallest LED - Green Wire - GPIO 22 (Pin #11)
- Middle LED - Red Wire - GPIO 27 (Pin #13)
- Short LED - Yellow Wire - GPIO 17 (Pin #15)

![raspberry_pi_pi-wired-gpio.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/775/medium640/raspberry_pi_pi-wired-gpio.jpg?1471100543)

# Raspberry Pi Pokemon Finder

## Assemble

## Install Antenna into Case

Carefully insert the 3D printed antenna piece into the large cutout on the case. Press&nbsp;the part all the through until it snaps into place - it should have a snug fit and stay in place.

![raspberry_pi_case-led-hole.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/777/medium640/raspberry_pi_case-led-hole.jpg?1471100786)

![raspberry_pi_case-led-installed.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/778/medium640/raspberry_pi_case-led-installed.jpg?1471100806)

## Install Pi

Orient the Raspberry Pi board so the microSD,&nbsp;USB&nbsp;and HDMI ports are lined up with the cutouts in the case. Then, press the board down until the nubs from the standoffs are inserted into the mounting holes on the Raspberry Pi.

![raspberry_pi_pi-installed-case.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/776/medium640/raspberry_pi_pi-installed-case.jpg?1471100626)

![raspberry_pi_case-pi-ports.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/780/medium640/raspberry_pi_case-pi-ports.jpg?1471101873)

## Installing Cover

The acrylic top&nbsp;can be press fitted into the cutout on the case cover. It'll have a snug fit and hold in place when its press fitted onto the case.

![raspberry_pi_cover-acrylic-1.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/781/medium640/raspberry_pi_cover-acrylic-1.jpg?1471102008)

![raspberry_pi_cover-acryic-2.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/782/medium640/raspberry_pi_cover-acryic-2.jpg?1471102021)

## Installed Cover

The cover has a pretty tight fit. Start by claming it on the corners of the slanded edge and press each corner of the cover into the case. Pro Tip - Use the surface of a table to help while applying force to the two pieces until they snap together.

![raspberry_pi_cover-installed.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/783/medium640/raspberry_pi_cover-installed.jpg?1471102114)

![raspberry_pi_usb-wifi.jpg](https://cdn-learn.adafruit.com/assets/assets/000/034/784/medium640/raspberry_pi_usb-wifi.jpg?1471102167)

## Raspberry Pi Lure Module Case

And that's it! Now you have a pretty sweet looking case for the Raspberry Pi. If Niantic stops the python scripts from ever working again, at least you have a dope looking case! You can also change up the python code to make the LED blink, since they are already connected ;-)


## Featured Products

### Raspberry Pi Zero Starter Pack - Includes Pi Zero v1.3

[Raspberry Pi Zero Starter Pack - Includes Pi Zero v1.3](https://www.adafruit.com/product/2816)
Remember those cereal commercials that would always say,&nbsp;"part of a complete breakfast"? Well the Pi Zero's a lot like that bowl of cereal - while it's great&nbsp;on its own, you&nbsp;need a lot of accessories to make it a complete meal.&nbsp;

The **Pi Zero...**

No Longer Stocked
[Buy Now](https://www.adafruit.com/product/2816)
[Related Guides to the Product](https://learn.adafruit.com/products/2816/guides)
### Raspberry Pi Zero Budget Pack - Includes Pi Zero v1.3

[Raspberry Pi Zero Budget Pack - Includes Pi Zero v1.3](https://www.adafruit.com/product/2817)
Remember those cereal commercials that would always say,&nbsp;"part of a complete breakfast"? Well the Pi Zero's a lot like that bowl of cereal - while it's great&nbsp;on its own, you&nbsp;need a lot of accessories to make it a complete meal.

The **Pi Zero Budget...**

No Longer Stocked
[Buy Now](https://www.adafruit.com/product/2817)
[Related Guides to the Product](https://learn.adafruit.com/products/2817/guides)
### Raspberry Pi Zero

[Raspberry Pi Zero](https://www.adafruit.com/product/2818)
Note: Due to popular demand, there might be some delay in shipping products containing Pi Zero!

At first glance, the Pi Zero isn't much. &nbsp;It just looks like a slimmed down version of the Raspberry Pi we know and love. &nbsp;But when we started to think of the possibilities...

No Longer Stocked
[Buy Now](https://www.adafruit.com/product/2818)
[Related Guides to the Product](https://learn.adafruit.com/products/2818/guides)
### Tiny OTG Adapter - USB Micro to USB

[Tiny OTG Adapter - USB Micro to USB](https://www.adafruit.com/product/2910)
This super slim, super tiny, and super cute Micro-B&nbsp;to USB on-the-go adapter is so slim, tiny, and cute that we'd pinch its cheeks if it was big enough to have cheeks. &nbsp;At just ~15.5mm long, ~11.3mm wide, and ~2mm, this really is the tiniest little adapter we've probably ever...

In Stock
[Buy Now](https://www.adafruit.com/product/2910)
[Related Guides to the Product](https://learn.adafruit.com/products/2910/guides)
### Miniature WiFi (802.11b/g/n) Module: For Raspberry Pi and more

[Miniature WiFi (802.11b/g/n) Module: For Raspberry Pi and more](https://www.adafruit.com/product/814)
Make your Internet of Things device cable-free by adding WiFi. Take advantage of the Raspberry Pi and Beagle Bone's USB port to add a low cost, but high-reliability wireless link. We tried half a dozen modules to find one that works well with the Pi and Bone without the need of recompiling...

No Longer Stocked
[Buy Now](https://www.adafruit.com/product/814)
[Related Guides to the Product](https://learn.adafruit.com/products/814/guides)
### Diffused White 3mm LED (25 pack)

[Diffused White 3mm LED (25 pack)](https://www.adafruit.com/product/778)
Need some indicators? We are big fans of these diffused white LEDs, as featured in the LoL shield. They are really bright so they can be seen in daytime, and from any angle. They go easily into a breadboard and will add that extra zing to your project.

- Pack of 25 diffused white...

In Stock
[Buy Now](https://www.adafruit.com/product/778)
[Related Guides to the Product](https://learn.adafruit.com/products/778/guides)
### Through-Hole Resistors - 100 ohm-100K ohm - 5% 1/4W

[Through-Hole Resistors - 100 ohm-100K ohm - 5% 1/4W](https://www.adafruit.com/product/2892)
ΩMG! You're not going to be able to resist these handy resistor packs!&nbsp;Well, axially, they&nbsp;do all of the resisting for you!

These are&nbsp; **25 Packs of Resistors.** More specifically, they are **carbon film** , through-hole...

Out of Stock
[Buy Now](https://www.adafruit.com/product/2892)
[Related Guides to the Product](https://learn.adafruit.com/products/2892/guides)
### Adafruit Flex Perma-Proto - Half-sized Breadboard Flex-PCB

[Adafruit Flex Perma-Proto - Half-sized Breadboard Flex-PCB](https://www.adafruit.com/product/1518)
Make your next project super-flexy with a prototyping board that can twist and bend. We took our lovely classic perma-proto design and had it made from incredibly thin polyamide film. It's extremely bendable, and you can cut it easily with scissors. It has a bend radius of 1cm or better...

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

## Related Guides

- [Bluetooth LE MIDI Controller](https://learn.adafruit.com/bluetooth-le-midi-controller.md)
- [CircuitPython Media Dial](https://learn.adafruit.com/media-dial.md)
- [Camera LED Ring Light](https://learn.adafruit.com/camera-ring-led-light.md)
- [Mindfulness Clock OF DOOM](https://learn.adafruit.com/mindfulness-clock-of-doom.md)
- [3D Printed Star Trek Communicator](https://learn.adafruit.com/3d-printed-star-trek-communicator.md)
- [Halo Energy Sword by Mattel NeoPixel Upgrade](https://learn.adafruit.com/halo-energy-sword-by-mattel-neopixel-upgrade.md)
- [Breadboards for Beginners](https://learn.adafruit.com/breadboards-for-beginners.md)
- [CircuitPython Rotary Trinkey Brightness Crank](https://learn.adafruit.com/circuitpython-rotary-trinkey-brightness-crank.md)
- [3D Printed Camera Tripod Adapter for Telescope](https://learn.adafruit.com/3d-printed-camera-tripod-adapter-for-telescope.md)
- [3D Printed Battery Adapter for Camera-Mount LED Panel](https://learn.adafruit.com/3d-printed-battery-adapter-for-camera-mount-led-panel.md)
- [LED Neon Signs with NeoPixels](https://learn.adafruit.com/led-neon-signs-with-neopixels.md)
- [LEGO-Compatible Servo Mounts](https://learn.adafruit.com/lego-servo-mounts.md)
- [Sketch Drawing Toy with CircuitPython](https://learn.adafruit.com/sketch-drawing-toy.md)
- [reef-pi Guide 6: pH Monitoring](https://learn.adafruit.com/reef-pi-guide-7-ph-monitoring.md)
- [NeoPixel Bike Light](https://learn.adafruit.com/neopixel-headlight.md)
