# Adafruit ENS160 MOX Gas Sensor

## Overview

![](https://cdn-learn.adafruit.com/assets/assets/000/123/207/medium800thumb/sensors_5606-05.jpg?1690985443)

\*sniff\* \*sniff\* ... do you smell that? No need to stick your nose into a carton of milk anymore, you can build a digital nose with the ENS160&nbsp;Gas Sensor, a fully integrated MOX gas sensor. This is a very fine air quality sensor from the sensor experts at&nbsp;[ScioSense](https://www.sciosense.com/products/environmental-sensors/digital-multi-gas-sensor/), with I2C interfacing so you don't have to manage the heater and analog reading of a MOX sensor. It combines multiple metal-oxide sensing and heating elements on one chip to provide more detailed air quality signals.

The ENS160 is the replacement for the&nbsp;[popular, but now-discontinued CCS811](https://www.sciosense.com/products/environmental-sensors/ccs811/). It has similar functionality but does require all new driver code so be aware if you are updating from an original design with the CCS811 that some work is required to upgrade.

![](https://cdn-learn.adafruit.com/assets/assets/000/123/208/medium800/sensors_5606-04.jpg?1690985454)

The ENS160 has a 'standard' hot-plate MOX sensor, as well as a small microcontroller that controls power to the plate, reads the analog voltage, and provides an I2C interface to read from.&nbsp;[ScioSense provides an&nbsp;Arduino library with examples of reading the four&nbsp;raw resistance values and also the TVOC and eCO2](https://github.com/adafruit/ENS160_driver)&nbsp;and&nbsp;[a Python/CircuitPython library](https://github.com/adafruit/Adafruit_CircuitPython_ENS160)&nbsp;that can be used with Linux computers like the Raspberry Pi or our CircuitPython boards.

**Please note, this sensor, like all VOC/gas sensors, has variability, and to get precise measurements you will want to calibrate it against known sources!** &nbsp;That said, for general environmental sensors, it will give you a good idea of trends and comparison.

![](https://cdn-learn.adafruit.com/assets/assets/000/123/209/medium800/sensors_5606-02.jpg?1690985466)

Another nice element to this sensor is&nbsp;[the ability to set temperature and humidity compensation for better accuracy](https://github.com/adafruit/Adafruit_CircuitPython_ENS160/blob/main/examples/ens160_advancedtest.py).&nbsp;An external humidity sensor is required and then the RH% is written over I2C to the sensor, so it can better calibrate the MOX sensor reading and reduce humidity/temperature-based variations.

![](https://cdn-learn.adafruit.com/assets/assets/000/123/210/medium800/sensors_5606-03.jpg?1690985477)

Nice sensor right? So we made it easy for you to get right into your next project. The surface-mount sensor is soldered onto a custom-made PCB in the&nbsp;[**STEMMA QT** &nbsp;form factor](https://www.adafruit.com/?q=stemma%20qt%20sensor "STEMMA QT form factor"), making them easy to interface with. The&nbsp;[STEMMA QT connectors](https://learn.adafruit.com/introducing-adafruit-stemma-qt/what-is-stemma-qt)&nbsp;on either side are compatible with the&nbsp;[SparkFun Qwiic](https://www.sparkfun.com/qwiic)&nbsp;I2C connectors. This allows you to make solderless connections between your development board and the ENS160 or to chain it with a wide range of other sensors and accessories using a&nbsp;[**compatible cable**](https://www.adafruit.com/?q=stemma%20qt%20cable).&nbsp;[QT Cable is not included, but we have a variety in the shop](https://www.adafruit.com/?q=stemma+qt+cable&sort=BestMatch)

We’ve of course broken out all the pins to standard headers and added a 3.3V voltage regulator and level shifting to allow you to use it with either 3.3V or 5V systems such as the Arduino Uno, or Feather M4.

# Adafruit ENS160 MOX Gas Sensor

## Pinouts

![](https://cdn-learn.adafruit.com/assets/assets/000/115/339/medium800/sensors_front_back.png?1663952173)

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

## Power Pins

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

## I2C Logic Pins

- **SCL** (labeled **SCK** ) **&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** (labeled **SDI** ) **&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 connectors to dev boards with&nbsp; **STEMMA QT** &nbsp;connectors or to other things with&nbsp;[various associated accessories](https://www.adafruit.com/?q=JST%20SH%204).

## Address Pin

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

On the front of the board is one address pin, labeled&nbsp; **SDO**. Just like the jumper, this pin allows you to change the I2C address to connect multiple boards by connecting it to **GND**.

The default I2C address is&nbsp; **0x53**. The other address option can be calculated by “subtracting” the&nbsp; **Addr** from the base of&nbsp; **0x53**.

**Addr** &nbsp;sets the lowest bit with a value of **1****.&nbsp; **The final address is&nbsp;** 0x53 - Addr **&nbsp;which would be&nbsp;** 0x52**.

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

![](https://cdn-learn.adafruit.com/assets/assets/000/115/372/medium800/sensors_i2c_table.jpg?1664199865)

## SPI Logic Pins

- **SCK** &nbsp;- This is the SPI clock pin, its an input to the gas sensor.
- **SDO** &nbsp;- This is the Serial Data Out pin, for data sent from the gas sensor to your processor.
- **SDI** &nbsp;- This is the Serial Data In pin, for data sent from your processor to the gas sensor.
- **CS** &nbsp;- This is the Chip Select pin, drop it low to start an SPI transaction. Its an input to the gas sensor.

Please note the libraries do not support the SPI interface.

## Interrupt Pin

- **INT** - Interrupt signal output. Can be pulled low on sensor reading thresholds.

## Power LED

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

# Adafruit ENS160 MOX Gas Sensor

## CircuitPython & Python

It's easy to use the&nbsp; **ENS160** &nbsp;with Python or CircuitPython, and the&nbsp;[Adafruit\_CircuitPython\_ENS160](https://github.com/adafruit/Adafruit_CircuitPython_ENS160) module. This module allows you to easily write Python code that allows you to read the **ENS160** gas sensor. You can use this gas 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 an ENS160 to your board exactly as shown below. Here's an example of wiring a Feather M4 to the ENS160 with I2C using one of the handy&nbsp;[**STEMMA QT**](https://learn.adafruit.com/introducing-adafruit-stemma-qt)&nbsp;connectors:

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

![sensors_featherStemma_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/115/349/medium640/sensors_featherStemma_bb.jpg?1663962436)

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

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

![sensors_featherBB_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/115/350/medium640/sensors_featherBB_bb.jpg?1663962455)

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

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

![sensors_piStemma_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/115/351/medium640/sensors_piStemma_bb.jpg?1663962472)

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

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

![sensors_piBreadboard_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/115/352/medium640/sensors_piBreadboard_bb.jpg?1663962483)

## Python Installation of ENS160 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-ens160`

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 ENS160 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\_ens160.mpy**

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

## Python Usage

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

`python3 code.py`

## Example Code
https://github.com/adafruit/Adafruit_CircuitPython_ENS160/blob/main/examples/ens160_simpletest.py

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

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

![](https://cdn-learn.adafruit.com/assets/assets/000/115/370/medium800/sensors_cpREPL.jpg?1664198659)

In the example, the gas sensor is&nbsp;instantiated on I2C. Then,&nbsp;in the loop, `AQI`, `TVOC` and `eCO2` readings are printed to the REPL every second.

# Adafruit ENS160 MOX Gas Sensor

## Python Docs

# Adafruit ENS160 MOX Gas Sensor

## Arduino

Using the ENS160 gas sensor&nbsp;with Arduino involves wiring up the sensor to your Arduino-compatible microcontroller, installing the&nbsp;[ENS160](https://github.com/adafruit/ENS160_driver)&nbsp;library and running the provided example code.

## Wiring

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

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

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

![sensors_metroStemma_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/115/353/medium640/sensors_metroStemma_bb.jpg?1663962503)

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

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

![sensors_metroBB_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/115/354/medium640/sensors_metroBB_bb.jpg?1663962519)

## Library Installation

You can install the **ENS160 - Adafruit Fork** &nbsp;library for Arduino using the Library Manager in the Arduino IDE.

![](https://cdn-learn.adafruit.com/assets/assets/000/134/339/medium800/sensors_Arduino_Open_Library_Manager.png?1736171357)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/134/340/medium800/sensors_Screenshot_2025-01-06_084533.png?1736171412)

Info: No additional libraries are required.

## Example Code
https://github.com/adafruit/Adafruit_Learning_System_Guides/blob/main/ENS161_Examples/ENS161_Arduino_Example/ENS161_Arduino_Example.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 I2C ENS160 gas sensor. Then, sensor readings for AQI, TVOC, eCO2 and the raw resistance values of the four hot plates in the sensor are printed to the Serial Monitor every second.

![](https://cdn-learn.adafruit.com/assets/assets/000/115/371/medium800/sensors_arduinoSerial.jpg?1664198991)

# Adafruit ENS160 MOX Gas Sensor

## Arduino Docs

# Adafruit ENS160 MOX Gas Sensor

## WipperSnapper

![](https://cdn-learn.adafruit.com/assets/assets/000/124/683/medium800/sensors_01_DeviceList.png?1695235508)

## 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 **ENS160** to your board exactly as follows. Here is an example of the **ENS160** 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)**

![sensors_featherV2_ENS160_bb.png](https://cdn-learn.adafruit.com/assets/assets/000/124/685/medium640/sensors_featherV2_ENS160_bb.png?1695235585)

![sensors_featherV2_ENS160_Breadboard_bb.png](https://cdn-learn.adafruit.com/assets/assets/000/124/686/medium640/sensors_featherV2_ENS160_Breadboard_bb.png?1695235606)

## 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/124/684/medium800/sensors_02_DeviceSelection.png?1695235518)

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.

![sensors_04_LatestVersion.png](https://cdn-learn.adafruit.com/assets/assets/000/124/687/medium640/sensors_04_LatestVersion.png?1695235672)

![sensors_04_UpdateRequired.png](https://cdn-learn.adafruit.com/assets/assets/000/124/688/medium640/sensors_04_UpdateRequired.png?1695235685)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/124/693/medium800/sensors_I2C_0x53.png?1695235962)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/128/251/medium800/sensors_DL7jsbg2FN.png?1709162214)

On the component configuration page, the **ENS160**'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 **ENS160** 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/124/698/medium800/sensors_Screenshot_2023-09-20_200843.png?1695291647)

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/124/699/medium800/sensors_feeds.png?1695291667)

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/124/700/medium800/sensors_feed_arrow.png?1695291679)

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/124/701/medium800/sensors_feed_graph.png?1695291696)

# Adafruit ENS160 MOX Gas Sensor

## Downloads

## Files

- [ENS160 Datasheet](https://cdn-learn.adafruit.com/assets/assets/000/115/331/original/SC_001224_DS_1_ENS160_Datasheet_Rev_0_95-2258311.pdf?1663951433)
- [EagleCAD PCB files on GitHub](https://github.com/adafruit/Adafruit-ENS160-PCB)
- [Fritzing object in the Adafruit Fritzing Library](https://github.com/adafruit/Fritzing-Library/blob/master/parts/Adafruit%20ENS160%20MOX%20Gas%20Sensor%20-%20Sciosense%20CCS811%20Upgrade%20-%20STEMMA%20QT.fzpz)
- [3D models on GitHub](https://github.com/adafruit/Adafruit_CAD_Parts/tree/main/5606%20ENS160%20Sensor)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/115/336/medium800/sensors_fab.png?1663951743)

![](https://cdn-learn.adafruit.com/assets/assets/000/117/035/medium800/sensors_PCB-Component.jpg?1670880282)


## Primary Products

### Adafruit ENS160 MOX Gas Sensor - Sciosense CCS811 Upgrade

[Adafruit ENS160 MOX Gas Sensor - Sciosense CCS811 Upgrade](https://www.adafruit.com/product/5606)
\*sniff\* \*sniff\* ... do you smell that? No need to stick your nose into a carton of milk anymore, you can build a digital nose with the ENS160&nbsp;Gas Sensor, a fully integrated MOX gas sensor. This is a very fine air quality sensor from the sensor experts at <a...></a...>

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

In Stock
[Buy Now](https://www.adafruit.com/product/4210)
[Related Guides to the Product](https://learn.adafruit.com/products/4210/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 STEMMA Analog SPDT Switch](https://learn.adafruit.com/adafruit-stemma-analog-spdt-switch.md)
- [Prop-Maker Feather Talking Adabot Clock](https://learn.adafruit.com/prop-maker-feather-talking-adabot-clock.md)
- [Asteroid Tracker](https://learn.adafruit.com/asteroid-tracker.md)
- [Adafruit Metro RP2350](https://learn.adafruit.com/adafruit-metro-rp2350.md)
- [MatrixPortal CircuitPython Animated Message Board](https://learn.adafruit.com/matrixportal-circuitpython-animated-message-board.md)
- [Adafruit Qwiik/STEMMA QT 5 Port Hub](https://learn.adafruit.com/qwiik-stemma-qt-5-port-hub.md)
- [LED Campfire](https://learn.adafruit.com/led-campfire.md)
- [Blurry Analog Clock](https://learn.adafruit.com/blurry-analog-clock.md)
- [Adafruit ATWINC1500 WiFi Breakout](https://learn.adafruit.com/adafruit-atwinc1500-wifi-module-breakout.md)
- [Adafruit STEMMA Audio Amp](https://learn.adafruit.com/stemma-audio-amp.md)
- [Multi-Sensor IoT Environmental Sensor Box With CircuitPython](https://learn.adafruit.com/remote-iot-environmental-sensor.md)
- [USB NeXT Keyboard with an Arduino Micro](https://learn.adafruit.com/usb-next-keyboard-with-arduino-micro.md)
- [Adafruit nRF52 Pro Feather with Mynewt](https://learn.adafruit.com/adafruit-nrf52-pro-feather.md)
- [Adafruit ICM20649 Wide-Range 6-DoF IMU Accelerometer and Gyro](https://learn.adafruit.com/adafruit-icm20649-wide-range-6-dof-imu-accelerometer-and-gyro.md)
