# Adafruit TMP119 High-Precision Temperature Sensor

## Overview

![](https://cdn-learn.adafruit.com/assets/assets/000/142/897/medium800/adafruit_products_6482-00.jpg?1773238279)

The **TMP119 High-Precision Temperature Sensor** is an I2C temperature sensor that will help you easily add super-precise temperature measurement and adjustment to your project. In addition to the obvious support for reading the temperature, the TMP119 can also monitor the temperature and alert you when corrective action needs to be taken.

![](https://cdn-learn.adafruit.com/assets/assets/000/142/898/medium800/adafruit_products_6482-04.jpg?1773238320)

The TMP119 has **16-bit** / **0.0078°C** measurement resolution, wide operating range of -55 to 155°C, and up to **±0.03°C** (typical) accuracy from 0°C to 45°C. The chip also has high and low **temperature alerts** and interrupt support, and hardware support required for NIST traceability ([contact TI for the NIST documents](https://www.ti.com/drr/opn/NIST-TEMPERATURE)) This temperature sensor is perfect for applications where you need to keep a close eye on temperature. The manufacturer, Texas Instruments, suggests it for use in sensitive applications like thermostats and cold chain asset tracking, or even gas and heat meters!

![](https://cdn-learn.adafruit.com/assets/assets/000/142/899/medium800/adafruit_products_6482-03.jpg?1773238909)

TMP119 temperature sensor has different accuracy for different ranges, here's what you can expect as the typical & _maximum_ variation for popular temperature ranges:

- ±0.03°C (typical) from 0°C to 45°C
- ±0.08°C (maximum) from 0°C to 45°C
- ±0.09°C (maximum) from –25°C to 85°C
- ±0.12°C (maximum) from –40°C to 85°C
- ±0.15°C (maximum) from –55°C to 125°C
- ±0.2°C (maximum) from –55°C to 150°C

Compared to the TMP117, the TMP119 has better accuracy but has the same firmware interface (other than the Chip Identifier being different so you can tell which one you have)

![](https://cdn-learn.adafruit.com/assets/assets/000/142/900/medium800/adafruit_products_6482-02.jpg?1773238949)

To make using it as easy as possible, we’ve put the TMP119 on a breakout PCB in our [Stemma QT form factor](https://www.adafruit.com/?q=Stemma+QT+Sensor) with a sprinkle of support circuitry to give you options when testing. You can either use a breadboard or the[**SparkFun qwiic**](https://www.sparkfun.com/qwiic) compatible [**STEMMA QT**](https://learn.adafruit.com/introducing-adafruit-stemma-qt) connectors, and compatibility with 5V voltage levels as commonly found on [Arduinos](https://www.adafruit.com/category/17), as well as 3.3V logic used by many other boards like the Raspberry Pi or our Feathers. [**QT Cable is not included** , but we have a variety in the shop](https://www.adafruit.com/?q=stemma+qt+cable&sort=BestMatch) for quick plug-and-play support.

To get started, all you need to do is look over the [Pinouts](https://learn.adafruit.com/adafruit-tmp117-high-accuracy-i2c-temperature-monitor/pinouts) page to familiarize yourself with the board, and then **[use the TMP117/TMP119 Arduino or Python & CircuitPython pages for instructions on how to wire up the TMP119 to your board, as well as libraries and example code to get you started.](https://learn.adafruit.com/adafruit-tmp117-high-accuracy-i2c-temperature-monitor)**

# Adafruit TMP119 High-Precision Temperature Sensor

## Pinouts

![](https://cdn-learn.adafruit.com/assets/assets/000/142/904/medium800/adafruit_products_double.jpg?1773242442)

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

## Power Pins

- **VIN** &nbsp;- this is the power pin. 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. For a 3.3V microcontroller, use 3.3V.
- **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&nbsp;** 10K pullup**&nbsp;on this pin.
- **[STEMMA QT](https://learn.adafruit.com/introducing-adafruit-stemma-qt)&nbsp;-&nbsp;**These connectors allow you to connect 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).

## Alert Pin

- **INT** - This is the alert pin. It can be used as an overtemperature alert or data-ready signal. The pin is an open-drain output that requires a pullup resistor.

## Address Pin and Jumper

- **ADDR** &nbsp;- The address pin for setting the I2C address. You can chain up to two of these boards together on one I2C bus. Leave this pin **low** for default I2C address **0x48** or tie it **high** for I2C address **0x49**.
- **ADDR Jumper** - On the back of the board is the address jumper, labeled **ADDR**. You can leave this jumper open (low) to keep the board on the default I2C address 0x48. Solder the jumper closed (high) to change the I2C address to 0x49.

![](https://cdn-learn.adafruit.com/assets/assets/000/142/979/medium800/adafruit_products_Screenshot_2026-03-13_141144.png?1773425521)

## Power LED and Jumper

- **Power LED -** In the upper left corner, above the STEMMA QT connector, on the front of the board, is the power LED, labeled **on**. It is a green LED.
- **LED jumper&nbsp;** - This jumper is located on the back of the board and is labeled **LED** on the board silk. Cut the trace on this jumper to cut power to the " **on**" LED.

# Adafruit TMP119 High-Precision Temperature Sensor

## CircuitPython and Python

It's easy to use the&nbsp; **TMP119** &nbsp;with Python or CircuitPython, and the&nbsp;[Adafruit\_CircuitPython\_TMP117](https://github.com/adafruit/Adafruit_CircuitPython_TMP117) module. This module allows you to easily write Python code that allows you to read **TMP117 and**  **TMP119** temperature sensors. 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).

The TMP119 has better accuracy and a different chip identifier from the TMP117, but is otherwise 100% compatible with the TMP117 firmware interface.

## CircuitPython Microcontroller Wiring

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

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

![](https://cdn-learn.adafruit.com/assets/assets/000/142/954/medium640/adafruit_products_feather_stemma_bb.jpg?1773343003)

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

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

![](https://cdn-learn.adafruit.com/assets/assets/000/142/955/medium640/adafruit_products_feather_bb_bb.jpg?1773343024)

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

- **Pi 3V** to **breakout STEMMA** **VIN (red wire)**  
- **Pi GND** to **breakout**  **STEMMA** **GND (black wire)**  
- **Pi SCL** to **breakout**  **STEMMA** **SCL (yellow wire)**  
- **Pi SDA** to **breakout**  **STEMMA** **SDA (blue wire)**

![](https://cdn-learn.adafruit.com/assets/assets/000/142/956/medium640/adafruit_products_piStemma_bb.jpg?1773343045)

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

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

![](https://cdn-learn.adafruit.com/assets/assets/000/142/957/medium640/adafruit_products_piBB_bb.jpg?1773343065)

## Python Installation of TMP117 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-tmp117`

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 TMP117 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 and file:

- **adafruit\_bus\_device/**
- **adafruit\_register/**
- **adafruit\_tmp117.mpy**

![CIRCUITPY drive](https://adafruit.github.io/Adafruit_CircuitPython_Bundle/tmp117_tmp117_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

**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://github.com/adafruit/Adafruit_CircuitPython_TMP117/blob/main/examples/tmp117_simpletest.py

In the example, the temperature sensor is&nbsp;instantiated on I2C. Then,&nbsp;in the loop, the temperature readings in Celsius are printed to the serial console every second.

![](https://cdn-learn.adafruit.com/assets/assets/000/142/977/medium800/adafruit_products_Screenshot_2026-03-13_131652.png?1773422232)

# Adafruit TMP119 High-Precision Temperature Sensor

## Python Docs

# Adafruit TMP119 High-Precision Temperature Sensor

## Arduino

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

The TMP119 has better accuracy and a different chip identifier from the TMP117, but is otherwise 100% compatible with the TMP117 firmware interface.

## 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 TMP119 VIN.

Here is an Adafruit Metro wired up to the TMP119 using the STEMMA QT connector:

- **Board 5V** to **breakout STEMMA** **VIN (red wire)**  
- **Board GND** to **breakout**  **STEMMA** **GND (black wire)**  
- **Board SCL** to **breakout**  **STEMMA** **SCL (yellow wire)**  
- **Board SDA** to **breakout**  **STEMMA** **SDA (blue wire)**

![](https://cdn-learn.adafruit.com/assets/assets/000/142/964/medium640/adafruit_products_metroSTEMMA_bb.jpg?1773343119)

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

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

![](https://cdn-learn.adafruit.com/assets/assets/000/142/965/medium640/adafruit_products_metroBB_bb.jpg?1773343140)

## Library Installation

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

![](https://cdn-learn.adafruit.com/assets/assets/000/142/949/medium800/adafruit_products_Arduino_Open_Library_Manager.png?1773340363)

Click the **Manage Libraries ...** menu item, search for **Adafruit TMP117** , and select the **Adafruit TMP117** library:

![](https://cdn-learn.adafruit.com/assets/assets/000/142/950/medium800/adafruit_products_Screenshot_2026-03-12_143943.png?1773340815)

If asked about dependencies, click " **Install all**".

![](https://cdn-learn.adafruit.com/assets/assets/000/142/951/medium800/adafruit_products_Screenshot_2026-03-12_143954.png?1773340821)

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

Warning: If the dependencies are already installed, you must make sure you update them through the Arduino Library Manager before loading the example!

## Example Code
https://github.com/adafruit/Adafruit_TMP117/blob/master/examples/TMP119_basic_test/TMP119_basic_test.ino

Upload the sketch to your board and open up the Serial Monitor ( **Tools -\> Serial Monitor** ) at 115200 baud. You should see that the sketch has found your connected TMP119 sensor. Then, you'll see the temperature readings in Celsius printed to the Serial Monitor every second.

![](https://cdn-learn.adafruit.com/assets/assets/000/142/976/medium800/adafruit_products_Screenshot_2026-03-13_131423.png?1773422085)

# Adafruit TMP119 High-Precision Temperature Sensor

## Arduino Docs

# Adafruit TMP119 High-Precision Temperature Sensor

## WipperSnapper

![](https://cdn-learn.adafruit.com/assets/assets/000/143/523/medium800/adafruit_products_Screenshot_2026-04-08_181043.png?1775668256)

## What is WipperSnapper

WipperSnapper is a firmware designed to turn any WiFi-capable board into an Internet-of-Things device without programming a single line of code. WipperSnapper connects to [Adafruit IO](https://io.adafruit.com/), a web&nbsp;platform designed ([by Adafruit!](https://www.adafruit.com/about)) to&nbsp;_display_,&nbsp;_respond_, and&nbsp;_interact_&nbsp;with your project's data.

Simply load the WipperSnapper firmware onto your board, add credentials, and plug it into power. Your board will automatically register itself with your Adafruit IO account.

From there, you can add&nbsp;_components_&nbsp;to your board such as buttons, switches, potentiometers, sensors, and more! Components are&nbsp;_dynamically&nbsp;_added to hardware, so you can&nbsp;immediately start interacting, logging, and streaming the data your projects produce without writing code.

If you've never used WipperSnapper, click below to read through the quick start guide before continuing.

[Quickstart: Adafruit IO WipperSnapper](https://learn.adafruit.com/quickstart-adafruit-io-wippersnapper)
## Wiring
First, wire up a TMP119 to your board exactly as follows. Here is an example of the TMP119 wired to an&nbsp;[Adafruit ESP32 Feather V2](https://www.adafruit.com/product/5400)&nbsp;using I2C&nbsp;[with a STEMMA QT cable (no soldering required)](https://www.adafruit.com/product/4210)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/143/528/medium640/adafruit_products_featherESP32v2_TMP119_stemma_bb.png?1775668716)

![](https://cdn-learn.adafruit.com/assets/assets/000/143/529/medium640/adafruit_products_featherESP32v2_TMP119_bb_bb.png?1775668734)

## Usage

Connect your board to Adafruit IO Wippersnapper and **[navigate to the WipperSnapper board list](https://io.adafruit.com/wippersnapper).**

On this page, **select the WipperSnapper board you're using** to be brought to the board's interface page.

![](https://cdn-learn.adafruit.com/assets/assets/000/143/524/medium800/adafruit_products_RQNhj9y4Pk.png?1775668314)

If you do not see your board listed here - you need [to connect your board to Adafruit IO](https://learn.adafruit.com/quickstart-adafruit-io-wippersnapper) first.

On the device page, quickly&nbsp; **check that you're running the latest version of the WipperSnapper firmware**.

The device tile on the left indicates the version number of the firmware running on the connected board.

- **If the firmware version is green with a checkmark -** &nbsp;continue with this guide.
- **If the firmware version is red with an exclamation mark "!" -** &nbsp;[update to the latest WipperSnapper firmware](https://learn.adafruit.com/quickstart-adafruit-io-wippersnapper)&nbsp;on your board before continuing.

![](https://cdn-learn.adafruit.com/assets/assets/000/143/525/medium640/adafruit_products_DNAxWVz8Z1.png?1775668335)

![](https://cdn-learn.adafruit.com/assets/assets/000/143/526/medium640/adafruit_products_VG2VtiCI9Q.png?1775668346)

Next, make sure the sensor is plugged into your board and click the **&nbsp;I2C Scan&nbsp;** button.

![](https://cdn-learn.adafruit.com/assets/assets/000/113/177/medium800/sensor_page_crop_scan.png?1657724520)

You should see the TMP119's default I2C address of&nbsp;`0x48`&nbsp;pop-up in the I2C scan list.

![](https://cdn-learn.adafruit.com/assets/assets/000/143/411/medium800/adafruit_products_Screenshot_2026-04-03_180119.png?1775236172)

###  I don't see the sensor's I2C address listed! 


First, double-check the connection and/or wiring between the sensor and the board.

Then, reset the board and let it re-connect to Adafruit IO WipperSnapper.

With the sensor detected in an I2C scan, you're ready to add the sensor to your board.

**Click the New Component button or the + button** to bring up the component picker.

![](https://cdn-learn.adafruit.com/assets/assets/000/127/931/medium800/sensor_page_temperature___humidity_06_AddComponent.png?1708631009)

Adafruit IO supports a large amount of components. To quickly find your sensor, type&nbsp;`TMP119`&nbsp;into the search bar, then select the&nbsp; **TMP119** component.

![](https://cdn-learn.adafruit.com/assets/assets/000/143/522/medium800/adafruit_products_PznGCwnjYi.png?1775668088)

On the component configuration page, the TMP119's sensor address should be listed along with the sensor's settings.

The&nbsp; **Send Every** &nbsp;option is specific to each sensor's measurements. This option will tell the Feather how often it should read from the TMP119 sensor and send the data to Adafruit IO. Measurements can range from every second to every 24 hours.

For this example, set the&nbsp; **Send Every&nbsp;** interval to every 30 seconds.

![](https://cdn-learn.adafruit.com/assets/assets/000/143/412/medium800/adafruit_products_4KkbR2ctUn.png?1775236182)

Your device interface should now show the sensor components you created. After the interval you configured elapses, WipperSnapper will automatically read values from the sensor(s) and send them to Adafruit IO.

![](https://cdn-learn.adafruit.com/assets/assets/000/143/414/medium800/adafruit_products_wE9NUDf5mt.png?1775236340)

To view the data that has been logged from the sensor, click on the graph next to the sensor name.

![](https://cdn-learn.adafruit.com/assets/assets/000/143/415/medium800/adafruit_products_0LrkKHzIcR.png?1775236365)

Here you can see the feed history and edit things about the feed such as the name, privacy, webhooks associated with the feed and more. If you want to learn more about how feeds work, [check out this page](https://learn.adafruit.com/all-the-internet-of-things-episode-four-adafruit-io/advanced-feeds).

![](https://cdn-learn.adafruit.com/assets/assets/000/143/416/medium800/adafruit_products_JttsWjyfa9.png?1775236512)

# Adafruit TMP119 High-Precision Temperature Sensor

## Downloads

## Files

- [TMP119 Datasheet](https://cdn-learn.adafruit.com/assets/assets/000/142/901/original/tmp119.pdf?1773239122)
- [EagleCAD PCB files on GitHub](https://github.com/adafruit/Adafruit-TMP119-Temperature-Sensor-PCB)
- [Fritzing object in the Adafruit Fritzing Library](https://github.com/adafruit/Fritzing-Library/blob/master/parts/Adafruit%20TMP119%20High-Precision%20Temperature%20Sensor.fzpz)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/142/903/medium800/adafruit_products_fab.png?1773239365 dimensions are in inches)


## Primary Products

### Adafruit TMP119 High-Precision ±0.03°C I2C Temperature Sensor

[Adafruit TMP119 High-Precision ±0.03°C I2C Temperature Sensor](https://www.adafruit.com/product/6482)
The&nbsp; **TMP119&nbsp;High-Precision Temperature Sensor** &nbsp;is an I2C temperature sensor that will help you easily add super-precise temperature measurement and adjustment to your project. In addition to the obvious support for reading the temperature, the TMP119&nbsp;can also...

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

## Related Guides

- [Adafruit BMP580, BMP581, and BMP585 - Temperature and Pressure Sensor](https://learn.adafruit.com/adafruit-bmp580-bmp581-and-bmp585-temperature-and-pressure-sensor.md)
- [Adafruit microSD Card BFF](https://learn.adafruit.com/adafruit-microsd-card-bff.md)
- [eInk Slow Movie Player](https://learn.adafruit.com/eink-slow-movie-player.md)
- [Adafruit Swirly Aluminum Mounting Grid for 0.1" Spaced PCBs](https://learn.adafruit.com/swirly-grid.md)
- [Adafruit STEMMA Analog SPDT Switch](https://learn.adafruit.com/adafruit-stemma-analog-spdt-switch.md)
- [Adafruit CAP1188 Breakout](https://learn.adafruit.com/adafruit-cap1188-breakout.md)
- [DIY Trinkey No-Soldering USB Air Quality Monitor](https://learn.adafruit.com/diy-trinkey-no-solder-air-quality-monitor.md)
- [CircuitPython Chiptune Player](https://learn.adafruit.com/circuitpython-chiptune-player.md)
- [Visual Studio Code for the Raspberry Pi](https://learn.adafruit.com/visual-studio-code-for-the-raspberry-pi.md)
- [Adafruit Feather 328P](https://learn.adafruit.com/adafruit-feather-328p-atmega328-atmega328p.md)
- [CircuitPython Hardware: LIS3DH Accelerometer](https://learn.adafruit.com/circuitpython-hardware-lis3dh-accelerometer.md)
- [Adafruit AS7341 10-Channel Light / Color Sensor Breakout](https://learn.adafruit.com/adafruit-as7341-10-channel-light-color-sensor-breakout.md)
- [Adafruit Qwiik/STEMMA QT 5 Port Hub](https://learn.adafruit.com/qwiik-stemma-qt-5-port-hub.md)
- [Chip's Challenge on Fruit Jam and Metro RP2350](https://learn.adafruit.com/256-color-gaming-on-the-metro-rp2350.md)
- [Adafruit QT 5V to 3V Shifter Breakout](https://learn.adafruit.com/adafruit-qt-5v-to-3v-shifter-breakout.md)
