# Adafruit TDK InvenSense ICM-20948 9-DoF IMU

## Overview

![](https://cdn-learn.adafruit.com/assets/assets/000/093/833/medium800/sensors_edit4554_iso_ORIG_2020_07.png?1596657840)

When you want to sense orientation using inertial measurements, you need an Inertial Measurement Unit, and when it comes to IMUs, the more DoFs, the better! The ICM20948 from Invensense packs 9 Degrees of freedom into a teeny package, making it a one stop shop for all the DOFs you need! Within it’s svelte 3x3mm package there are not just _one_ MEMS sensor die like your common sensors, but _two sensor dies!_ The ICM20948 pair’s Invensense’s MEMS 3-axis accelerometer and gyro with the AK09916 3-axis magnetometer from Asahi Kasei Microdevices Corporation.

![](https://cdn-learn.adafruit.com/assets/assets/000/093/835/medium800/sensors_edit4554_kit_ORIG_2020_08.png?1596658033)

All 9 axes of measurement are made available thanks to a crew of 16-bit Analog to Digital Converters, diligently converting the raw analog signals from the MEMs sensors to digital readings that are accessed via I2C or SPI. Each of the sensors have the quality specs you would expect from such a sensor. Just see what the datasheet has to say:

> • **3-Axis** Gyroscope with Programmable FSR of **±250 dps, ±500 dps, ±1000 dps, and ±2000 dps**
> 
> • **3-Axis Accelerometer** with Programmable FSR of&nbsp; **±2g, ±4g, ±8g, and ±16g**
> 
> • **3-Axis Compass** with a wide range to **±4900 µT**

Now that’s a handy and capable team of sensors, ready to help orient your project in the right direction!

![](https://cdn-learn.adafruit.com/assets/assets/000/093/834/medium800/sensors_edit4554_quarter_ORIG_2020_08.png?1596657903)

Like any high performance device the ICM20948 can a bit particular about how it needs to be worked with. Unlike the pick and place machines that normally handle these sensors, most of us humans can’t readily take a little guy like the ICM20948 and plop it into our circuit; it’s small! What’s more, the ICM20948 runs on 1.8V which is increasingly common for device manufacturers but isn’t hardly common for makers, learners, prototypers or the like. With that in mind, we’ve put the ICM20948 on a breakout with a 1.8V voltage regulator as well as level shifting circuitry to allow your 3.3V device such as a Feather M4 or Raspberry Pi, or a 5V device such as the Arduino Uno.

![](https://cdn-learn.adafruit.com/assets/assets/000/093/836/medium800/sensors_edit4554_detail_ORIG_2020_08.png?1596658233)

To make connections easy, our breakout puts makes the pins of the ICM20948 available on standard 0.100”/ 2.54mm pitch headers for use with a breadboard. Should you wish to avoid soldering, the Stemma QT form factor breakout also includes our Stemma QT connectors which just like the [**SparkFun Qwiic**](https://www.sparkfun.com/qwiic) connectors they’re inspired by (and compatible with). Using these handy connectors you can simply plug in the sensor and get rolling with your project. You can even use them to daisy chain multiple sensors together! All of this is explained with wiring diagrams for use with Arduino or CircuitPython on the pages to come.

Lastly, all the wiring in the world wouldn’t do you much good if you didn’t know how to use those wires to talk to your sensor, so we’ve done the work of writing libraries for Arduino and CircuitPython that will allow you to use the ICM20948 with your favorite development board, be it an Arduino, Feather, Raspberry Pi, or one of the many other Arduino and CircuitPython compatible boards.

# Adafruit TDK InvenSense ICM-20948 9-DoF IMU

## Pinouts

![](https://cdn-learn.adafruit.com/assets/assets/000/093/838/medium800/sensors_edit4554_top_ORIG_02020_08-2.png?1596658575)

![](https://cdn-learn.adafruit.com/assets/assets/000/093/837/medium800/sensors_edit4554_quarter_ORIG_2020_08-2.png?1596658552)

 **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
- **1V8** &nbsp;- this is the 1.8V 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 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 I2C data line. This pin is level shifted so you can use 3-5V logic, and there's a **10K pullup** on this pin.
- [**STEMMA QT**](https://learn.adafruit.com/introducing-adafruit-stemma-qt) **&nbsp;-** These connectors allow you to connectors to dev boards with&nbsp; **STEMMA QT** connectors or to other things with&nbsp;[various associated accessories](https://www.adafruit.com/?q=JST%20SH%204)
- **SDO/ADR Jumper** &nbsp;- **I2C Address pin**. Pulling this pin high or bridging the solder jumper on the back will change the I2C address from&nbsp; **0x69** &nbsp;to&nbsp; **0x68**

## **SPI Logic pins**

- **SCL** - This is _also_&nbsp;the **S** PI **C** loc **k** pin / **SCK** , 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;/ **MOSI** pin, for data sent from your processor to the ICM20948
- **SDO** - this is the **Serial**  **D** ata **O** ut / **M** icrocontroller **I** n **S** ensor **O** ut&nbsp;/ **MISO** pin, for data sent from the ICM20948 to your processor.&nbsp;
- **CS** - this is the **C** hip **S** elect pin, drop it low to start an SPI transaction. It's an input to the chip

If you want to connect multiple ICM20948s to one microcontroller, have them share the **SCL,**  **SDA** , and **DO** pins. Then assign each one a unique **CS** pin.

 **Other Pins**

- **INT** -This is the primary interrupt pin. You can setup the ICM20948 to pull this low or high when certain conditions are met such as new measurement data being available. Consult the [datasheet](https://www.st.com/resource/en/datasheet/lsm6ds33.pdf) for usage
- **AC -&nbsp;** Auxillary I2C bus clock. Advanced users can consult [the datasheet](https://invensense.tdk.com/wp-content/uploads/2016/06/DS-000189-ICM-20948-v1.3.pdf) to learn how to use this pin to communicate with sensors on the ICM20948's auxillary bus. **1.8V Logic Only!**
- **AD -**** &nbsp;**Auxillary I2C bus data. Advanced users can consult [the datasheet](https://invensense.tdk.com/wp-content/uploads/2016/06/DS-000189-ICM-20948-v1.3.pdf) to learn how to use this pin to communicate with sensors on the ICM20948's auxillary bus.**1.8V Logic Only!**
- **FS -&nbsp;** External frame sync.&nbsp;Advanced users can consult [the datasheet](https://invensense.tdk.com/wp-content/uploads/2016/06/DS-000189-ICM-20948-v1.3.pdf) to learn how to use this pin to synchronize measurements with additional sensors. **1.8V Logic Only!**

# Adafruit TDK InvenSense ICM-20948 9-DoF IMU

## Arduino

Using the ICM20948 with Arduino is a simple matter of wiring up the sensor to your Arduino-compatible microcontroller, installing the [Adafruit ICM20X](https://github.com/adafruit/Adafruit_ICM20X) library we've written, and running the provided example code.

## **I2C Wiring**

Use this wiring if you want to connect via I2C interface. The default I2C address for the ICM20948 is **0x69** but it can be switched to **0x68** by pulling the address pin low to GND.&nbsp;

&nbsp;

Here is how to wire up the sensor using one of the [**STEMMA QT**](https://learn.adafruit.com/introducing-adafruit-stemma-qt) connectors. The examples show a Metro but wiring will work the same for an Arduino or other compatible board.

- 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_ICM20948_Arduino_STEMMA_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/093/870/medium640/sensors_ICM20948_Arduino_STEMMA_bb.jpg?1596663931)

Here is how to wire the sensor to a board using a solderless breadboard:

- 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_ICM20948_Arduino_breadboard_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/093/871/medium640/sensors_ICM20948_Arduino_breadboard_bb.jpg?1596663958)

## **Library Installation**

You can install the **Adafruit ICM20X l** ibrary for Arduino using the Library Manager in the Arduino IDE. This library is compatible with both the ICM20948 and it's sister sensor, the ICM20649

![](https://cdn-learn.adafruit.com/assets/assets/000/093/854/medium800/sensors_a_ARDUINO_-_library_manager_menu.png?1596660100)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/093/858/medium800/sensors_image.png?1596660177)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/093/857/medium800/sensors_aa_ARDUINO-_BusIO_Lib_Manager.png?1596660129)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/093/855/medium800/sensors_aaa_ARDUINO_-Unified_Sensor_LibMGR.png?1596660120)

## **Load Example**

Open up&nbsp; **File -\> Examples -\> Adafruit ICM20X -\> adafruit\_ICM20948\_test**

After opening the demo file, upload to your Arduino wired up to the sensor. Once you upload the code, you will see the **Temperature** as well as **X, Y, and Z values** &nbsp; for the **Gyro Accelerometer, and Magnetometer** being printed when you open the Serial Monitor ( **Tools-\>Serial Monitor** ) at **115200 baud** , similar to this:

![](https://cdn-learn.adafruit.com/assets/assets/000/093/860/medium800/sensors_image.png?1596660430)

## **Example Code**
https://github.com/adafruit/Adafruit_ICM20X/blob/master/examples/adafruit_icm20948_test/adafruit_icm20948_test.ino

# Adafruit TDK InvenSense ICM-20948 9-DoF IMU

## Arduino Docs

# Adafruit TDK InvenSense ICM-20948 9-DoF IMU

## Python & CircuitPython

It's easy to use the **ICM20948** with Python and CircuitPython, and the [Adafruit CircuitPython ICM20X](https://github.com/adafruit/Adafruit_CircuitPython_ICM20X) module.&nbsp; This module allows you to easily write Python code that reads measurements from the accelerometer and gyro, and will work with either 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 ICM20948 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 [**STEMMA QT**](https://learn.adafruit.com/introducing-adafruit-stemma-qt) connectors:

- **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_ICM20948_FeatherM4_STEMMA_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/093/866/medium640/sensors_ICM20948_FeatherM4_STEMMA_bb.jpg?1596663755)

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

- **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_ICM20948_FeatherM4_breadboard_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/093/867/medium640/sensors_ICM20948_FeatherM4_breadboard_bb.jpg?1596663798)

## **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 and a [**STEMMA QT**](https://learn.adafruit.com/introducing-adafruit-stemma-qt) connector:

- **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_ICM20948_RasPi_STEMMA_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/093/868/medium640/sensors_ICM20948_RasPi_STEMMA_bb.jpg?1596663865)

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

- **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_ICM20948_RasPi_breadboard_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/093/869/medium640/sensors_ICM20948_RasPi_breadboard_bb.jpg?1596663896)

CircuitPython Installation of ICM20X Library

You'll need to install the&nbsp;[Adafruit CircuitPython ICM20X](https://github.com/adafruit/Adafruit_CircuitPython_ICM20X) 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). 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\_icm20X.mpy**
- **adafruit\_bus\_device**
- **adafruit\_register**

Before continuing make sure your board's **lib** folder has the **adafruit\_icm20X****.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 ICM20X 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-icm20x`

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 temperature and humidity measurements from the board's Python REPL.

&nbsp;

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

Now you're ready to read values from the sensor using these properties:

- **acceleration -** The acceleration forces in the X, Y, and Z axes in m/s<sup>2</sup>
- **gyro** - The rotation measurement on the X, Y, and Z axes in degrees/sec
- **magnetic** - The magnetic forces on the X, Y, and Z axes in micro-Teslas (uT)

For example, to print out the acceleration, gyro and magnetic measurements use this code:

## **Example Code**
https://github.com/adafruit/Adafruit_CircuitPython_ICM20X/blob/main/examples/icm20x_icm20948_simpletest.py

# Adafruit TDK InvenSense ICM-20948 9-DoF IMU

## Python Docs

# Adafruit TDK InvenSense ICM-20948 9-DoF IMU

## Downloads

## **Files**

- [ICM20948 Datasheet](https://invensense.tdk.com/wp-content/uploads/2016/06/DS-000189-ICM-20948-v1.3.pdf)
- [EagleCAD files on GitHub](https://github.com/adafruit/Adafruit-ICM20948-PCB)
- [Fritzing object in the Adafruit Fritzing Library](https://github.com/adafruit/Fritzing-Library/blob/master/parts/Adafruit%20ICM20948.fzpz)

## **Schematic**

## &nbsp;
![](https://cdn-learn.adafruit.com/assets/assets/000/093/864/medium800/sensors_image.png?1596661419)

## Fab Print
![](https://cdn-learn.adafruit.com/assets/assets/000/093/865/medium800/sensors_image.png?1596661526)


## Primary Products

### Adafruit TDK InvenSense ICM-20948 9-DoF IMU (MPU-9250 Upgrade)

[Adafruit TDK InvenSense ICM-20948 9-DoF IMU (MPU-9250 Upgrade)](https://www.adafruit.com/product/4554)
When you want to sense orientation using inertial measurements, you need an Inertial Measurement Unit, and when it comes to IMUs, the more DoFs, the better! The **ICM20948 from Invensense** packs 9 Degrees of freedom into a teeny package, making it a one-stop-shop for all the DOFs...

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

## Featured Products

### 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)
### 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)
### 4-pin JST PH to JST SH Cable - STEMMA to QT / Qwiic

[4-pin JST PH to JST SH Cable - STEMMA to QT / Qwiic](https://www.adafruit.com/product/4424)
Are you a maker in the midst of&nbsp;a [**STEMMA**](https://learn.adafruit.com/introducing-adafruit-stemma-qt/what-is-stemma) dilemma? This 200mm long 4-wire cable is a fantastic chimera-cable fitted with **STEMMA QT / Sparkfun Qwiic JST SH** on one end,...

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

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

## Related Guides

- [Adafruit Voice Bonnet](https://learn.adafruit.com/adafruit-voice-bonnet.md)
- [Make It Plot](https://learn.adafruit.com/make-it-graph-plot.md)
- [Adafruit LIS2MDL Triple Axis Magnetometer](https://learn.adafruit.com/adafruit-lis2mdl-triple-axis-magnetometer.md)
- [Adafruit Metro ESP32-S3](https://learn.adafruit.com/adafruit-metro-esp32-s3.md)
- [Adafruit EyeLights LED Glasses and Driver](https://learn.adafruit.com/adafruit-eyelights-led-glasses-and-driver.md)
- [Working with Multiple Same Address I2C Devices](https://learn.adafruit.com/working-with-multiple-i2c-devices.md)
- [Adafruit STEMMA Audio Amp](https://learn.adafruit.com/stemma-audio-amp.md)
- [Adafruit MCP9808 Precision I2C Temperature Sensor Guide](https://learn.adafruit.com/adafruit-mcp9808-precision-i2c-temperature-sensor-guide.md)
- [Bluetooth LE MIDI Controller](https://learn.adafruit.com/bluetooth-le-midi-controller.md)
- [Bluetooth Cycling Speed & Cadence Sensor Display with Clue](https://learn.adafruit.com/bluetooth-bicycle-speed-cadence-sensor-display-with-clue.md)
- [Skill Badge Requirements: Solar](https://learn.adafruit.com/skill-badge-requirements-solar.md)
- [Getting Started with Binho Nova](https://learn.adafruit.com/getting-started-with-binho-nova.md)
- [Adafruit Music Maker Shield](https://learn.adafruit.com/adafruit-music-maker-shield-vs1053-mp3-wav-wave-ogg-vorbis-player.md)
- [Machine Learning 101 with Lobe and BrainCraft](https://learn.adafruit.com/machine-learning-101-lobe-braincraft.md)
- [Matrix Portal Stained Glass with WLED](https://learn.adafruit.com/matrix-portal-stained-glass-with-wled.md)
