# LIS3MDL Triple-axis Magnetometer

## Overview

![](https://cdn-learn.adafruit.com/assets/assets/000/086/989/medium800/sensors_ISO_crop.jpg?1579214297)

Sense the magnetic fields that surround us with this handy triple-axis magnetometer (compass) module. Magnetometers can sense where the strongest magnetic force is coming from, generally used to detect magnetic north, but can also be used for measuring magnetic fields. This sensor tends to be paired with a 6-DoF (degree of freedom) accelerometer/gyroscope to create a 9-DoF inertial measurement unit that can detect its orientation in real-space thanks to Earth's stable magnetic field. It's a great match for any of our 6-DoF IMU sensors such as the[&nbsp;LSM6DSOX](https://www.adafruit.com/product/4438) or [LSM6DS33](https://www.adafruit.com/product/4480).

![](https://cdn-learn.adafruit.com/assets/assets/000/086/991/medium800/sensors_back.jpg?1579214365)

We based this breakout on ST's LIS3MDL, a great general purpose magnetometer. This compact sensor uses I2C to communicate and its very easy to use. Simply download our library and connect the SCL pin to your I2C clock pin, and SDA pin to your I2C data pin and upload our test program to read out magnetic field data. If you'd like, you can also use SPI to receive data (we just happen to prefer I2C here)

This sensor can sense ranges from +-4 gauss (+- 400 uTesla) up to +-16 gauss (+- 16uTesla). For ultra high precision, 155 Hz update rate is recommended - but if you don't mind a little loss of precision, the sensor can output at 1000 Hz.

![](https://cdn-learn.adafruit.com/assets/assets/000/086/990/medium800/sensors_stemma.jpg?1579214315)

To make life easier so you can focus on your important work, we've taken the LIS3MDL and put it onto a breakout PCB along with support circuitry to let you use this little wonder with 3.3V (Feather/Raspberry Pi) or 5V (Arduino/ Metro328) logic levels.

Additionally since it speaks I2C you can easily connect it up with two wires (plus power and ground!).&nbsp; We've even included&nbsp;[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 and&nbsp;[you can use our CircuitPython/Python](https://github.com/adafruit/Adafruit_CircuitPython_LIS3MDL)&nbsp;or&nbsp;[Arduino drivers to easily interface with the LIS3MDL](https://github.com/adafruit/Adafruit_LIS3MDL)&nbsp;and get magnetic measurements ASAP.

# LIS3MDL Triple-axis Magnetometer

## Pinouts

![](https://cdn-learn.adafruit.com/assets/assets/000/086/994/medium800/sensors_top_crop.jpg?1579214666)

![](https://cdn-learn.adafruit.com/assets/assets/000/087/010/medium800/sensors_back_crop.jpg?1579222933)

## Power Pins

- **Vin** - 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** - this is the 3.3V output from the voltage regulator, you can grab up to 100mA from this if you like
- **GND** - common ground for power and logic

## I2C Logic Pins

- **SCL** - I2C clock pin, connect to your microcontroller's I2C clock line. This pin is level shifted so you can use 3-5V logic, and there's a **10K pullup** on this pin.
- **SDA** - I2C data pin, connect to your microcontroller's I2C data line. This pin is level shifted so you can use 3-5V logic, and there's a 1 **0K pullup** on this pin.
- **[STEMMA QT](https://learn.adafruit.com/introducing-adafruit-stemma-qt)&nbsp;-** These connectors allow you to make I2C connections to dev boards with **STEMMA QT** connectors or to other things with&nbsp;[various associated accessories](https://www.adafruit.com/?q=JST%20SH%204)
- **DO/AD1 Jumper** &nbsp;- **I2C Address pin**. Pulling this pin high or bridging the solder jumper on the back will change the I2C address from&nbsp; **0x1C** to&nbsp; **0x1E**. [See this guide for how to check and verify the set address](https://learn.adafruit.com/scanning-i2c-addresses/overview).  

Warning: 

## 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 **Vin!**

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

If you want to connect multiple LIS3MDL's to one microcontroller, have them share the **SDA** , **SDO** and **SCL** &nbsp;pins. Then assign each one a unique **CS** pin.

## Other Pins

- **INT&nbsp;** -This is the interrupt pin. You can setup the LIS3MDL to pull this low when certain conditions are met such as a value exceeding a threshold. Consult the [datasheet](https://www.st.com/resource/en/datasheet/lis3mdl.pdf) for usage
- **DRDY -** The data ready pin. When measurement data is available the sensor will pull this pin low

# LIS3MDL Triple-axis Magnetometer

## Arduino

# I2C Wiring

Use this wiring if you want to connect via I2C interface.

By default, the i2c address is **0x1C**. &nbsp;If you short the **AD1** solder jumper on the back of the board or add a jumper from **DO** to **3.3V** the address will change to **0x1E**.

The board shown below is an [Adafruit Metro 328](https://www.adafruit.com/product/2488).

- &nbsp;Connect&nbsp;**board VIN (red wire)** to&nbsp; **Arduino**  **5V** &nbsp;if you are running a **5V** board Arduino (Uno, etc.).&nbsp;If your board is **3V,** connect to that instead.
- Connect **board** **GND (black wire)&nbsp;**to&nbsp; **Arduino**  **GND**
- Connect **board** **SCL (yellow wire)&nbsp;**to&nbsp; **Arduino**  **SCL**
- Connect **board** **SDA (blue wire)&nbsp;**to&nbsp; **Arduino**  **SDA**

![sensors_arduino_wiring_stemma.png](https://cdn-learn.adafruit.com/assets/assets/000/087/015/medium640/sensors_arduino_wiring_stemma.png?1579226244)

![sensors_arduino_wiring_breadboard.png](https://cdn-learn.adafruit.com/assets/assets/000/087/016/medium640/sensors_arduino_wiring_breadboard.png?1579226273)

# SPI Wiring

Since this is a SPI-capable sensor, we can use hardware or 'software' SPI. To make wiring identical on all microcontrollers, we'll begin with 'software' SPI. The following pins should be used:

- Connect **Vin** to the power supply, 3V or 5V is fine. Use the same voltage that the microcontroller logic is based off of
- Connect **GND** to common power/data ground
- Connect the **SCK** pin to **Digital #13** but any pin can be used later
- Connect the **DO** pin to **Digital #12** but any pin can be used later
- Connect the **SDA** &nbsp;pin to **Digital #11** but any pin can be used later
- Connect the **CS** pin **Digital #10** but any pin can be used later

![sensors_arduino_wiring_breadboard_spi.png](https://cdn-learn.adafruit.com/assets/assets/000/087/017/medium640/sensors_arduino_wiring_breadboard_spi.png?1579226894)

Later on, once we get it working, we can adjust the library to use hardware SPI if you desire, or change the pins to others.

# Library Installation

You can install the **Adafruit LIS3MDL Library** for Arduino using the Library Manager in the Arduino IDE.

![](https://cdn-learn.adafruit.com/assets/assets/000/087/018/medium800/sensors_library_manager_menu.png?1579227056)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/087/021/medium800/sensors_arduino_lis3mdl_libmgr.png?1579230182)

Then follow the same process for the&nbsp; **Adafruit BusIO** &nbsp;library.

![](https://cdn-learn.adafruit.com/assets/assets/000/087/019/medium800/sensors_BusIO_Lib_Manager.png?1579227165)

Finally follow the same process for the&nbsp; **Adafruit Unified Sensor** library:

![](https://cdn-learn.adafruit.com/assets/assets/000/087/020/medium800/sensors_Unified_Sensor_LibMGR.png?1579227185)

# Load Example

Open up&nbsp; **File -\> Examples -\> Adafruit LIS3MDL**  **-\> lis3mdl\_demo&nbsp;** and upload to your Arduino wired up to the sensor.

Depending on whether you are using I2C or SPI, change the pin names and comment or uncomment the following lines.

```cpp
if (! lis3mdl.begin_I2C()) {        
  //if (! lis3mdl.begin_SPI(LIS3MDL_CS)) {  // hardware SPI mode
  //if (! lis3mdl.begin_SPI(LIS3MDL_CS, LIS3MDL_CLK, LIS3MDL_MISO, LIS3MDL_MOSI)) { // soft SPI
```

Warning: 

Once you upload the code and open the Serial Monitor ( **Tools-\>Serial Monitor** ) at **115200** baud, you will see the current configuration printed, followed by magnetometer measurements, similar to this:

![](https://cdn-learn.adafruit.com/assets/assets/000/087/026/medium800/sensors_arduino_example_screenshot.png?1579231275)

The sensor class in the magnetometer library reports X, Y and Z axis magnetometer readings directly in [micro-Teslas](http://en.wikipedia.org/wiki/Tesla_(unit)). The **lis3mdl\_demo** example code&nbsp;reads from the sensor and prints the micro-Tesla readings to the Serial Monitor.  
  
In the absence of any strong local magnetic fields, the sensor readings should reflect the magnetic field of the earth (between 20 and 60 micro-Teslas). When the sensor is held level, by calculating the angle of the magnetic filed with respect to the X and Y axis, the device can be used as a compass.

## Example Code
https://github.com/adafruit/Adafruit_LIS3MDL/blob/master/examples/lis3mdl_demo/lis3mdl_demo.ino

# LIS3MDL Triple-axis Magnetometer

## Arduino Docs

# LIS3MDL Triple-axis Magnetometer

## Python & CircuitPython

It's easy to use the LIS3MDL sensor with CircuitPython and the [Adafruit CircuitPython LIS3MDL](https://github.com/adafruit/Adafruit_CircuitPython_LIS3MDL) library.&nbsp; This library will allow you to easily write Python code that reads the magnetometer values from the sensor.

You can use this sensor with any CircuitPython microcontroller board or with a computer that has GPIO and Python [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 LIS3MDL breakout to your board exactly as shown below. Here's an example of wiring a Feather M4 to the sensor with I2C:

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

![sensors_python_feather_wiring_stemma.png](https://cdn-learn.adafruit.com/assets/assets/000/087/027/medium640/sensors_python_feather_wiring_stemma.png?1579233672)

![sensors_python_feather_wiring_breadboard.png](https://cdn-learn.adafruit.com/assets/assets/000/096/624/medium640/sensors_python_feather_wiring_breadboard.png?1604105853)

# Python Computer Wiring

Since there's _dozens_ of Linux computers/boards you can use, we will show wiring for Raspberry Pi. For other platforms, [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:

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

![sensors_python_rpi_wiring_stemma.png](https://cdn-learn.adafruit.com/assets/assets/000/087/029/medium640/sensors_python_rpi_wiring_stemma.png?1579233768)

![sensors_python_rpi_wiring_breadboard.png](https://cdn-learn.adafruit.com/assets/assets/000/087/030/medium640/sensors_python_rpi_wiring_breadboard.png?1579233801)

## CircuitPython Installation of LIS3MDL Library

You'll need to install the&nbsp;[Adafruit CircuitPython LIS3MDL](https://github.com/adafruit/Adafruit_CircuitPython_LIS3MDL) library on your CircuitPython board.

First make sure you are running the&nbsp;[latest version of Adafruit CircuitPython](https://learn.adafruit.com/welcome-to-circuitpython/installing-circuitpython)&nbsp;for your board.

Next you'll need to install the necessary libraries&nbsp;to use the hardware--carefully follow the steps to find and install these libraries from&nbsp;[Adafruit's CircuitPython library bundle](https://circuitpython.org/libraries).&nbsp; Our CircuitPython starter guide has [a great page on how to install the library bundle](https://learn.adafruit.com/welcome-to-circuitpython/circuitpython-libraries).

For non-express boards like the Trinket M0 or Gemma M0, you'll need to manually install the necessary libraries from the bundle:

- **adafruit\_lis3mdl.mpy**
- **adafruit\_bus\_device**
- **adafruit\_register**

Before continuing make sure your board's **lib** folder or root filesystem has the **adafruit\_lis3mdl****.mpy, **** adafruit\_bus\_device **, and&nbsp;** adafruit\_register **files and folders** &nbsp;**copied over.

Next&nbsp;[connect to the board's serial REPL&nbsp;](https://learn.adafruit.com/welcome-to-circuitpython/the-repl)so you are at the CircuitPython&nbsp;`>>>`&nbsp;prompt.

## Python Installation of LIS3MDL Library

You'll need to install the **Adafruit\_Blinka** 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:

- `sudo pip3 install adafruit-circuitpython-lis3mdl`

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

## CircuitPython & Python Usage

To demonstrate the usage of the sensor we'll initialize it and read the magnetometer measurements from the board's Python REPL.

Run the following code to import the necessary modules and initialize the I2C connection with the sensor:

Warning: 

```python
import time
import board
import busio
import adafruit_lis3mdl

i2c = busio.I2C(board.SCL, board.SDA)
sensor = adafruit_lis3mdl.LIS3MDL(i2c)
```

![](https://cdn-learn.adafruit.com/assets/assets/000/087/033/medium800/sensors_python_simpletest_import.png?1579236615)

Now you're ready to read values from the magnetometer using the **magnetic** property which returns a 3-tuple of the X, Y, and Z magnetometer readings in **micro-Teslas (uT)**

```python
mag_x, mag_y, mag_z = sensor.magnetic
print('X:{0:10.2f}, Y:{1:10.2f}, Z:{2:10.2f} uT'.format(mag_x, mag_y, mag_z))
```

![](https://cdn-learn.adafruit.com/assets/assets/000/087/032/medium800/sensors_python_simpletest_properties.png?1579236598)

## Example Code
https://github.com/adafruit/Adafruit_CircuitPython_LIS3MDL/blob/main/examples/lis3mdl_simpletest.py

# LIS3MDL Triple-axis Magnetometer

## Python Docs

# LIS3MDL Triple-axis Magnetometer

## Downloads

## Files

- [LIS3MDL Datasheet](https://www.st.com/resource/en/datasheet/lis3mdl.pdf)
- [EagleCAD files on GitHub](https://github.com/adafruit/Adafruit-LIS3MDL-PCB)
- [3D models on GitHub](https://github.com/adafruit/Adafruit_CAD_Parts/tree/main/4479%20LIS3MDL)
- [Fritzing object in Adafruit Fritzing Library](https://github.com/adafruit/Fritzing-Library/blob/master/parts/Adafruit%20LIS3MDL%20Triple-axis%20Magnetometer.fzpz)

## Schematic
![](https://cdn-learn.adafruit.com/assets/assets/000/087/013/medium800/sensors_downloads_schematic.png?1579224261)

## Fab Print
![](https://cdn-learn.adafruit.com/assets/assets/000/087/014/medium800/sensors_downloads_fab_print.png?1579224272)


## Primary Products

### Adafruit Triple-axis Magnetometer - LIS3MDL

[Adafruit Triple-axis Magnetometer - LIS3MDL](https://www.adafruit.com/product/4479)
Sense the magnetic fields that surround us with this handy triple-axis magnetometer (compass) module. Magnetometers can sense where the strongest magnetic force is coming from, generally used to detect magnetic north, but can also be used for measuring magnetic fields. This sensor tends to be...

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

## Featured Products

### Adafruit LSM6DSOX + LIS3MDL - Precision 9 DoF IMU

[Adafruit LSM6DSOX + LIS3MDL - Precision 9 DoF IMU](https://www.adafruit.com/product/4517)
Add high-quality motion,&nbsp;direction, and orientation&nbsp;sensing to your Arduino project with this all-in-one 9 Degree of Freedom (9-DoF) sensor with sensors from ST. This little breakout contains two chips that sit side-by-side to provide 9 degrees of full-motion data.

The board...

In Stock
[Buy Now](https://www.adafruit.com/product/4517)
[Related Guides to the Product](https://learn.adafruit.com/products/4517/guides)
### Adafruit LSM6DSOX 6 DoF Accelerometer and Gyroscope

[Adafruit LSM6DSOX 6 DoF Accelerometer and Gyroscope](https://www.adafruit.com/product/4438)
Behold, the ST LSM6DSOX: The latest in a long line of quality Accelerometer+Gyroscope 6-DOF IMUs from ST.

This IMU sensor has 6 degrees of freedom - 3 degrees each of linear acceleration and angular velocity at varying rates within a respectable range. For the accelerometer:...

Out of Stock
[Buy Now](https://www.adafruit.com/product/4438)
[Related Guides to the Product](https://learn.adafruit.com/products/4438/guides)
### Adafruit LSM6DS33 6-DoF Accel + Gyro IMU

[Adafruit LSM6DS33 6-DoF Accel + Gyro IMU](https://www.adafruit.com/product/4480)
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 **LSM6DS33** , a 6-DoF IMU accelerometer + gyro. The 3-axis accelerometer, can tell you which direction is down...

No Longer Stocked
[Buy Now](https://www.adafruit.com/product/4480)
[Related Guides to the Product](https://learn.adafruit.com/products/4480/guides)
### Adafruit CLUE - nRF52840 Express with Bluetooth® LE

[Adafruit CLUE - nRF52840 Express with Bluetooth® LE](https://www.adafruit.com/product/4500)
Do you feel like you just don't have a CLUE? Well, we can help with that - get a CLUE here at Adafruit by picking up this sensor-packed development board. We wanted to build some projects that have a small screen and a lot of sensors. To make it compatible with existing projects, we made...

In Stock
[Buy Now](https://www.adafruit.com/product/4500)
[Related Guides to the Product](https://learn.adafruit.com/products/4500/guides)
### Adafruit Feather nRF52840 Sense

[Adafruit Feather nRF52840 Sense](https://www.adafruit.com/product/4516)
The **Adafruit Feather Bluefruit Sense** takes our popular [Feather nRF52840 Express](https://www.adafruit.com/product/4062) and adds a smorgasbord of sensors to make a great wireless sensor platform. This Feather microcontroller comes with Bluetooth® Low Energy and...

In Stock
[Buy Now](https://www.adafruit.com/product/4516)
[Related Guides to the Product](https://learn.adafruit.com/products/4516/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 with Premium Female Sockets

[STEMMA QT / Qwiic JST SH 4-pin Cable with Premium Female Sockets](https://www.adafruit.com/product/4397)
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 female 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 and...

Out of Stock
[Buy Now](https://www.adafruit.com/product/4397)
[Related Guides to the Product](https://learn.adafruit.com/products/4397/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

- [LSM6DSOX, ISM330DHC, & LSM6DSO32 6 DoF IMUs](https://learn.adafruit.com/lsm6dsox-and-ism330dhc-6-dof-imu.md)
- [Introducing Adafruit CLUE](https://learn.adafruit.com/adafruit-clue.md)
- [Adafruit Feather nRF52840 Sense](https://learn.adafruit.com/adafruit-feather-sense.md)
- [ST 9-DoF Combo Breakouts and Wings](https://learn.adafruit.com/st-9-dof-combo.md)
- [CircuitPython BLE Multi-Temperature Monitoring](https://learn.adafruit.com/circuitpython-multi-temperature-ble-monitoring.md)
- [CLUE Light Paint Stick with CircuitPython](https://learn.adafruit.com/clue-light-paintstick.md)
- [BLE Thermal "Cat" Printer with CircuitPython](https://learn.adafruit.com/ble-thermal-cat-printer-with-circuitpython.md)
- [Clue And MagTag Pep Talk Generator](https://learn.adafruit.com/clue-and-magtag-pep-talk-generator.md)
- [ulab: Crunch Numbers fast in CircuitPython](https://learn.adafruit.com/ulab-crunch-numbers-fast-with-circuitpython.md)
- [CircuitPython BLE Libraries on Any Computer](https://learn.adafruit.com/circuitpython-ble-libraries-on-any-computer.md)
- [Bluetooth LE Sensor Nodes to Raspberry Pi WiFi Bridge](https://learn.adafruit.com/bluetooth-le-broadcastnet-sensor-node-raspberry-pi-wifi-bridge.md)
- [Frozen-Inspired Animated Pendant with Temperature Sensing](https://learn.adafruit.com/frozen-gizmo-pendant-with-temperature-sensing.md)
- [Wirelessly Code your Bluetooth Device with CircuitPython](https://learn.adafruit.com/wirelessly-code-your-bluetooth-device-with-circuitpython.md)
- [LED Bullwhip with Motion & Sound Reactivity](https://learn.adafruit.com/led-bullwhip.md)
- [CLUE case](https://learn.adafruit.com/clue-case.md)
- [CLUE Sensor Plotter in CircuitPython](https://learn.adafruit.com/clue-sensor-plotter-circuitpython.md)
- [Wearable Continuous Temperature Monitor with Adafruit IO](https://learn.adafruit.com/wearable-temperature-monitor.md)
- [Yoga Pose Chime](https://learn.adafruit.com/yoga-pose-chime.md)
