# Adafruit VCNL4020 Proximity and Light Sensor

## Overview

![](https://cdn-learn.adafruit.com/assets/assets/000/124/950/medium800thumb/adafruit_products_5810-05_1.jpg?1696619221)

The VCNL4020 is a handy two-in-one sensor, with a proximity sensor that works from 0 to 200mm (about 7.5 inches) and a light sensor with a range of 0.26 to 16,000 lux.

![](https://cdn-learn.adafruit.com/assets/assets/000/124/951/medium800/adafruit_products_5810-01.jpg?1696619263)

We've all been there. That thing is _close_ but _how close?_ When you need to measure a small distance with reasonable accuracy, such as the rough height of a particularly calm bumble bee, the VCNL4020 Proximity Sensor from Vishay can do that for you. If perchance you also needed to measure the amount of light at the same time, perhaps to let the bee to know if it's time for bed, you're in luck! The VCNL4020 can do that too (bumble bee not included, we tried putting it in the anti-static bag but it started buzzing in a threatening manner).

![](https://cdn-learn.adafruit.com/assets/assets/000/124/952/medium800/adafruit_products_5810-02.jpg?1696619337)

[This sensor is similar to the VCNL4040](https://www.adafruit.com/product/4161) but with a wider light sensor range, up to 16000 lux!

As with all of our new I2C sensors, we've taken the VCNL4020 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. 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 Arduino drivers to easily interface with the VCNL4020 and make approximate approximations of proximity in no time!

![](https://cdn-learn.adafruit.com/assets/assets/000/124/953/medium800/adafruit_products_5810-03.jpg?1696619343)

The VCNL4020 comes with a variety of knobs you can tweak such as how many samples per second (a.k.a the integration time between measurements) - more samples per second means faster results but not as good at measuring low level light. With 16-bit light level reports, and 0.25 lux per bit, you can measure from 0.25 to 16,000 lux! And various averaging filters can do your low-pass filtering for you so you get less spiky results. However, there are no other sensitivity/integration time controls.

# Adafruit VCNL4020 Proximity and Light Sensor

## Pinouts

![](https://cdn-learn.adafruit.com/assets/assets/000/124/954/medium800/adafruit_products_double.jpg?1696619490)

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

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

## Other Pins

- **INT** - This is the interrupt pin. You can setup the VCNL4020 to pull this low when certain conditions are met such as proximity or lux level thresholds being crossed.
- **CATH** - At the top of the board, to the right of the VCNL4020 label on the silk, is the IR LED cathode pin. The IR LED cathode needs no external connection since the necessary connections to the driver are done internally.

## 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 is located on the front of the board, to the right of the power LED. Cut the trace on this jumper to cut power to the "on" LED.

# Adafruit VCNL4020 Proximity and Light Sensor

## CircuitPython and Python

It's easy to use the **VCNL4020** with Python or CircuitPython, and the [Adafruit\_CircuitPython\_VCNL4020](https://github.com/adafruit/Adafruit_CircuitPython_VCNL4020) 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/125/060/medium640/adafruit_products_feather_stemma_bb.jpg?1696980123)

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/125/061/medium640/adafruit_products_feather_bb_bb.jpg?1696980142)

## 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/125/062/medium640/adafruit_products_piStemma_bb.jpg?1696980167)

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/125/063/medium640/adafruit_products_piBB_bb.jpg?1696980183)

## Python Installation of VCNL4020 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-vcnl4020`

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\_VCNL4020** 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\_vcnl4020.mpy**

![](https://cdn-learn.adafruit.com/assets/assets/000/125/856/medium800/adafruit_products_vcnl4040_vcnl4040_simpletest.py.png?1699276800)

## 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_VCNL4020/blob/main/examples/vcnl4020_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.

![](https://cdn-learn.adafruit.com/assets/assets/000/125/768/medium800/adafruit_products_cp_serial.png?1698861242)

# Adafruit VCNL4020 Proximity and Light Sensor

## Python Docs

# Adafruit VCNL4020 Proximity and Light Sensor

## Arduino

Using the VCNL4020 breakout with Arduino involves wiring up the breakout to your Arduino-compatible microcontroller, installing the [Adafruit\_VCNL4020](https://github.com/adafruit/Adafruit_VCNL4020) 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/125/058/medium640/adafruit_products_metro_stemma_bb.jpg?1696980060)

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/125/059/medium640/adafruit_products_metro_bb_bb.jpg?1696980074)

## Library Installation

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

![](https://cdn-learn.adafruit.com/assets/assets/000/125/040/medium800/adafruit_products_Arduino_Open_Library_Manager.png?1696948415)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/125/067/medium800/adafruit_products_vcnl4020_lib.jpg?1697033243)

If asked about dependencies, click "Install all".

![](https://cdn-learn.adafruit.com/assets/assets/000/125/068/medium800/adafruit_products_vcnl_depends.jpg?1697033250)

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

Warning: 

## Full Test Example
https://github.com/adafruit/Adafruit_VCNL4020/blob/main/examples/vcnl4020_fulltest/vcnl4020_fulltest.ino

Upload the sketch to your board and open up the Serial Monitor ( **Tools -\> Serial Monitor** ) at 115200 baud. You'll see the VCNL4020 recognized over I2C. Then, proximity and ambient 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.

![](https://cdn-learn.adafruit.com/assets/assets/000/125/041/medium800/adafruit_products_ard_serial.png?1696948622)

## Plotter Example
https://github.com/adafruit/Adafruit_VCNL4020/blob/main/examples/vcnl4020_proxplotter/vcnl4020_proxplotter.ino

This example is simpler than the full test example to specifically make it easier to test using the Serial Plotter. Upload the sketch to your board and open up the Serial Plotter ( **Tools -\> Serial Plotter** ) at 115200 baud. You'll see the proximity readings from the VCNL4020 plotted over time.

![](https://cdn-learn.adafruit.com/assets/assets/000/125/042/medium800/adafruit_products_arduino_plotter.png?1696948783)

# Adafruit VCNL4020 Proximity and Light Sensor

## Arduino Docs

# Adafruit VCNL4020 Proximity and Light Sensor

## WipperSnapper

Warning: 

![](https://cdn-learn.adafruit.com/assets/assets/000/128/375/medium800/adafruit_products_01_DeviceList.png?1709294606)

## 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 VCNL4020 to your board exactly as follows. Here is an example of the VCNL4020 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_VCNL4020_STEMMAQT_bb.png](https://cdn-learn.adafruit.com/assets/assets/000/128/395/medium640/adafruit_products_featherV2_VCNL4020_STEMMAQT_bb.png?1709298287)

![adafruit_products_featherV2_VCNL4020_Breadboard_bb.png](https://cdn-learn.adafruit.com/assets/assets/000/128/396/medium640/adafruit_products_featherV2_VCNL4020_Breadboard_bb.png?1709298309)

## 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/128/376/medium800/adafruit_products_02_DeviceSelection_croppped.png?1709294771)

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_04_LatestVersion.png](https://cdn-learn.adafruit.com/assets/assets/000/128/377/medium640/adafruit_products_04_LatestVersion.png?1709294790)

![adafruit_products_04_UpdateRequired.png](https://cdn-learn.adafruit.com/assets/assets/000/128/378/medium640/adafruit_products_04_UpdateRequired.png?1709294806)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/128/379/medium800/adafruit_products_Screenshot_2024-03-01_111830.png?1709294837)

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

![](https://cdn-learn.adafruit.com/assets/assets/000/128/380/medium800/adafruit_products_dzs1nFwbJq.png?1709294851)

On the component configuration page, the VCNL4020'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 VCNL4020 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/128/381/medium800/adafruit_products_ejhkaJLY3g.png?1709294866)

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/128/382/medium800/adafruit_products_sMAViIACnY.png?1709294893)

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/128/383/medium800/adafruit_products_krHh7xhKES.png?1709294910)

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/128/384/medium800/adafruit_products_XMjqgonI2E.png?1709294918)

# Adafruit VCNL4020 Proximity and Light Sensor

## Downloads

## Files

- [VCNL4020 Datasheet](https://cdn-learn.adafruit.com/assets/assets/000/124/959/original/vcnl4020.pdf?1696620539)
- [EagleCAD PCB Files on GitHub](https://github.com/adafruit/Adafruit-VCNL4020-Proximity-and-Light-Sensor-PCB)
- [3D models on GitHub](https://github.com/adafruit/Adafruit_CAD_Parts/tree/main/5810%20VCNL4020%20Sensor)
- [Fritzing object in the Adafruit Fritzing Library](https://github.com/adafruit/Fritzing-Library/blob/master/parts/Adafruit%20VCNL4020%20Proximity%20and%20Light%20Sensor.fzpz)

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

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

![](https://cdn-learn.adafruit.com/assets/assets/000/138/248/medium800/adafruit_products_5810_VCNL4020_Sensor.jpg?1752008363 )


## Primary Products

### Adafruit VCNL4020 Proximity and Light Sensor - STEMMA QT / Qwiic

[Adafruit VCNL4020 Proximity and Light Sensor - STEMMA QT / Qwiic](https://www.adafruit.com/product/5810)
The VCNL4020 is a handy two-in-one sensor, with a proximity sensor that works from 0 to 200mm (about 7.5 inches) and light sensor with range of 0.26 to 16,000&nbsp;lux.

We've all been there. That thing is&nbsp;_close_&nbsp;but&nbsp;_how close?_&nbsp;When you need to...

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

- [TVA Pruning Baton from Loki](https://learn.adafruit.com/tva-pruning-baton-from-loki.md)
- [Adafruit A4988 Stepper Motor Driver Breakout Board](https://learn.adafruit.com/adafruit-a4988-stepper-motor-driver-breakout-board.md)
- [BLE Light Switch with Feather nRF52840 and Crickit](https://learn.adafruit.com/bluetooth-light-switch-with-crickit-and-nrf52840.md)
- [Ultrasonic Sonar Distance Sensors](https://learn.adafruit.com/ultrasonic-sonar-distance-sensors.md)
- [Ladyada's Bento Box](https://learn.adafruit.com/lady-adas-bento-box.md)
- [CircuitPython OLED Watch Clock](https://learn.adafruit.com/circuitpython-oled-watch.md)
- [Matrix Portal Stained Glass with WLED](https://learn.adafruit.com/matrix-portal-stained-glass-with-wled.md)
- [PyPortal Wake-Up Light Alarm Clock](https://learn.adafruit.com/pyportal-wake-up-light.md)
- [reef-pi Guide 2: Power Controller](https://learn.adafruit.com/reef-pi-power-controller.md)
- [Proper Debugging of ATSAMD21 Processors](https://learn.adafruit.com/proper-step-debugging-atsamd21-arduino-zero-m0.md)
- [Adafruit QT Py RP2040](https://learn.adafruit.com/adafruit-qt-py-2040.md)
- [Adafruit CH9328 UART to HID Keyboard Breakout](https://learn.adafruit.com/adafruit-ch9328-uart-to-hid-keyboard-breakout.md)
- [Adafruit 2.4" PiTFT HAT with Resistive Touchscreen Mini Kit](https://learn.adafruit.com/adafruit-2-4-pitft-hat-with-resistive-touchscreen-mini-kit.md)
- [MicroLipo v2 Case](https://learn.adafruit.com/microlipo-case.md)
- [Adafruit INA23x DC Current Voltage Power Monitor](https://learn.adafruit.com/adafruit-ina237-dc-current-voltage-power-monitor.md)
