# Adafruit TE MS8607 PHT Sensor

## Overview

![](https://cdn-learn.adafruit.com/assets/assets/000/094/206/medium800/adafruit_products_guide_4716_iso_ORIG_2020_08.png?1597791242)

Because of their many applications, Pressure, Temperature, and Humidity sensors (PHT sensors) are a common offering from semiconductor companies. The MS8607 PHT sensor from TE Connectivity&nbsp; does an admirable job of measuring a wide range of all three environmental conditions. Each and every MS8607 sensor is calibrated at the factory and the calibration constants stored in the sensor itself. This sensor is a one stop shop for all your common weather and environmental related metrics. Just add a MS8607 and you’ll be ready to finish your enclosure and retire as a [Dubia Cockroach Farmer](https://dubiaroachdepot.com/guidance/breeding-dubia-roaches#thermometer)

![](https://cdn-learn.adafruit.com/assets/assets/000/094/207/medium800/adafruit_products_guide4716_kit_ORIG_2020_08.png?1597791401)

The MS8607 provides the previously mentioned factory-calibrated pressure, temperature, and humidity data are recorded as **16-bit** values and made available over an I2C bus for simple, two wire (plus power and ground!) connection to your microcontroller. Pressure measurements accuracy comes in at **+/- 2 hPa** , relative humidity at **+/- 3% rH** , and temperature is good to within **1 degree** Celsius. One standout feature of the MS8607 is it’s very respectable low power consumption at **as low as 0.78 µA !** That’s hardly anything! Along with carefully managed microcontroller power usage, getting good battery life out of your sensing project will be that much easier.

![](https://cdn-learn.adafruit.com/assets/assets/000/094/208/medium800/adafruit_products_guide_4716_quarter_ORIG_2020_08.png?1597791498)

While the MS8607 sensor itself is rotund by comparison to some of the other sensors we stock, it’s still a surface mount part so we’ve placed it on a breakout board, nestled amongst a handful components that take care of level shifting and power regulation. This lets you use it with either 5V or 3.3V devices, so no matter if you have an Arduino, Metro, Feather, or Raspberry Pi, you’ll be able to interface with the MS8607 easily. The breakout has the expected header for power and I2C connections, however if you prefer to or can’t solder, you can use the [SparkFun Qwiic](https://www.sparkfun.com/qwiic) compatible [STEMMA QT](https://learn.adafruit.com/introducing-adafruit-stemma-qt) connectors to wire up to your favorite micro with a&nbsp; [plug-and-play cable](https://www.adafruit.com/?q=stemma%20qt%20cable). Even if like me you don’t mind soldering, STEMMA QT connectors are super convenient for wiring up projects quickly.

![](https://cdn-learn.adafruit.com/assets/assets/000/094/209/medium800/adafruit_products_guide_4716_detail_ORIG_2020_08.png?1597791540)

Lastly but certainly not least, our wiring guides, libraries, and example code for Arduino, Python, and CircuitPython will make it super easy to go from zero to hero!

# Adafruit TE MS8607 PHT Sensor

## Pinouts

![](https://cdn-learn.adafruit.com/assets/assets/000/094/210/medium800/adafruit_products_guide_4716_top_ORIG_2020_08-2.png?1597791613)

 **Power Pins**

- **VIN** - this is the power pin. Since the sensor chip uses 3 VDC, we have included a voltage regulator on board that will take 3-5VDC and safely convert it down. To power the board, give it the same power as the logic level of your microcontroller - e.g. for a 5V microcontroller like Arduino, use 5V
- **3Vo** &nbsp;- 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 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)

# Adafruit TE MS8607 PHT Sensor

## Arduino

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

## **I2C Wiring**

Use this wiring if you want to connect via I2C interface. The MS8607 is actually two devices in the same package so the I2C address for the pressure sensor is **0x76** and the address for the humidity sensor is **0x40.**

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**

![adafruit_products_image.png](https://cdn-learn.adafruit.com/assets/assets/000/094/211/medium640/adafruit_products_image.png?1597792147)

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**

![adafruit_products_image.png](https://cdn-learn.adafruit.com/assets/assets/000/094/073/medium640/adafruit_products_image.png?1597424475)

## **Library Installation**

You can install the [**Adafruit MS8607**](https://github.com/adafruit/Adafruit_MS8607)[**&nbsp;**](ARDUINO_LIBRARY_REPO) **l** ibrary for Arduino using the Library Manager in the Arduino IDE.

![](https://cdn-learn.adafruit.com/assets/assets/000/093/897/medium800/adafruit_products_a_ARDUINO_-_library_manager_menu.png?1596767017)

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

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

![](https://cdn-learn.adafruit.com/assets/assets/000/093/898/medium800/adafruit_products_aa_ARDUINO-_BusIO_Lib_Manager.png?1596767034)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/093/899/medium800/adafruit_products_aaa_ARDUINO_-Unified_Sensor_LibMGR.png?1596767090)

## **Load Example**

Open up&nbsp; **File -\> Examples -\> Adafruit MS8607 -\> sensor\_test**

After opening the demo file, upload to your Arduino wired up to the sensor. Once you upload the code, you will see the **pressure, temperature, and humidity** values being printed when you open the Serial Monitor ( **Tools-\>Serial Monitor** ) at **115200 baud** , similar to this:

## **Example Code**
https://github.com/adafruit/Adafruit_MS8607/blob/master/examples/sensor_test/sensor_test.ino

![](https://cdn-learn.adafruit.com/assets/assets/000/093/896/medium800/adafruit_products_image.png?1596766986)

# Adafruit TE MS8607 PHT Sensor

## Arduino Docs

# Adafruit TE MS8607 PHT Sensor

## Python & CircuitPython

It's easy to use the **MS8607** with Python or CircuitPython, and the [Adafruit CircuitPython MS8607](https://github.com/adafruit/Adafruit_CircuitPython_MS8607) module. This module allows you to easily write Python code that reads pressure, humidity and temperature from the **MS8607** 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 MS8607 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)**

![adafruit_products_image.png](https://cdn-learn.adafruit.com/assets/assets/000/094/075/medium640/adafruit_products_image.png?1597424744)

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

![adafruit_products_image.png](https://cdn-learn.adafruit.com/assets/assets/000/094/076/medium640/adafruit_products_image.png?1597425005)

## **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)**

![adafruit_products_image.png](https://cdn-learn.adafruit.com/assets/assets/000/094/079/medium640/adafruit_products_image.png?1597425204)

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

![adafruit_products_image.png](https://cdn-learn.adafruit.com/assets/assets/000/094/081/medium640/adafruit_products_image.png?1597425586)

## **CircuitPython Installation of MS8607 Library**

You'll need to install the [Adafruit CircuitPython MS8607](https://github.com/adafruit/Adafruit_CircuitPython_MS8607) library on your CircuitPython board.

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

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

Before continuing make sure your board's **lib** folder or root filesystem has the **adafruit\_ms8607.mpy** file **and adafruit\_bus\_device** folder **&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 MS8607 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-ms8607`

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

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

```python
import board
import busio
from adafruit_ms8607 import MS8607

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

![](https://cdn-learn.adafruit.com/assets/assets/000/093/900/medium800/adafruit_products_image.png?1596767866)

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

- **relative\_humidity** - The relative humidity measured by the sensor, this is a value from 0-100%.
- **temperature&nbsp;** - The temperature measured by the sensor, a value in degrees Celsius.
- **pressure** - The pressure measured by the sensor, a value in hectopascals (hPa)

```python
print("Pressure: %.2f hPa" % sensor.pressure)
print("Temperature: %.2f C" % sensor.temperature)
print("Humidity: %.2f %% rH" % sensor.relative_humidity)
```

![](https://cdn-learn.adafruit.com/assets/assets/000/093/902/medium800/adafruit_products_image.png?1596767969)

## **Example Code**
https://github.com/adafruit/Adafruit_CircuitPython_MS8607/blob/main/examples/ms8607_simpletest.py

# Adafruit TE MS8607 PHT Sensor

## Python Docs

# Adafruit TE MS8607 PHT Sensor

## WipperSnapper

![](https://cdn-learn.adafruit.com/assets/assets/000/124/130/medium800/adafruit_products_3sNWmMIA2l.png?1693407378)

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

![adafruit_products_featherV2_MS8607_bb.png](https://cdn-learn.adafruit.com/assets/assets/000/124/133/medium640/adafruit_products_featherV2_MS8607_bb.png?1693408003)

![adafruit_products_featherV2_MS8607_Breadboard_bb.png](https://cdn-learn.adafruit.com/assets/assets/000/124/134/medium640/adafruit_products_featherV2_MS8607_Breadboard_bb.png?1693408025)

## 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/135/medium800/adafruit_products_8d2qSSHZ2S_arrow.png?1693408063)

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.

![adafruit_products_CroppedVersion.png](https://cdn-learn.adafruit.com/assets/assets/000/124/136/medium640/adafruit_products_CroppedVersion.png?1693408101)

![adafruit_products_DeviceListPage_UpdateRequired.png](https://cdn-learn.adafruit.com/assets/assets/000/124/137/medium640/adafruit_products_DeviceListPage_UpdateRequired.png?1693408119)

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)

The MS8607 is actually two devices in the same package so the I2C address for the pressure sensor is&nbsp; **0x76&nbsp;** and the address for the humidity sensor is&nbsp; **0x40.**

You should see the MS8607's I2C addresses of `0x40` and `0x76` pop-up in the I2C scan list.

![](https://cdn-learn.adafruit.com/assets/assets/000/124/138/medium800/adafruit_products_Screenshot_2023-08-30_155333.png?1693408263)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/127/946/medium800/adafruit_products_kqkCqYcRdh.png?1708698361)

On the component configuration page, as the MS8607 is actually two devices in the same package, the address for the humidity sensor **&nbsp;** should be listed along with the sensor's settings.

Warning: 

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 MS8607 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/141/medium800/adafruit_products_Screenshot_2023-08-30_161759.png?1693408695)

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/142/medium800/adafruit_products_zrDEJOgV03.png?1693408795)

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/143/medium800/adafruit_products_Xr7qrXsG46_arrow.png?1693408865)

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/145/medium800/adafruit_products_Screenshot_2023-08-30_162800.png?1693409294)

# Adafruit TE MS8607 PHT Sensor

## Downloads

## **Files**

- [MS8607 Datasheet](https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=MS8607-02BA01&DocType=DS&DocLang=English)
- [EagleCAD files on GitHub](https://github.com/adafruit/Adafruit-MS8607-PCB)
- [Fritzing object in the Adafruit Fritzing Library](https://github.com/adafruit/Fritzing-Library/blob/master/parts/Adafruit%20MS8607%20PHT%20Sensor.fzpz)

## **Schematic**
![](https://cdn-learn.adafruit.com/assets/assets/000/093/893/medium800/adafruit_products_image.png?1596763637)

## **Fab Print**
![](https://cdn-learn.adafruit.com/assets/assets/000/093/894/medium800/adafruit_products_image.png?1596763674)


## Primary Products

### Adafruit MS8607 Pressure Humidity Temperature PHT Sensor

[Adafruit MS8607 Pressure Humidity Temperature PHT Sensor](https://www.adafruit.com/product/4716)
Because of their many applications, Pressure, Temperature, and Humidity sensors (PHT sensors) are a common offering from semiconductor companies. The MS8607 PHT sensor from TE Connectivity does an admirable job of measuring a wide range of all three environmental conditions. Each and every...

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

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

## Related Guides

- [Creating and Maintaining Your AdaBox Subscription](https://learn.adafruit.com/creating-and-maintaining-your-adabox-subscription.md)
- [Adafruit 9-DOF Orientation IMU Fusion Breakout - BNO085](https://learn.adafruit.com/adafruit-9-dof-orientation-imu-fusion-breakout-bno085.md)
- [DIY IoT Doorbell Camera with MEMENTO](https://learn.adafruit.com/diy-iot-doorbell-camera-with-memento.md)
- [Ice Tube Clock Kit](https://learn.adafruit.com/ice-tube-clock-kit.md)
- [Adafruit OV5640 Camera Breakouts](https://learn.adafruit.com/adafruit-ov5640-camera-breakout.md)
- [Adafruit SPI FLASH Breakouts](https://learn.adafruit.com/adafruit-spi-flash-breakouts.md)
- [Adafruit Metro M7 with microSD](https://learn.adafruit.com/adafruit-metro-m7-microsd.md)
- [No-Code IoT Humidity and Temperature Sensor with Adafruit IO WipperSnapper](https://learn.adafruit.com/no-code-humidity-and-temp-tracker.md)
- [Adafruit BrainCraft HAT - Easy Machine Learning for Raspberry Pi](https://learn.adafruit.com/adafruit-braincraft-hat-easy-machine-learning-for-raspberry-pi.md)
- [PicoDVI Adafruit IO Feed Dashboard](https://learn.adafruit.com/dvi-io.md)
- [DIY Trinkey No-Soldering USB Air Quality Monitor](https://learn.adafruit.com/diy-trinkey-no-solder-air-quality-monitor.md)
- [Guitar Hero MIDI Controller](https://learn.adafruit.com/guitar-hero-midi-controller.md)
- [Adafruit DotStar FeatherWing](https://learn.adafruit.com/adafruit-dotstar-featherwing-adafruit.md)
- [Adafruit Swirly Aluminum Mounting Grid for 0.1" Spaced PCBs](https://learn.adafruit.com/swirly-grid.md)
- [Adafruit SHT31-D Temperature & Humidity Sensor Breakout](https://learn.adafruit.com/adafruit-sht31-d-temperature-and-humidity-sensor-breakout.md)
