# Adafruit LPS28 Pressure Sensor

## Overview

![](https://cdn-learn.adafruit.com/assets/assets/000/133/498/medium800/sensors_6067-04.jpg?1730841368)

We stock a large number of barometric pressure sensors, and they all have slight differences: [some are ported](https://www.adafruit.com/product/3965), [some are tiny](https://www.adafruit.com/product/4633), [some are popular and precise](https://www.adafruit.com/product/2652) and [some are low cost](https://www.adafruit.com/product/4494). The **Adafruit LPS28 (LPS28DFW) Pressure Sensor** is unique in that it can handle a much higher range of pressures: almost every other sensor we've encountered tops out at about 1260 hPa. That means they're totally fine for measuring altitude for most human endeavors, we tend to stay above sea level. However, for some scientific or deep-water uses, 1260 will not cut it! [That's why we're happy to stock a sensor that can go down to 4060 hPa](https://www.st.com/en/mems-and-sensors/lps28dfw.html) - that's as low as -43,000 feet below sea level in air or 40 meters underwater.

![](https://cdn-learn.adafruit.com/assets/assets/000/133/499/medium800/sensors_6067-02.jpg?1730841443)

[We covered the LPS28DFW sensor on our EYE ON NPI video segment](https://blog.adafruit.com/2022/08/04/eye-on-npi-st-lps28dfw-dual-full-scale-absolute-digital-output-barometer-eyeonnpi-digikey-st_world-digikey-adafruit/), and liked it so much we turned it into a product!

That makes this a good sensor for use with underwater devices or robots, as it can tell your depth from the pressure readings. Of course, its also still a great sensor for altitude sensing out of the water: with a 24-bit sensor and the ability to discern absolute pressure changes of ±0.5 hPa at the highest quality readings, good for less than 1 centimeter of altitude. (Like all pressure sensors, the actual altitude-above-sea-level depends on the days' pressure at sea level) Or, if you need speed, it can do up to 200 samples per second, without filtering and averaging.

![](https://cdn-learn.adafruit.com/assets/assets/000/133/500/medium800/sensors_6067-03.jpg?1730841467)

The sensor comes with a little metal port, so you could connect a thin tubing to it for measuring pressure far from where it is soldered. The sensor element within the package has potting gel good up to 10,000 hPa of pressure and protection against some harsh chemicals - [check the datasheet for more information to make sure you can use it to measure pressure of the liquid or gas you need](https://www.st.com/en/mems-and-sensors/lps28dfw.html).

![](https://cdn-learn.adafruit.com/assets/assets/000/133/501/medium800/sensors_6067-01.jpg?1730841498)

To make life easier when working with this fancy sensor, we've taken the LPS28 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!). We've even included [SparkFun qwiic](https://www.sparkfun.com/qwiic) compatible **[STEMMA QT](https://learn.adafruit.com/introducing-adafruit-stemma-qt)** connectors for the I2C bus so **you don't even need to solder!** Just wire up to your favorite micro and you can use our CircuitPython/Python or Arduino drivers to easily interface with the LPS28 and make approximate approximations of proximity in no time! **QT Cable is not included** , [but we have a variety in the shop](https://www.adafruit.com/product/4210).

# Adafruit LPS28 Pressure Sensor

## Pinouts

![](https://cdn-learn.adafruit.com/assets/assets/000/133/505/medium800/sensors_double.jpg?1730843072)

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

## Power Pins

- **VIN** - 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 micro 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 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 can use 3-5V logic, and there's a **10K pullup** on this pin.
- **[STEMMA QT](https://learn.adafruit.com/introducing-adafruit-stemma-qt) -** These connectors allow you to connect to dev boards with **STEMMA QT** (qwiic) connectors or to other things with [various associated accessories](https://www.adafruit.com/?q=JST%20SH%204)

## Interrupt Pin

- **INT** - This is the interrupt pin. The default state is active high. You can change the state in software.

## Power LED and LED Jumper

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

## SA0 Jumper

- **SA0** - On the back of the board, towards the center, is the I2C address jumper. It is labeled **SA0** on the board silk. If you solder this jumper closed, you'll change the I2C address from the default **0x5C** to **0x5D**.

![](https://cdn-learn.adafruit.com/assets/assets/000/135/051/medium800/sensors_Screenshot_2025-02-05_151052.png?1738786298)

# Adafruit LPS28 Pressure Sensor

## CircuitPython and Python

It's easy to use the **LPS28** with Python or CircuitPython, and the [Adafruit\_CircuitPython\_LPS28](https://github.com/adafruit/Adafruit_CircuitPython_LPS28) module. This module allows you to easily write Python code to read pressure and temperature data.

You can use this driver 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 the sensor to your board exactly as follows. The following is the sensor wired to a Feather RP2040 using the STEMMA connector:

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

![sensors_feather_stemma_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/135/070/medium640/sensors_feather_stemma_bb.jpg?1738958016)

The following is the sensor wired to a Feather RP2040 using a solderless breadboard:

- **Board 3V** to **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)**

![sensors_feather_bb_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/135/071/medium640/sensors_feather_bb_bb.jpg?1738958047)

## Python Computer Wiring

Since there are _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).

Here's the Raspberry Pi wired with I2C using the STEMMA connector:

- **Pi 3V** to **sensor** **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)**

![sensors_piStemma_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/135/072/medium640/sensors_piStemma_bb.jpg?1738958080)

Here's the Raspberry Pi wired with I2C using a solderless breadboard:

- **Pi 3V** to **sensor** **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)**

![sensors_piBB_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/135/073/medium640/sensors_piBB_bb.jpg?1738958100)

## Python Installation of LPS28 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. [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-lps28`

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 Usage

To use with CircuitPython, you need to first install the **Adafruit\_CircuitPython\_LPS28** library, and its dependencies, into the **lib** folder on your **CIRCUITPY** drive. Then you need to update **code.py** with the example script.

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

Your **CIRCUITPY/lib** folder should contain the following folders and file:

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

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

## Python Usage

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

`python3 code.py`

## Example Code

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

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

https://github.com/adafruit/Adafruit_CircuitPython_LPS28/blob/main/examples/lps28_simpletest.py

First, the sensor is instantiated over I2C. Then, in the loop, the pressure and temperature readings are printed to the serial monitor.

![](https://cdn-learn.adafruit.com/assets/assets/000/135/076/medium800/sensors_Screenshot_2025-02-07_150009.png?1738958433)

# Adafruit LPS28 Pressure Sensor

## Python Docs

# Adafruit LPS28 Pressure Sensor

## Arduino

Using the LPS28 breakout with Arduino involves wiring up the breakout to your Arduino-compatible microcontroller, installing the [Adafruit\_LPS28](https://github.com/adafruit/Adafruit_LPS28) library, and running the provided example code.

## Wiring

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

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

- **Board 5V** to **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)**

![sensors_metro_stemma_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/135/062/medium640/sensors_metro_stemma_bb.jpg?1738789402)

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

- **Board 5V** to **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)**

![sensors_metro_bb_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/135/063/medium640/sensors_metro_bb_bb.jpg?1738789426)

## Library Installation

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

![](https://cdn-learn.adafruit.com/assets/assets/000/135/052/medium800/sensors_Arduino_Open_Library_Manager.png?1738787956)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/135/053/medium800/sensors_Screenshot_2025-02-05_153211.png?1738787987)

If asked about dependencies, click "Install all".

![](https://cdn-learn.adafruit.com/assets/assets/000/135/054/medium800/sensors_Screenshot_2025-02-05_153304.png?1738788003)

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_LPS28/blob/main/examples/LPS28_simpletest/LPS28_simpletest.ino

![](https://cdn-learn.adafruit.com/assets/assets/000/135/055/medium800/sensors_Screenshot_2025-02-05_153729.png?1738788122)

Upload the sketch to your board and open up the Serial Monitor ( **Tools -\> Serial Monitor** ) at 115200 baud. You'll see the LPS28 recognized over I2C. Then, pressure and temperature readings will be printed to the Serial Monitor.&nbsp;

# Adafruit LPS28 Pressure Sensor

## Arduino Docs

# Adafruit LPS28 Pressure Sensor

## WipperSnapper

![](https://cdn-learn.adafruit.com/assets/assets/000/136/138/medium800/sensors_Screenshot_2025-04-03_124719.png?1743680867)

## 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 an LPS28 (LPS28DFW) to your board exactly as follows. Here is an example of the LPS28 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;**sensor VIN (red wire on STEMMA QT)**  
- **Board GND** &nbsp;to&nbsp;**sensor GND (black wire on STEMMA QT)**  
- **Board SCL** &nbsp;to&nbsp;**sensor SCK (yellow wire on STEMMA QT)**  
- **Board SDA** &nbsp;to&nbsp;**sensor SDI (blue wire on STEMMA QT)**

![Adafruit Feather ESP32 V2 connected via STEMMA QT cable to the LPS28 sensor](https://cdn-learn.adafruit.com/assets/assets/000/136/142/medium640/sensors_featherV2_LPS28_stemma_bb.png?1743681611)

![Adafruit Feather ESP32 V2 mounted on a breadboard, with four wires connected to the LPS28 sensor](https://cdn-learn.adafruit.com/assets/assets/000/136/143/medium640/sensors_featherV2_LPS28_bb_bb.png?1743681679)

## 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/136/144/medium800/sensors_chrome_aSAUVzwNqs.png?1743681923)

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.

![Board info displaying online status and firmware version in green with a tick mark, meaning it's running the latest version](https://cdn-learn.adafruit.com/assets/assets/000/136/145/medium640/sensors_adafruit_products_04_LatestVersion.png?1743682145)

![Board info displaying online status and firmware version in red with an exclamation mark, meaning it's running an older version and should be updated](https://cdn-learn.adafruit.com/assets/assets/000/136/146/medium640/sensors_adafruit_products_04_UpdateRequired.png?1743682191)

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 LPS28's default I2C address of&nbsp;`0x5C`&nbsp;pop-up in the I2C scan list.

![](https://cdn-learn.adafruit.com/assets/assets/000/136/147/medium800/sensors_Screenshot_2025-04-03_131103.png?1743682277)

###  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;`LPS28`&nbsp;into the search bar, then select the&nbsp; **LPS28** component.

![](https://cdn-learn.adafruit.com/assets/assets/000/136/148/medium800/sensors_chrome_WNoJ7EQmrq.png?1743682930)

On the component configuration page, the&nbsp; **LPS28**'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 LPS28 sensor and send the data to Adafruit IO. Measurements can range from every 30 seconds 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/136/149/medium800/sensors_chrome_NHumE5ZLNl.png?1743683403)

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/136/150/medium800/sensors_chrome_5YtkKvbyXH.png?1743683951)

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/136/153/medium800/sensors_XjyyKqBuwv.png?1743684307)

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/136/155/medium800/sensors_PHxqX0AHCN.png?1743685346)

# Adafruit LPS28 Pressure Sensor

## Downloads

## Files

- [LPS28DFW Datasheet](https://cdn-learn.adafruit.com/assets/assets/000/133/502/original/lps28dfw.pdf?1730841627)
- [EagleCAD PCB Files on GitHub](https://github.com/adafruit/Adafruit-LPS28-Pressure-Sensor-PCB)
- [Fritzing object in the Adafruit Fritzing Library](https://github.com/adafruit/Fritzing-Library/blob/master/parts/Adafruit%20LPS28%20Pressure%20Sensor.fzpz)

## Schematic and Fab Print
![](https://cdn-learn.adafruit.com/assets/assets/000/133/503/medium800/sensors_schem.png?1730842045)

![](https://cdn-learn.adafruit.com/assets/assets/000/133/504/medium800/sensors_fab.png?1730842051 dimensions are in inches)


## Primary Products

### Adafruit LPS28 (LPS28DFW) Pressure Sensor - STEMMA QT / Qwiic

[Adafruit LPS28 (LPS28DFW) Pressure Sensor - STEMMA QT / Qwiic](https://www.adafruit.com/product/6067)
We stock a large number of barometric pressure sensors, and they all have slight differences: [some are ported](https://www.adafruit.com/product/3965), [some are tiny](https://www.adafruit.com/product/4633), [some are popular...](https://www.adafruit.com/product/2652)

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

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

In 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)

## Related Guides

- [Adafruit STSPIN220 Stepper Motor Driver Breakout Board](https://learn.adafruit.com/adafruit-stspin220-stepper-motor-driver-breakout-board.md)
- [Madison's NeoClock - A PIC + KiCAD + NeoPixel adventure](https://learn.adafruit.com/madisons-neoclock-a-pic-kicad-neopixel-adventure.md)
- [No-Code WipperSnapper Summoning Horn](https://learn.adafruit.com/adafruit-io-wippersnapper-summoning-horn.md)
- [Adafruit MacroPad RP2040](https://learn.adafruit.com/adafruit-macropad-rp2040.md)
- [ANO Directional Navigation and Scroll Wheel Rotary Encoder and Breakout](https://learn.adafruit.com/ano-rotary-encoder.md)
- [Driving TM1814 addressable LEDs](https://learn.adafruit.com/driving-tm1814-addressable-leds.md)
- [Bluetooth Temperature & Humidity Sensor](https://learn.adafruit.com/bluetooth-temperature-and-humidity-sensor.md)
- [NeoPIO: Drive lots of LEDs with Raspberry Pi Pico](https://learn.adafruit.com/neopio-drive-lots-of-leds-with-raspberry-pi-pico.md)
- [AFMotor Library Reference](https://learn.adafruit.com/afmotor-library-reference.md)
- [Quickstart - Raspberry Pi RP2040 with BLE and CircuitPython](https://learn.adafruit.com/quickstart-raspberry-pi-rp2040-with-ble-and-circuitpython.md)
- [Wireless LED Juggling Balls with ESP-NOW](https://learn.adafruit.com/wireless-juggling-balls-esp-now.md)
- [Raspberry Pi I2C Clock Stretching Fixes](https://learn.adafruit.com/raspberry-pi-i2c-clock-stretching-fixes.md)
- [NAU7802 Pet Food Scale](https://learn.adafruit.com/nau7802-pet-food-scale.md)
- [Gemma M0 Vibration Sensor Motion Alarm](https://learn.adafruit.com/motion-alarm.md)
- [Adafruit Pro Trinket LiPoly/LiIon Backpack](https://learn.adafruit.com/adafruit-pro-trinket-lipoly-slash-liion-backpack.md)
