# Adafruit VCNL4200 Long Distance IR Proximity and Light Sensor

## Overview

![](https://cdn-learn.adafruit.com/assets/assets/000/133/284/medium800thumb/adafruit_products_6064-05.jpg?1729786888)

We've all been there. That thing is _close_ but _how close?_ When you need to measure a meter-or-so distance with reasonable accuracy, the **VCNL4200 Long Distance Proximity Sensor** from Vishay can do that for you. It's excellent for robotic or motion-detection situations. And if perchance you also needed to measure the amount of light at the same time, you're in luck! The VCNL4200 can do that too, with it's built in ambient light sensor (ALS).

![](https://cdn-learn.adafruit.com/assets/assets/000/133/283/medium800/adafruit_products_6064-04.jpg?1729786686)

The VCNL4200 is a powerful two-in-one sensor, with a proximity sensor that works from 0 to 1.5m (59 inches) and light sensor with range of 0.003 to 1570 lux. It's the longest-range IR distance sensor we've seen other than the [Sharp Analog distance sensors](https://www.adafruit.com/product/1031), and at a great price with I2C interface.

Note that while the chip itself is specced for 1.5 meter distance measurements, that depends a bit on optimal lighting situations and high power configuration. We've found that 50-100cm is a good range to expect, and you won't get a lot of accuracy/precision as the detection object gets farther away. We normally suggest&nbsp;[ToF sensors](https://www.adafruit.com/search?q=time+of+flight+distance+sensor) for long precision measurements, but sometimes you want the low cost and simplicity of infrared. Also, you get a 'free' light sensor which ToF sensors don't contain.

![](https://cdn-learn.adafruit.com/assets/assets/000/133/285/medium800/adafruit_products_6064-02.jpg?1729786951)

"OK, _finally_ I can get started on my proximity and light sensing project, but _how do I use it?"_ you say. To make life easier so you can focus on your important work, we've taken the VCNL4200 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 VCNL4200 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)

![](https://cdn-learn.adafruit.com/assets/assets/000/133/286/medium800/adafruit_products_6064-03.jpg?1729787037)

To give you some ability to tune your measurements for your situation, the VCNL4200 lets you adjust the integration time for both light sensing and proximity, IR LED power, duty cycle, multi-pulse, and sunlight-immunity. There's also interrupt output support for light or proximity measurement thresholds.

# Adafruit VCNL4200 Long Distance IR Proximity and Light Sensor

## Pinouts

![](https://cdn-learn.adafruit.com/assets/assets/000/133/299/medium800/adafruit_products_double.jpg?1729869224)

Default I2C address is **0x51**.

## 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. It can be powered between from 3.3V to 5V.
- **3Vo** - this is the 3.3V output from the onboard regulator.
- **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 development 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. You can set up the sensor to pull this low when certain conditions are met such as proximity or lux level thresholds being crossed.

## Power LED and Jumper

- **Power LED** - on the left side of the board, above the STEMMA QT connector, is the power LED, labeled **on**. It is a green LED.
- **LED jumper** - on the back of the board is a jumper for the power LED. It is labeled **LED** on the board silk. If you want to disable the power LED, cut the trace on this jumper.

# Adafruit VCNL4200 Long Distance IR Proximity and Light Sensor

## CircuitPython and Python

It's easy to use the **VCNL4200** with Python or CircuitPython, and the [Adafruit\_CircuitPython\_VCNL4200](https://github.com/adafruit/Adafruit_CircuitPython_VCNL4200) module. This module allows you to easily write Python code to read proximity and lux 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)**

![adafruit_products_feather_stemma_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/133/372/medium640/adafruit_products_feather_stemma_bb.jpg?1730225367)

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

![adafruit_products_feather_bb_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/133/373/medium640/adafruit_products_feather_bb_bb.jpg?1730225587)

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

![adafruit_products_piStemma_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/133/374/medium640/adafruit_products_piStemma_bb.jpg?1730225612)

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

![adafruit_products_piBB_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/133/375/medium640/adafruit_products_piBB_bb.jpg?1730225632)

## Python Installation of VCNL4200 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-vcnl4200`

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\_VCNL4200** 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\_vcnl4200.mpy**

![CIRCUITPY](https://adafruit.github.io/Adafruit_CircuitPython_Bundle/vcnl4200_vcnl4200_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_VCNL4200/blob/main/examples/vcnl4200_simpletest.py

First, the sensor is instantiated over I2C. Then, in the loop, the proximity and lux readings are printed to the serial monitor. You'll see these readings change depending on the proximity of objects in front of the sensor and the amount of ambient light that the sensor is exposed to.

# Adafruit VCNL4200 Long Distance IR Proximity and Light Sensor

## Python Docs

# Adafruit VCNL4200 Long Distance IR Proximity and Light Sensor

## Arduino

Using the VCNL4200 breakout with Arduino involves wiring up the breakout to your Arduino-compatible microcontroller, installing the [Adafruit\_VCNL4200](https://github.com/adafruit/Adafruit_VCNL4200) 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)**

![adafruit_products_metro_stemma_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/133/370/medium640/adafruit_products_metro_stemma_bb.jpg?1730225293)

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

![adafruit_products_metro_bb_bb.jpg](https://cdn-learn.adafruit.com/assets/assets/000/133/371/medium640/adafruit_products_metro_bb_bb.jpg?1730225339)

## Library Installation

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

![](https://cdn-learn.adafruit.com/assets/assets/000/133/367/medium800/adafruit_products_Arduino_Open_Library_Manager.png?1730216926)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/133/368/medium800/adafruit_products_Screenshot_2024-10-29_115045.png?1730217243)

If asked about dependencies, click "Install all".

![](https://cdn-learn.adafruit.com/assets/assets/000/133/369/medium800/adafruit_products_Screenshot_2024-10-29_115055.png?1730217287)

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!

## Full Test Example
https://github.com/adafruit/Adafruit_Learning_System_Guides/blob/main/Arduino_VCNL4200_simpletest/Arduino_VCNL4200_simpletest.ino

![](https://cdn-learn.adafruit.com/assets/assets/000/133/658/medium800/adafruit_products_Screenshot_2024-11-18_084204.png?1731937352)

Upload the sketch to your board and open up the Serial Monitor ( **Tools -\> Serial Monitor** ) at 115200 baud. You'll see the VCNL4200 recognized over I2C. Then, proximity, ambient light and white light readings will be printed to the Serial Monitor. You'll see these values changes as you affect your proximity to the sensor and the ambient light around the sensor.

# Adafruit VCNL4200 Long Distance IR Proximity and Light Sensor

## Arduino Docs

# Adafruit VCNL4200 Long Distance IR Proximity and Light Sensor

## WipperSnapper

![](https://cdn-learn.adafruit.com/assets/assets/000/134/239/medium800/adafruit_products_Screenshot_2024-12-20_at_16.37.42.png?1734712696)

## 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 VCNL4200 to your board exactly as follows. Here is an example of the VCNL4200 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_VCNL4200_STEMMAQT_bb.png](https://cdn-learn.adafruit.com/assets/assets/000/134/243/medium640/adafruit_products_featherV2_VCNL4200_STEMMAQT_bb.png?1734713202)

![adafruit_products_featherV2_VCNL4200_Breadboard_bb.png](https://cdn-learn.adafruit.com/assets/assets/000/134/244/medium640/adafruit_products_featherV2_VCNL4200_Breadboard_bb.png?1734713238)

## 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/134/245/medium800/adafruit_products_LHdGh1WqDy.png?1734715134)

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_cPIjnUacpM.png](https://cdn-learn.adafruit.com/assets/assets/000/134/246/medium640/adafruit_products_cPIjnUacpM.png?1734715286)

![adafruit_products_04_UpdateRequired.png](https://cdn-learn.adafruit.com/assets/assets/000/134/247/medium640/adafruit_products_04_UpdateRequired.png?1734715312)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/134/248/medium800/adafruit_products_BjSyLCeqz9.png?1734715456)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/134/249/medium800/adafruit_products_DtE5WcXc2X.png?1734715728)

On the component configuration page, the VCNL4200'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 VCNL4200 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/134/250/medium800/adafruit_products_ZlqCRvj1dH.png?1734715822)

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/134/252/medium800/adafruit_products_N8mmcvJsDJ.png?1734717578)

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/134/253/medium800/adafruit_products_2DfTQZNlIv.png?1734717638)

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/134/255/medium800/adafruit_products_pv2YljJwsR.png?1734717780)

# Adafruit VCNL4200 Long Distance IR Proximity and Light Sensor

## Downloads

## Files

- [VCNL4200 Datasheet](https://cdn-learn.adafruit.com/assets/assets/000/133/287/original/vcnl4200.pdf?1729793793)
- [EagleCAD PCB Files on GitHub](https://github.com/adafruit/Adafruit-VCNL4200-Breakout-PCB)
- [3D models on GitHub](https://github.com/adafruit/Adafruit_CAD_Parts/tree/main/6064%20VCNL4200%20Breakout)
- [Fritzing object in the Adafruit Fritzing Library](https://github.com/adafruit/Fritzing-Library/blob/master/parts/Adafruit%20VCNL4200%20Long%20Distance%20IR%20Proximity%20and%20Light%20Sensor%20-%20STEMMA%20QT.fzpz)

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

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

![](https://cdn-learn.adafruit.com/assets/assets/000/136/349/medium800/adafruit_products_6064_VCNL4200_Breakout.jpg?1744984279 )


## Primary Products

### Adafruit VCNL4200 Long Distance IR Proximity and Light Sensor

[Adafruit VCNL4200 Long Distance IR Proximity and Light Sensor](https://www.adafruit.com/product/6064)
We've all been there. That thing is&nbsp;_close_&nbsp;but&nbsp;_how close?_&nbsp;When you need to measure a meter-or-so distance with reasonable accuracy, the **VCNL4200 Long Distance Proximity Sensor** from Vishay can do that for you. It's excellent for...

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

## Featured Products

### STEMMA QT / Qwiic JST SH 4-pin Cable - 100mm Long

[STEMMA QT / Qwiic JST SH 4-pin Cable - 100mm Long](https://www.adafruit.com/product/4210)
This 4-wire cable is a little over 100mm / 4" long and fitted with JST-SH female 4-pin connectors on both ends. Compared with the chunkier JST-PH these are 1mm pitch instead of 2mm, but still have a nice latching feel, while being easy to insert and remove.

<a...></a...>

Out of Stock
[Buy Now](https://www.adafruit.com/product/4210)
[Related Guides to the Product](https://learn.adafruit.com/products/4210/guides)
### STEMMA QT / Qwiic JST SH 4-Pin Cable - 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

- [Glowing Hair Flowers with n00ds](https://learn.adafruit.com/glowing-hair-flowers-with-n00ds.md)
- [Weather Wise Wifi Umbrella Stand](https://learn.adafruit.com/weather-wise-wifi-umbrella-stand.md)
- [Creating and sharing a CircuitPython library](https://learn.adafruit.com/creating-and-sharing-a-circuitpython-library.md)
- [CircuitPython Servo Tester](https://learn.adafruit.com/circuitpython-servo-tester.md)
- [Arduino "Hunt The Wumpus"](https://learn.adafruit.com/arduino-hunt-the-wumpus.md)
- [MagTag Cat Fed Clock](https://learn.adafruit.com/magtag-cat-feeder-clock.md)
- [Pico W YBox3](https://learn.adafruit.com/pico-w-ybox3.md)
- [DOOM Keeb](https://learn.adafruit.com/doom-keeb.md)
- [OpenAI Image Descriptors with MEMENTO](https://learn.adafruit.com/openai-image-descriptors-with-memento.md)
- [Remote controlled door lock using a fingerprint sensor & Adafruit IO](https://learn.adafruit.com/remote-controlled-door-lock-using-a-fingerprint-sensor-and-adafruit-io.md)
- [CircuitPython OctoPrint Controller and Monitor](https://learn.adafruit.com/circuitpython-octoprint-controller-and-monitor.md)
- [Digital Clock with CircuitPython](https://learn.adafruit.com/digital-clock-with-circuitpython.md)
- [Adafruit Metro RP2350](https://learn.adafruit.com/adafruit-metro-rp2350.md)
- [Adafruit VL53L4CX Time of Flight Distance Sensor](https://learn.adafruit.com/adafruit-vl53l4cx-time-of-flight-distance-sensor.md)
- [Adafruit Pixel Shifter](https://learn.adafruit.com/adafruit-pixel-shifter.md)
