# Adafruit LSM6DS3TR-C 6-DoF Accel + Gyro IMU

## Overview

![](https://cdn-learn.adafruit.com/assets/assets/000/112/973/medium800thumb/adafruit_products_4503-05.jpg?1657300677)

Add motion and orientation sensing to your project with this affordable 6 Degree of Freedom (6-DoF) sensor with sensors from ST. The board includes an&nbsp; **ST&nbsp;LSM6DS3TR-C** , a great entry-level 6-DoF IMU accelerometer + gyro. The 3-axis accelerometer&nbsp;can tell you which direction is down towards the Earth (by measuring gravity) or how fast the board is accelerating in 3D space. The 3-axis gyroscope can measure spin and twist.

![](https://cdn-learn.adafruit.com/assets/assets/000/123/017/medium800/adafruit_products_4503-16.jpg?1690380740)

This chip is very similar to the now-discontinued&nbsp; **LSM6DS33** , a great entry-level IMU. As part of the illustrious LSM6DS family, it's well-established, well-supported and this chip even has better performance! Note it is not firmware-compatible with the 'DS33, so you will need to recompile code (e.g. our Arduino and Python libraries support the whole family but you _do_ have to indicate which exact chip you're using).

![](https://cdn-learn.adafruit.com/assets/assets/000/112/974/medium800thumb/adafruit_products_4503-06.jpg?1657300874)

To make getting started fast and easy, we placed the sensors on a compact breakout board with voltage regulation and level-shifted inputs. That way you can use them with 3V or 5V power/logic devices without worry. Both I2C and SPI interfaces are available, so you'll be able to use them&nbsp;with any hardware setup. The breakout comes fully assembled and tested, with some extra header so you can use it on a breadboard. Four mounting holes make for a secure connection.

![](https://cdn-learn.adafruit.com/assets/assets/000/123/018/medium800/adafruit_products_4503-15.jpg?1690380754)

Additionally, since it speaks I2C, you can easily connect it up with two wires (plus power and ground!).&nbsp; We've even included [SparkFun qwiic](https://www.sparkfun.com/qwiic)&nbsp;compatible**&nbsp;[STEMMA QT](https://learn.adafruit.com/introducing-adafruit-stemma-qt)**&nbsp;connectors for the I2C bus so&nbsp; **you don't even need to solder!** &nbsp;[Just wire up to your favorite micro like the STM32F405 Feather](https://www.adafruit.com/product/4382) with a plug-and-play cable to get 6 DoF data ASAP. You can change the I2C address on the back using the solder jumper to have two of these sensor boards on one bus.

![](https://cdn-learn.adafruit.com/assets/assets/000/123/019/medium800/adafruit_products_4503-14.jpg?1690380949)

We also wrote libraries to help you get these sensors integrated with your Arduino/C++.&nbsp;[This library contains an Arduino driver for the accel/gyro](https://github.com/adafruit/Adafruit_LSM6DS). For advanced Arduino usage,&nbsp;[ST has their own fully-featured library that includes extras such as FIFO management and tap detection](https://github.com/stm32duino/LSM6DS3)&nbsp;for the LSM6DS3TR-C.&nbsp;[We also have a Python/CircuitPython library that will work on microcontroller or single board Linux computers](https://github.com/adafruit/Adafruit_CircuitPython_LSM6DS).

# Adafruit LSM6DS3TR-C 6-DoF Accel + Gyro IMU

## Pinouts

![](https://cdn-learn.adafruit.com/assets/assets/000/112/975/medium800/adafruit_products_front_Back.png?1657301285)

The default I2C address is **0x6A**.

## Power Pins

- **VIN** &nbsp;- this is the power pin. Since the sensor chip uses 3 VDC, we have included a voltage regulator on board that will take 3-5VDC and safely convert it down. To power the board, give it the same power as the logic level of your microcontroller - e.g. for a 5V microcontroller like Arduino, use 5V
- **3Vo** &nbsp;- this is the 3.3V output from the voltage regulator, you can grab up to 100mA from this if you like
- **GND** &nbsp;- common ground for power and logic

## I2C Logic Pins

- **SCL&nbsp;** - I2C clock pin, connect to your microcontroller I2C clock line. This pin is level shifted so you can use 3-5V logic, and there's a&nbsp; **10K pullup** &nbsp;on this pin.
- **SDA&nbsp;** -I2C data pin, connect to your microcontroller I2C data line. This pin is level shifted so you can use 3-5V logic, and there's a **10K pullup** &nbsp;on this pin.
- **[STEMMA QT](https://learn.adafruit.com/introducing-adafruit-stemma-qt)&nbsp;-&nbsp;**These connectors allow you to connectors to dev boards with&nbsp; **STEMMA QT** &nbsp;connectors or to other things with&nbsp;[various associated accessories](https://www.adafruit.com/?q=JST%20SH%204).

## Address Jumper

On the back of the board is **one address jumper** , labeled **AD0**** , **to the right of the** I2C Addr**&nbsp;label on the board silk. This jumper allows you to chain up to 2 of these boards on the same pair of I2C clock and data pins. To do so, you solder the jumper "closed" by connecting the two pads.

The default I2C address is&nbsp; **0x6A**. The other address options can be calculated by “adding” the&nbsp; **AD0** to the base of&nbsp; **0x6A**.

**AD0** &nbsp;sets the lowest bit with a value of&nbsp; **1**. **&nbsp;** The final address is&nbsp; **0x6A + AD0** &nbsp;which would be&nbsp; **0x6B**.

 If&nbsp; **AD**** 0 **&nbsp;is soldered closed, the address is&nbsp;** 0x6A + 1 = 0x6B**

The table below shows all possible addresses, and whether the pin(s) should be high (closed) or low (open).

![](https://cdn-learn.adafruit.com/assets/assets/000/112/978/medium800/adafruit_products_i2cAddr.png?1657302055)

## SPI Logic Pins

All pins going into the breakout have level shifting circuitry to make them 3-5V logic level safe. Use whatever logic level is on&nbsp; **VIN!**

- **SCL** &nbsp;- This is&nbsp;_also_&nbsp;the&nbsp; **S** PI&nbsp; **C** loc **k** pin, it's an input to the chip
- **DO** &nbsp;- this is the serial&nbsp; **D** ata&nbsp; **O** ut /&nbsp; **M** icrocontroller&nbsp; **I** n&nbsp; **S** ensor&nbsp; **O** ut pin, for data sent from the LSM6DS3TR-C to your processor.&nbsp;
- **SDA** &nbsp;- this is&nbsp;_also&nbsp;_the Serial Data In /&nbsp; **M** icrocontroller&nbsp; **O** ut&nbsp; **S** ensor&nbsp; **I** n pin, for data sent from your processor to the LSM6DS3TR-C
- **CS** &nbsp;- this is the&nbsp; **C** hip&nbsp; **S** elect pin, drop it low to start an SPI transaction. It's an input to the chip

If you want to connect multiple LSM6DS3TR-C to one microcontroller, have them share the&nbsp; **SDI** ,&nbsp; **DO** &nbsp;and&nbsp; **SCK** &nbsp;pins. Then assign each one a unique&nbsp; **CS** &nbsp;pin.

## Other Pins

- **INT1&nbsp;** -This is the primary interrupt pin. You can setup the LSM6DS3TR-C to pull this low when certain conditions are met such as new measurement data being available. Consult the&nbsp;[datasheet](https://cdn-shop.adafruit.com/product-files/4503/4503_LSM6DS3TR-C_datasheet.pdf)&nbsp;for usage.
- **INT2&nbsp;** -This is the primary interrupt pin. You can setup the LSM6DS3TR-C to pull this low when certain conditions are met such as new measurement data being available. Consult the&nbsp;[datasheet](https://cdn-shop.adafruit.com/product-files/4503/4503_LSM6DS3TR-C_datasheet.pdf)&nbsp;for usage.
- **D0** &nbsp;- I2C Address pin. Pulling this pin high or bridging the solder jumper on the back will change the I2C address from&nbsp; **0x6A** &nbsp;to&nbsp; **0x6B.**
- **SCX, SDX, Aux. I2C** &nbsp;- Pins for advanced users to connect the LSM6DS3TR-C to another sensor. Consult the&nbsp;[datasheet](https://cdn-shop.adafruit.com/product-files/4503/4503_LSM6DS3TR-C_datasheet.pdf)&nbsp;for usage.

## Power LED

- **Power LED -&nbsp;** In the upper left corner, above the STEMMA connector, on the front of the board, is the power LED, labeled **&nbsp;on**. It is the green LED.

# Adafruit LSM6DS3TR-C 6-DoF Accel + Gyro IMU

## Python & CircuitPython

It's easy to use the&nbsp; **LSM6DS3TR-C** &nbsp;with Python or CircuitPython, and the&nbsp;[Adafruit\_CircuitPython\_LSM6DS](https://github.com/adafruit/Adafruit_CircuitPython_LSM6DS) module. This module allows you to easily write Python code that reads the values from the **LSM6DS3TR-C**'s accelerometer and gyroscope.

You can use this sensor with any CircuitPython microcontroller board or with a computer that has GPIO and Python&nbsp;[thanks to Adafruit\_Blinka, our CircuitPython-for-Python compatibility library](https://learn.adafruit.com/circuitpython-on-raspberrypi-linux).

## CircuitPython Microcontroller Wiring

First, wire up a LSM6DS3TR-C to your board exactly as shown below. Here's an example of wiring a Feather M4 to the sensor with I2C using one of the handy&nbsp;[**STEMMA QT**](https://learn.adafruit.com/introducing-adafruit-stemma-qt)&nbsp;connectors:

- **Board 3V** &nbsp;to&nbsp;**sensor VIN (red wire)**
- **Board GND** to **sensor**** &nbsp;GND (black wire)**
- **Board SCL** to **sensor**** &nbsp;SCL (yellow wire)**
- **Board SDA** to **sensor**** &nbsp;SDA (blue wire)**

![adafruit_products_featherStemma_bb.png](https://cdn-learn.adafruit.com/assets/assets/000/113/071/medium640/adafruit_products_featherStemma_bb.png?1657550496)

You can also use standard **0.100" pitch** &nbsp;headers to wire it up on a breadboard:

- **Board 3V** to **sensor**** &nbsp;VIN (red wire)**
- **Board GND** to **sensor**** &nbsp;GND (black wire)**
- **Board SCL** to **sensor**** &nbsp;SCL (yellow wire)**
- **Board SDA** to **sensor**** &nbsp;SDA (blue wire)**

![adafruit_products_featherBB_bb.png](https://cdn-learn.adafruit.com/assets/assets/000/113/070/medium640/adafruit_products_featherBB_bb.png?1657550436)

## Python Computer Wiring

Since there's&nbsp;_dozens_&nbsp;of Linux computers/boards you can use, below shows wiring for Raspberry Pi. For other platforms,&nbsp;[please visit the guide for CircuitPython on Linux to see whether your platform is supported](https://learn.adafruit.com/circuitpython-on-raspberrypi-linux).&nbsp;

Here's the Raspberry Pi wired to the sensor using I2C and a&nbsp;[**STEMMA QT**](https://learn.adafruit.com/introducing-adafruit-stemma-qt)&nbsp;connector:

- **Pi 3V** to **sensor**** &nbsp;VIN (red wire)**
- **Pi GND** to **sensor**** &nbsp;GND (black wire)**
- **Pi SCL** to **sensor**** &nbsp;SCL (yellow wire)**
- **Pi SDA** to **sensor**** &nbsp;SDA (blue wire)**

![adafruit_products_piStemma_bb.png](https://cdn-learn.adafruit.com/assets/assets/000/113/072/medium640/adafruit_products_piStemma_bb.png?1657550518)

Finally here is an example of how to wire up a Raspberry Pi to the sensor using a solderless breadboard:

- **Pi 3V** to **sensor**** &nbsp;VIN (red wire)**
- **Pi GND** to **sensor**** &nbsp;GND (black wire)**
- **Pi SCL** to **sensor**** &nbsp;SCL (yellow wire)**
- **Pi SDA** to **sensor**** &nbsp;SDA (blue wire)**

![adafruit_products_piBreadboard_bb.png](https://cdn-learn.adafruit.com/assets/assets/000/113/073/medium640/adafruit_products_piBreadboard_bb.png?1657550537)

## Python Installation of LSM6DS Library

You'll need to install the&nbsp; **Adafruit\_Blinka** &nbsp;library that provides the CircuitPython support in Python. This may also require enabling I2C on your platform and verifying you are running Python 3.&nbsp;[Since each platform is a little different, and Linux changes often, please visit the CircuitPython on Linux guide to get your computer ready](https://learn.adafruit.com/circuitpython-on-raspberrypi-linux)!

Once that's done, from your command line run the following command:

- `pip3 install adafruit-circuitpython-lsm6ds`

If your default Python is version 3, you may need to run&nbsp;`pip`&nbsp;instead. Make sure you aren't trying to use CircuitPython on Python 2.x, it isn't supported!

## CircuitPython Usage

To use with CircuitPython, you need to first install the LSM6DS library, and its dependencies, into the&nbsp; **lib** &nbsp;folder on your&nbsp; **CIRCUITPY** &nbsp;drive. Then you need to update&nbsp; **code.py** &nbsp;with the example script.

Thankfully, we can do this in one go. In the example below, click the&nbsp; **Download Project Bundle** &nbsp;button below to download the necessary libraries and the&nbsp; **code.py** &nbsp;file in a zip file. Extract the contents of the zip file, and copy the&nbsp; **entire&nbsp;**** lib **&nbsp;** folder **&nbsp;and the&nbsp;** code.py **&nbsp;file to your&nbsp;** CIRCUITPY**&nbsp;drive.

Your&nbsp; **CIRCUITPY/lib** &nbsp;folder should contain the following folders:

- **adafruit\_bus\_device/**
- **adafruit\_lsm6ds/**
- **adafruit\_register/**

![CIRCUITPY](https://adafruit.github.io/Adafruit_CircuitPython_Bundle/lsm6ds_lsm6ds_lsm6ds3trc_simpletest.py.png )

## Python Usage

Once you have the library&nbsp;`pip3`&nbsp;installed on your computer, copy or download the following example to your computer, and run the following, replacing&nbsp; **code.py** &nbsp;with whatever you named the file:

`python3 code.py`

## Example Code
https://github.com/adafruit/Adafruit_CircuitPython_LSM6DS/blob/main/examples/lsm6ds_lsm6ds3trc_simpletest.py

 **If running CircuitPython:** &nbsp;Once everything is saved to the&nbsp; **CIRCUITPY** &nbsp;drive,&nbsp;[connect to the serial console](https://learn.adafruit.com/welcome-to-circuitpython/kattni-connecting-to-the-serial-console)&nbsp;to see the data printed out!

**If running Python:&nbsp;** The console output will appear wherever you are running Python.

![](https://cdn-learn.adafruit.com/assets/assets/000/113/083/medium800/adafruit_products_cp_repl.png?1657551030)

Twist and turn your LSM6DS3TR-C and see the values from the accelerometer and gyroscope print out to the REPL!

First you import the necessary modules and libraries. Then you instantiate the sensor on I2C.

Then you're ready to read data from the sensor's accelerometer and gyroscope.

Finally, inside the loop, you see the x, y and z values from the accelerometer and gyroscope.

The accelerometer measures the x, y and z movement values and the gyroscope measures the x, y and z values **in radians**.

That's all there is to using the LSM6DS3TR-C with CircuitPython!

# Adafruit LSM6DS3TR-C 6-DoF Accel + Gyro IMU

## Python Docs

# Adafruit LSM6DS3TR-C 6-DoF Accel + Gyro IMU

## Arduino

Using the LSM6DS3TR-C&nbsp;with Arduino involves wiring up the sensor to your Arduino-compatible microcontroller, installing the&nbsp;[Adafruit\_LSM6DS](https://github.com/adafruit/Adafruit_LSM6DS)&nbsp;library and running the provided example code.

## Wiring

Wire as shown for a&nbsp; **5V** &nbsp;board like an Uno. If you are using a **&nbsp;3V** &nbsp;board, like an Adafruit Feather, wire the board's 3V pin to the LSM6DS3TR-C VIN.

Here is an Adafruit Metro wired up to the LSM6DS3TR-C using the STEMMA QT connector:

- **Board 5V** &nbsp;to&nbsp; **sensor&nbsp;**** VIN (red wire)**  
- **Board GND** &nbsp;to **sensor** &nbsp;**GND (black wire)**  
- **Board SCL** &nbsp;to **sensor** &nbsp;**SCL (yellow wire)**  
- **Board SDA** &nbsp;to **sensor** &nbsp;**SDA (blue wire)**

![adafruit_products_metroStemma_bb.png](https://cdn-learn.adafruit.com/assets/assets/000/113/074/medium640/adafruit_products_metroStemma_bb.png?1657550559)

Here is an Adafruit Metro wired up using a solderless breadboard:

- **Board 5V** &nbsp;to **sensor**** &nbsp;****VIN (red wire)**  
- **Board GND** &nbsp;to **sensor** &nbsp;**GND (black wire)**  
- **Board SCL** &nbsp;to **sensor** &nbsp;**SCL (yellow wire)**  
- **Board SDA** &nbsp;to **sensor** &nbsp;**SDA (blue wire)**

![adafruit_products_metroBB_bb.png](https://cdn-learn.adafruit.com/assets/assets/000/113/075/medium640/adafruit_products_metroBB_bb.png?1657550584)

## Library Installation

You can install the&nbsp; **LSM6DS** &nbsp;library for Arduino using the Library Manager in the Arduino IDE.

![](https://cdn-learn.adafruit.com/assets/assets/000/113/043/medium800/adafruit_products_Arduino_Open_Library_Manager.png?1657547176)

Click the&nbsp; **Manage Libraries ...** &nbsp;menu item, search for&nbsp; **LSM6DS** ,&nbsp;and select the&nbsp; **Adafruit LSM6DS** &nbsp;library:

![](https://cdn-learn.adafruit.com/assets/assets/000/113/084/medium800/adafruit_products_arduino_Lib.png?1657551325)

If asked about dependencies, click "Install all".

![](https://cdn-learn.adafruit.com/assets/assets/000/113/085/medium800/adafruit_products_dependencies.png?1657551345)

If the "Dependencies" window does not come up, then you already have the dependencies installed.&nbsp;

Warning: 

## Load Example

Open up&nbsp; **File** &nbsp; **-\> Examples -\> Adafruit LSM6DS -\>**  **adafruit\_lsm6ds3trc\_test** and upload to your Arduino wired to the sensor.

https://github.com/adafruit/Adafruit_LSM6DS/blob/master/examples/adafruit_lsm6ds3trc_test/adafruit_lsm6ds3trc_test.ino

![](https://cdn-learn.adafruit.com/assets/assets/000/113/086/medium800/adafruit_products_arduinoSerial.png?1657551653)

Upload the sketch to your board and open up the Serial Monitor ( **Tools -\> Serial Monitor** ) at 115200 baud. You should see the values from the embedded temperature sensor, accelerometer and gyroscope being printed out. You'll see the values change depending on the movement of the sensor.

# Adafruit LSM6DS3TR-C 6-DoF Accel + Gyro IMU

## Arduino Docs

# Adafruit LSM6DS3TR-C 6-DoF Accel + Gyro IMU

## Downloads

## Files

- [LSM6DS3TR-C Datasheet](https://cdn-shop.adafruit.com/product-files/4503/4503_LSM6DS3TR-C_datasheet.pdf)
- [EagleCAD PCB files on GitHub](https://github.com/adafruit/Adafruit-LSM6DS3TR-C-PCB)
- [Fritzing object in the Adafruit Fritzing Library](https://github.com/adafruit/Fritzing-Library/blob/master/parts/Adafruit%20LSM6DS3TR-C.fzpz)

## Schematic and Fab Print
![](https://cdn-learn.adafruit.com/assets/assets/000/113/060/medium800/adafruit_products_schem.png?1657549240)

![](https://cdn-learn.adafruit.com/assets/assets/000/113/061/medium800/adafruit_products_fab.png?1657549252)


## Primary Products

### Adafruit LSM6DS3TR-C 6-DoF Accel + Gyro IMU

[Adafruit LSM6DS3TR-C 6-DoF Accel + Gyro IMU](https://www.adafruit.com/product/4503)
Add motion and orientation&nbsp;sensing to your Arduino project with this affordable 6 Degree of Freedom (6-DoF) sensor with sensors from ST. The board includes an **ST&nbsp;LSM6DS3TR-C** , a great entry-level 6-DoF IMU accelerometer + gyro. The 3-axis accelerometer&nbsp;can tell...

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

## Featured Products

### STEMMA QT / Qwiic JST SH 4-Pin Cable - 50mm Long

[STEMMA QT / Qwiic JST SH 4-Pin Cable - 50mm Long](https://www.adafruit.com/product/4399)
This 4-wire cable is&nbsp;50mm / 1.9" long and fitted with JST SH female 4-pin connectors on both ends. Compared with the chunkier JST PH these are 1mm pitch instead of 2mm, but still have a nice latching feel, while being easy to insert and remove.

<a...></a...>

Out of Stock
[Buy Now](https://www.adafruit.com/product/4399)
[Related Guides to the Product](https://learn.adafruit.com/products/4399/guides)
### JST SH 4-pin Cable with Alligator Clips - STEMMA QT / Qwiic

[JST SH 4-pin Cable with Alligator Clips - STEMMA QT / Qwiic](https://www.adafruit.com/product/4398)
This cable will make it super easy to use our plug-and-play STEMMA QT boards with boards like Circuit Playground. On one end you get a Qwiic / STEMMA QT connector (technically known as a JST SH 4-pin plug)&nbsp; into 4 individual wires with grippy alligator clips. We're carrying these to...

Out of Stock
[Buy Now](https://www.adafruit.com/product/4398)
[Related Guides to the Product](https://learn.adafruit.com/products/4398/guides)
### STEMMA QT / Qwiic JST SH 4-Pin Cable - 200mm Long

[STEMMA QT / Qwiic JST SH 4-Pin Cable - 200mm Long](https://www.adafruit.com/product/4401)
This 4-wire cable is a little over 200mm / 7.8" long and fitted with JST-SH female 4-pin connectors on both ends. Compared with the chunkier JST-PH these are 1mm pitch instead of 2mm, but still have a nice latching feel, while being easy to insert and remove.

<a...></a...>

Out of Stock
[Buy Now](https://www.adafruit.com/product/4401)
[Related Guides to the Product](https://learn.adafruit.com/products/4401/guides)
### STEMMA QT / Qwiic JST SH 4-pin to Premium Male Headers Cable

[STEMMA QT / Qwiic JST SH 4-pin to Premium Male Headers Cable](https://www.adafruit.com/product/4209)
This 4-wire cable is a little over 150mm / 6" long and fitted with JST-SH female 4-pin connectors on one end and premium Dupont male headers on the other. Compared with the chunkier JST-PH these are 1mm pitch instead of 2mm, but still have a nice latching feel, while being easy to insert...

Out of Stock
[Buy Now](https://www.adafruit.com/product/4209)
[Related Guides to the Product](https://learn.adafruit.com/products/4209/guides)
### STEMMA QT / Qwiic JST SH 4-pin Cable - 100mm Long

[STEMMA QT / Qwiic JST SH 4-pin Cable - 100mm Long](https://www.adafruit.com/product/4210)
This 4-wire cable is a little over 100mm / 4" long and fitted with JST-SH female 4-pin connectors on both ends. Compared with the chunkier JST-PH these are 1mm pitch instead of 2mm, but still have a nice latching feel, while being easy to insert and remove.

<a...></a...>

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

## Related Guides

- [Adafruit QT Py CH32V203](https://learn.adafruit.com/adafruit-qt-py-ch32v203.md)
- [LSM6DSOX, ISM330DHC, & LSM6DSO32 6 DoF IMUs](https://learn.adafruit.com/lsm6dsox-and-ism330dhc-6-dof-imu.md)
- [Adafruit SGP41 Multi-Pixel Gas Sensor Breakout](https://learn.adafruit.com/adafruit-sgp41-multi-pixel-gas-sensor-breakout.md)
- [Adafruit ENS161 MOX Gas Sensor](https://learn.adafruit.com/adafruit-ens161-mox-gas-sensor.md)
- [Grand Central Soundboard in Ten Minutes](https://learn.adafruit.com/grand-central-soundboard-in-ten-minutes.md)
- [Adafruit INA3221 Breakout](https://learn.adafruit.com/adafruit-ina3221-breakout.md)
- [Adafruit AS7341 10-Channel Light / Color Sensor Breakout](https://learn.adafruit.com/adafruit-as7341-10-channel-light-color-sensor-breakout.md)
- [PyGamer NeoPixel Controller](https://learn.adafruit.com/pygamer-neopixel-controller.md)
- [Adafruit NeoKey 5x6 Ortho Snap-Apart](https://learn.adafruit.com/adafruit-neokey-5x6-ortho-snap-apart.md)
- [DIY Turbo Button Controller - HID Remapper](https://learn.adafruit.com/diy-turbo-button-controller-hid-remapper.md)
- [Neo Trinkey CircuitPython Rubber Ducky](https://learn.adafruit.com/neo-trinkey-circuitpython-rubber-ducky.md)
- [CircuitPython Animated Sprite Pendants](https://learn.adafruit.com/circuitpython-sprite-animation-pendant-mario-clouds-flying-toasters.md)
- [PyPortal 2FA TOTP Authentication Friend](https://learn.adafruit.com/pyportal-2fa-totp-authentication-friend.md)
- [Language Flashcards on the MagTag](https://learn.adafruit.com/magtag-flashcards.md)
- [Creating Custom Symbol Fonts for Adafruit GFX Library](https://learn.adafruit.com/creating-custom-symbol-font-for-adafruit-gfx-library.md)
