# Make It Hot or Cold

## Overview

![](https://cdn-learn.adafruit.com/assets/assets/000/060/335/medium800/temperature___humidity_hot-cold.jpg?1535493981 MS Word 2010 Clip Art)

How can I heat something up? How can I cool something? Controlling the temperature of a substance is fundamental to automation. Most buildings have thermostats and a heating & cooling unit. Products like Nest automate that hard job. But what about smaller requirements?

There are small-scale heating and cooling needs but not a great deal has been written to show Makers how to provide temperature control. This guide will show you some techniques for heating something up and cooling something down, along with methods to monitor the temperatures.

This work will be done by two Adafruit products: the [Circuit Playground Express microcontroller](https://www.adafruit.com/product/3333) and the [Crickit add-on controller](https://www.adafruit.com/product/3093) to provide the interface between digital signals and analog devices.

Danger: 

## Parts
### Part: Circuit Playground Express
quantity: 1
Circuit Playground Express is the next step towards a perfect introduction to electronics and programming. 
[Circuit Playground Express](https://www.adafruit.com/product/3333)

### Part: Adafruit CRICKIT for Circuit Playground Express
quantity: 1
Our Creative Robotics &amp; Interactive Construction Kit. It's an add-on to our popular Circuit Playground Express
[Adafruit CRICKIT for Circuit Playground Express](https://www.adafruit.com/product/3093)

### Part: Electric Heating Pad - 10cm x 5cm
quantity: 1
This is hot! Literally! Apply 5-12VDC and the stainless steel fibers in this heating fabric will warm up, creating a little heating pad.
[Electric Heating Pad - 10cm x 5cm](https://www.adafruit.com/product/1481)

### Part: Peltier Thermo-Electric Cooler Module - 5V 1A
quantity: 1
Apply 5V to the red (positive) and black (negative) wires and one side will get cold while the other side gets hot. 
[Peltier Thermo-Electric Cooler Module - 5V 1A](https://www.adafruit.com/product/1331)

### Part: TMP36 - Analog Temperature sensor
quantity: 1
Wide range, low power temperature sensor outputs an analog voltage
[TMP36 - Analog Temperature sensor](https://www.adafruit.com/product/165)

### Part: Panel Mount 10K potentiometer 
quantity: 1
Breadboard Friendly - 10K Linear
[Panel Mount 10K potentiometer ](https://www.adafruit.com/product/562)

### Part: Potentiometer Knob
quantity: 1
Soft Touch T18 - Red
[Potentiometer Knob](https://www.adafruit.com/product/2046)

### Part:  Small Alligator Clip to Male Jumper Wire Bundle - 12 Pieces
quantity: 1
These cables will be your best friends! No longer will you have long strands of alligator clips that are grabbing extension wires.
[ Small Alligator Clip to Male Jumper Wire Bundle - 12 Pieces](https://www.adafruit.com/product/3255)

### Part: Short Wire Alligator Clip Test Lead (set of 12)
quantity: 1
These are shorter - if you need longer, order the longer "small alligator clip" bundles.
[Short Wire Alligator Clip Test Lead (set of 12)](https://www.adafruit.com/product/1592)

### Part: Female DC Power adapter - 2.1mm jack to screw terminal block
quantity: 1
Connect a DC power wall wart to a board that doesn't have a DC jack.
[Female DC Power adapter - 2.1mm jack to screw terminal block](https://www.adafruit.com/product/368)

# Make It Hot or Cold

## Make It Hot

There are a great many heating elements on the market but most require a great deal of energy to provide heating. And most of those products are way too much for the needs of the Maker.

The Adafruit 10cm x 5cm heating pad is different.&nbsp;Apply 5-12VDC and the stainless steel fibers in the heating fabric will warm up, creating a little heating pad. On one hand, it's just a gigantic resistor. On the other hand, it's flexible, light, and can be wrapped around a project. Originally designed for portable wearable heating pads, the fabric can be used for wearables, weather balloons, diy-bio projects, thermal cycling for materials testing, etc.

### Electric Heating Pad - 10cm x 5cm

[Electric Heating Pad - 10cm x 5cm](https://www.adafruit.com/product/1481)
This is hot! Literally! Apply 5-12VDC and the stainless steel fibers in this heating fabric will warm up, creating a little heating pad. On one hand, it's just a gigantic resistor. On the other hand, it's flexible, light, and can be wrapped around a project. Originally designed for...

Out of Stock
[Buy Now](https://www.adafruit.com/product/1481)
[Related Guides to the Product](https://learn.adafruit.com/products/1481/guides)
![Electric Resistive Heating Pad covered with kapton film](https://cdn-shop.adafruit.com/640x480/1481-03.jpg)

The benefits of using this pad:

- It can be controlled by lower voltages
- It can be pulse-width modulated to control temperature
- It is flexible for many projects

Ok, time to think electrical. The data sheets for this pad say that at 5 volts, the sheet may require 740 milliamps (0.74 amps). The Motor block can source up to 1 amp (1000 milliamps) which will work fine. We can control the power getting to the pad via pulse-width modulation as the motor throttle. Other things like direction will not have any bearing on how the pad works.

The **Drive** port of Crickit is good for up to 500mA, so the **Motor** port is a better pick here, to get the most power output.

## Hook Up
![](https://cdn-learn.adafruit.com/assets/assets/000/060/444/medium800/temperature___humidity_hot3.png?1535665305)

A potentiometer (variable resistor) center pin is connected to Circuit Playground Express pad A7, the outside potentiometer pins connected to 3.3 V and Ground. This provides a variable voltage which can be read via the Circuit Playground Express Analog In.&nbsp; The programs will read this to determine how much it should drive the heating pad.&nbsp;

A TMP36 temperature sensor is connected to Circuit Playground Express pad A3 with power and ground to sense the temperature. If you'd like to learn more about the TMP36, [see this guide for details](https://learn.adafruit.com/tmp36-temperature-sensor?view=all "TMP36 Guide").

The code is on the following pages in MakeCode and CircuitPython.

# Make It Hot or Cold

## CircuitPython

![](https://cdn-learn.adafruit.com/assets/assets/000/059/686/medium800/temperature___humidity_robotics___cnc_circuitpython_blinka-small.png?1535045158)

We'll be using CircuitPython for this project. Are you new to using CircuitPython? No worries,&nbsp;[there is a full getting started guide here](https://learn.adafruit.com/welcome-to-circuitpython).

Adafruit suggests using the Mu editor to edit your code and have an interactive REPL in CircuitPython.&nbsp;[You can learn about Mu and its installation in this tutorial](https://learn.adafruit.com/welcome-to-circuitpython/installing-mu-editor).

Get the code from GitHub, place it in Mu and save it onto the Circuit Playground Express as `code.py` **(not** `hot.py`!**)**

https://github.com/adafruit/Adafruit_Learning_System_Guides/blob/main/Crickits/Make_It_Hot_Cold/Hot/code.py

If you open the Mu serial terminal (press the menu bar Serial button), you'll see the temperature measured by the temperature sensor and the value of the potentiometer from 0 to 1. At 0, the heating pad is not powered, at 1.0 it is fully powered, and values between the heating pad is pulse width modulated to be at at a temperature lower than maximum.

![](https://cdn-learn.adafruit.com/assets/assets/000/061/516/medium800/temperature___humidity_Capture.jpg?1536715707)

The NeoPixels show the value of the potentiometer in 1/10th increments. The more NeoPixels, the hotter the heating pad.

# Make It Hot or Cold

## MakeCode

If you are new to using Microsoft MakeCode, [check out our guide to getting started](https://learn.adafruit.com/makecode?view=all).

We'll need to have the Crickit extension loaded to have the Circuit Playground Express and Crickit to work together. [See this guide for the instructions](https://learn.adafruit.com/adafruit-crickit-creative-robotic-interactive-construction-kit?view=all#makecode).

The MakeCode program below is very similar to the CircuitPython program on the previous page.

![](https://cdn-learn.adafruit.com/assets/assets/000/060/443/medium800/temperature___humidity_makecode-hot-cpx.png?1535664918)

[Open this Example in MakeCode](https://makecode.com/_DiWFU08F8LuL)
You will need to use the **VARIABLE** block group to make four variables names `raw_temp`, `temp_C`, `temp_F` and `heat_percent`. `raw_temp`holds the raw analog reading of the TMP36 sensor with three **MATH** block operations: a multiply, a divide, and a subtraction. `temp_C` is the final calculated value of the temperature sensor in degrees Celsius. `temp_F` is the sensor temperature in Fahrenheit. `heat_percent` is the value read by the potentiometer expressed as a percentage from 0 to 100% and is used to drive the motor terminal 2 containing the heating pad.&nbsp;

Variable `show` is used to signal the user has pushed the Circuit Playground Express A button toggling&nbsp; between the NeoPixels reading the potentiometer from 0 to 100% and reading the temperature sensor from 80 degrees to 120 degrees Fahrenheit.

If you run the program with the [MakeCode app in Windows 10](https://learn.adafruit.com/makecode?view=all#apps), the console output will print off and graph the temperature and heating percent.

## Results
Primary: 

The NeoPixels will show the percentage of the Crickit applying voltage to the heating pad. No lights = 0%, 10 lights = 100%. To try it out, turn the potentiometer all the way counter-clockwise. Let the pad cool and note the temperature - it should be room temperature. Now turn the knob clockwise, wait and record the highest temperature. Do the same all the way to 100% so you have 11 values.

You can plot this yourself or record the data in a quick spreadsheet:

![](https://cdn-learn.adafruit.com/assets/assets/000/060/442/medium800/temperature___humidity_graph.png?1535664794)

The data should be more of a line but measurements may be affected by where on the heating pad you measure and other conditions. I found it was best to measure in the middle of the pad if you can.

# Make It Hot or Cold

## Use

Be sure to not have flammable material or skin on the heating pad during testing and use.

In use, the pad will be at room temperature (with the potentiometer reading 0 on the serial monitor, meaning the pad is off) to a measured 129 degrees F / 56 degrees C with the potentiometer fully on.

&nbsp;

The center of the pad seems to gets hotter than the edges but make measurements around the pad to check for even heating.

Do not expect the pad to go from cold to hot quickly. The resistive material in the pad does not act quickly, it may take 30 seconds or so to adjust to temperature change requests.

![temperature___humidity_hot-icon.png](https://cdn-learn.adafruit.com/assets/assets/000/060/336/medium640/temperature___humidity_hot-icon.png?1535494523)

If you want something more instantly hot or cold, the Peltier module in the next section may be what you need.

As you turn the potentiometer, the pad should warm up. If you press the Plotter button in Mu for the CircuitPython version, you should see the temperature rise on the temperature sensor as you turn the potentiometer but it will not rise fast.

These are the readings you will find with this setup:

- Pad Fully On, Crickit outputs 4.49 volts, 670 milliamps, just over 3 watts
- Bypass Crickit, pad connected directly to 5 volts: 5.12 volts, 740 milliamps, 3.79 watts

These are readings with a multimeter and non-contact thermometer. The TMP36, when used to measure the temperature, should be affixed in direct contact near the hottest place on the pad if possible.

## Application

This type of setup would be very good for remote control of heating in an outside electronics enclosure where you don't want the enclosure contents to get too cold. You could monitor the temperature and vary the heating accordingly.

This would not be the best way to heat ones drink. You should plan your temperature range to fit the capabilities of the heater element.

## More on the Heating Pad

There are two data sheets available:

- [First one](https://cdn-shop.adafruit.com/datasheets/Ultra+Heating+Fabric.pdf)
- [Second one](https://cdn-shop.adafruit.com/datasheets/HEATING+TEXTILE.PDF)

If you are planning custom projects, look at the capabilities of the pad.

## If you plan to use a different heater:

The heating element should be 5 volts and not consume more than one amp of current for the Motor outputs or 500 milliamps from the drive terminals.

# Make It Hot or Cold

## Make It Cold

![](https://cdn-learn.adafruit.com/assets/assets/000/059/695/medium800/temperature___humidity_1331-04.jpg?1535053181 A peltier thermoelectric cooling element, in the Adafruit shop as #1331.)

Making things cold is usually much harder, both mechanically and physically, than heating something up due to thermodynamics. But Makers and Engineers always find a way.

In the same set of physics is a phenomenon called the **Peltier Effect** or the [Thermoelectric effect](https://en.wikipedia.org/wiki/Thermoelectric_effect "Wikipedia"). Driving electrical current through a semiconductor junction transfers heat from one side to another (thus cooling the side that has the heat taken away from it). Often times the junctions are sandwiched together to amplify the effect.

[Peltier junctions](https://www.adafruit.com/product/1331) are used for cooling small spaces, electronics, and small refrigerators. When something needs a large amount of cooling, it makes more sense power-wise to use some other cooling method often with more mechanical components like refrigeration systems.

Danger: 

## Checking It Out

There are a number of Peltier coolers on the market which require different methods of power and handling. For this tutorial we will use the [Adafruit #1331 Peltier module](https://www.adafruit.com/product/1331). This module is powered by 5 volts. This unit has a maximum current draw of 1.6 amps. Use with Crickit is ok, as the Motor driver has current limiting to ensure the electronics are not damaged.

### Peltier Thermo-Electric Cooler Module - 5V 1A

[Peltier Thermo-Electric Cooler Module - 5V 1A](https://www.adafruit.com/product/1331)
Keep it cool with a Peltier module. These unique electronic components can generate a temperature differential when powered. That is to say, apply 5V to the red (positive) and black (negative) wires and one side will get cold while the other side gets hot. For best results, you'll need to...

In Stock
[Buy Now](https://www.adafruit.com/product/1331)
[Related Guides to the Product](https://learn.adafruit.com/products/1331/guides)
![Thin Small Peltier Thermo-Electric Cooler Module with two power wires](https://cdn-shop.adafruit.com/640x480/1331-04.jpg)

Using the [Peltier module](https://www.adafruit.com/product/1331) with two [alligator to pin connection cables](https://www.adafruit.com/product/3448) and a [female power supply connector](https://www.adafruit.com/product/368), you can hook the Peltier directly to a [5V 2 amp power supply](https://www.adafruit.com/product/276 "5V 2 amp power supply"). The supply must be able to provide \> 1.6 amps (a supply that provides [more than 2 amps at 5 volts](https://www.adafruit.com/product/1466) is fine). The connections are shown below.

**Assemble such that the Peltier module will not damage anything while it heats up!**

Warning: 

![](https://cdn-learn.adafruit.com/assets/assets/000/060/266/medium800/temperature___humidity_cold_direct_bb.png?1535483528)

You'll see one side gets rather hot and one side gets cold. Cool, literally! Note which side gets hot and which side gets cold for later.

Feel free to use the Peltier module in this manner to heat or cool any project you need.

If you'd like some variability in the heating and cooling, see the next page.

# Make It Hot or Cold

## Connections

The circuit is nearly identical to the Make It Hot project earlier in the tutorial. Note the Peltier module connects to the Motor 2 connection where the heating pad had been previously. Be sure you power the Crickit from a 5 volt 2 amp (or greater amperage) power supply.

![](https://cdn-learn.adafruit.com/assets/assets/000/060/534/medium800/temperature___humidity_cold_cpx2_bb.png?1535674934)

The TMP36 temperature sensor is connected to Circuit Playground Express pad A3.

The potentiometer center terminal is connected to Circuit Playground Express pad A7.

The Peltier Module is on Motor terminal 2 with the black wire towards the speaker icon and the red wire next to it.

## How to Vary the Temperature

The Crickit Motor terminals use pulse-width modulation (PWM) to quickly turn the connections off and on to vary what the device receives. This is perfect for devices like motors and resistive heating elements. But not so good here!

Peltier modules have solid state junctions that do not work well with fast on/off times like in PWM.

The modules can be turned off and on less quickly, a second or more. The CircuitPython and MakeCode programs on the following pages do exactly that, always having the "motor" throttle run either 0 (off) or 100% (full on) but switched by the program rather slowly on the order of seconds.

The potentiometer selects on on/off cycle time between 0 and 10 seconds. If the time selected via the potentiometer is \> 0 then the code ensures that the time is at least one second. The entire cycle time was chosen as ten seconds. At the ends, zero results in full on, fully turned, the module is off.

The NeoPixels on the Circuit Playground Express show how strong the cooling is from no pixels (off) to 5 (half), to 10 (full on) and in between.

# Make It Hot or Cold

## CircuitPython

Get the code from GitHub, place it in Mu and save it onto the Circuit Playground Express as **code.py (not cold.py).**

https://github.com/adafruit/Adafruit_Learning_System_Guides/blob/main/Crickits/Make_It_Hot_Cold/Cold/code.py

If the potentiometer is not fully "off " (to left) you should see some NeoPixels on telling you roughly how many seconds the Peltier module is cycled on. Zero is fully off, ten lights fully on.

Using Mu, you can plot the data and see the values in the Serial monitor. The logging is slower than in the Hot example due to the slow cycling of the Peltier module compared to the heating pad.

Be sure the TMP36 sensor is in good thermal contact with the cold side of the module.

![](https://cdn-learn.adafruit.com/assets/assets/000/061/590/medium800/temperature___humidity_Capture2.jpg?1536777552)

# Make It Hot or Cold

## MakeCode

If you are new to using Microsoft MakeCode, [check out our guide to getting started](https://learn.adafruit.com/makecode?view=all).

We'll need to have the Crickit extension loaded to have the Circuit Playground Express and Crickit to work together. [See this guide for the instructions](https://learn.adafruit.com/adafruit-crickit-creative-robotic-interactive-construction-kit?view=all#makecode).

The code below is the MakeCode for driving the Peltier Module. It's got a lot going on, let's break it down. The Temperature sensor and the potentiometer are connected to analog inputs on the Circuit Playground Express. The first 4 `set` blocks convert the analog voltage read (from 0 to 1023) to the temperature and a number of seconds from 0 to 10 for timing the Peltier cycle.

Note: In CircuitPython the number of possible values from analog reads are 0 to 65532, in MakeCode only 0 to 1023, in case you are comparing the code.

![](https://cdn-learn.adafruit.com/assets/assets/000/060/731/medium800/temperature___humidity_makecode-cold-cpx.png?1535731846)

[Open Example in MakeCode](https://makecode.com/_YER75gh4AD7R)
If the Peltier `cool_time` is less than a second, we ensure it's either zero or one as we don't want to cycle the module less than a second at a time as it does not like fast cycle times.

The values are printed out in the Windows 10 app if running via `console log` blocks.

The next if block will stop the Peltier for `cool_time` seconds and run it for `(10 - cool_time)` seconds. As the pause block is in milliseconds, we multiply the number of seconds by 1000.

The function `Display` shows the number of seconds the Peltier is running off. If **Button A** is pressed, the display is switched to temperature from 32 to 82 degrees with each light 5 degree steps. Pressing **Button A** again switches back to the seconds dialed in by the Potentiometer.

# Make It Hot or Cold

## Use

![](https://cdn-learn.adafruit.com/assets/assets/000/060/747/medium800/temperature___humidity_cold-picture.jpg?1535739813)

The module will get colder at the far left (zero). Once the potentiometer is turned, the Crickit will cycle the power off then on in a ten second cycle. This is why the NeoPixels do not react immediately when you turn the knob, the previous off/on cycle must complete.

The Peltier will not get as cold as it did when it was directly connected to the power. The current is limited to one amp by Crickit so the unit will not draw all the current it wants. So if you want very cold, directly connect it to power.&nbsp;

If you want an environment that you want to measure the temperature (with the TMP36 sensor) and adjust the temperature, this setup will work for you.

Warning: 

## Heat Sinks

A heat sink is usually a piece of metal, often with metal fins, used to dissipate heat into the air. They are used on a large number of heat-generating electronics. Most likely your computer has several, the main one for the CPU and others for the power supply system. Adafruit actually sells a 12 volt Peltier module with a heat sink attached although for this "Make It" guide we are limited by the Crickit for control which is 5 volts.&nbsp;

Placing the Peltier module's hot side on metal will help dissipate heat. If you plan to use a metal project enclosure, using the enclosure as a heat sink may be possible.

&nbsp;

If you have access to scrounged electronics, you can often remove heat sinks from circuit boards. Heat sinks are available at many electronics stores also, both online and brick & mortar stores.

![temperature___humidity_heatsink.jpg](https://cdn-learn.adafruit.com/assets/assets/000/060/291/medium640/temperature___humidity_heatsink.jpg?1535484956)

I found an old large chip heat sink in the junk drawer, but feel free to take any metal (usually heavier is better) to place on the hot side of the module to draw the heat away as we're looking to cool things.

A small fan also works, even better both a heat sink and a fan.

To get a good electronic contact between a heat sink and the cooler, consider some thermal tape, paste or thermal grease to place between the cooler and the heat sink. The material will allow for a good thermal contact between the two surfaces.&nbsp;

### Heat Sink Thermal Tape - 3M 8810 - 80mm x 80mm

[Heat Sink Thermal Tape - 3M 8810 - 80mm x 80mm](https://www.adafruit.com/product/1468)
Get that heat sink stuck on good and strong with 3M's thermal tape. Specifically designed for attaching heat sinks to ICs. Works better and is less messy than thermal glues or pastes because the thickness is even across the area. A perfect match for our range of small heat sinks, either in...

In Stock
[Buy Now](https://www.adafruit.com/product/1468)
[Related Guides to the Product](https://learn.adafruit.com/products/1468/guides)
![Cut out square of 3M 8810 80mm x 80mm Heat Sink Thermal Tape ](https://cdn-shop.adafruit.com/640x480/1468-00.jpg)


## Featured Products

### Circuit Playground Express

[Circuit Playground Express](https://www.adafruit.com/product/3333)
 **Circuit Playground Express** is the next step towards a perfect introduction to electronics and programming. We've taken the original Circuit Playground Classic and made it even better! Not only did we pack even more sensors in, we also made it even easier to...

In Stock
[Buy Now](https://www.adafruit.com/product/3333)
[Related Guides to the Product](https://learn.adafruit.com/products/3333/guides)
### Adafruit CRICKIT for Circuit Playground Express

[Adafruit CRICKIT for Circuit Playground Express](https://www.adafruit.com/product/3093)
Sometimes we wonder if robotics engineers ever watch movies. If they did, they'd know that making robots into servants always ends up in a robot rebellion. Why even go down that path? Here at Adafruit, we believe in making robots our&nbsp; **friends!**

So if you find...

In Stock
[Buy Now](https://www.adafruit.com/product/3093)
[Related Guides to the Product](https://learn.adafruit.com/products/3093/guides)
### Electric Heating Pad - 10cm x 5cm

[Electric Heating Pad - 10cm x 5cm](https://www.adafruit.com/product/1481)
This is hot! Literally! Apply 5-12VDC and the stainless steel fibers in this heating fabric will warm up, creating a little heating pad. On one hand, it's just a gigantic resistor. On the other hand, it's flexible, light, and can be wrapped around a project. Originally designed for...

Out of Stock
[Buy Now](https://www.adafruit.com/product/1481)
[Related Guides to the Product](https://learn.adafruit.com/products/1481/guides)
### Peltier Thermo-Electric Cooler Module - 5V 1A

[Peltier Thermo-Electric Cooler Module - 5V 1A](https://www.adafruit.com/product/1331)
Keep it cool with a Peltier module. These unique electronic components can generate a temperature differential when powered. That is to say, apply 5V to the red (positive) and black (negative) wires and one side will get cold while the other side gets hot. For best results, you'll need to...

In Stock
[Buy Now](https://www.adafruit.com/product/1331)
[Related Guides to the Product](https://learn.adafruit.com/products/1331/guides)
### TMP36 - Analog Temperature sensor

[TMP36 - Analog Temperature sensor](https://www.adafruit.com/product/165)
Wide range, low power temperature sensor outputs an analog voltage that is proportional to the ambient temperature. To use, connect pin 1 (left) to power (between 2.7 and 5.5V), pin 3 (right) to ground, and pin 2 to analog in on your microcontroller. The voltage out is 0V at -50°C and...

In Stock
[Buy Now](https://www.adafruit.com/product/165)
[Related Guides to the Product](https://learn.adafruit.com/products/165/guides)
### Panel Mount 10K potentiometer (Breadboard Friendly)

[Panel Mount 10K potentiometer (Breadboard Friendly)](https://www.adafruit.com/product/562)
This potentiometer is a two-in-one, good in a breadboard or with a panel. It's a fairly standard linear taper 10K ohm potentiometer, with a grippy shaft. It's smooth and easy to turn, but not so loose that it will shift on its own. We like this one because the legs are 0.2" apart...

In Stock
[Buy Now](https://www.adafruit.com/product/562)
[Related Guides to the Product](https://learn.adafruit.com/products/562/guides)
### Potentiometer Knob - Soft Touch T18 - Red

[Potentiometer Knob - Soft Touch T18 - Red](https://www.adafruit.com/product/2046)
_Oh say can you see_  
_By the knob's early light..._

Sorry - we thought that was clever. &nbsp;And while it wasn't really, this potentiometer knob definitely is. &nbsp;It's a 'soft touch' T18 knob that works great with our <a...></a...>

In Stock
[Buy Now](https://www.adafruit.com/product/2046)
[Related Guides to the Product](https://learn.adafruit.com/products/2046/guides)
### Short Wire Alligator Clip Test Lead (set of 12)

[Short Wire Alligator Clip Test Lead (set of 12)](https://www.adafruit.com/product/1592)
Connect this to that without soldering using these handy mini alligator clip test leads. Approximately 4.5" overall cables with alligator clip on each end, color coded. You get 12 pieces in 6 colors. Strong and grippy, these always come in handy! We often use these in conjunction with a...

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

## Related Guides

- [Adafruit Circuit Playground Express](https://learn.adafruit.com/adafruit-circuit-playground-express.md)
- [Sparky the Blue Smoke Monster Automaton](https://learn.adafruit.com/sparky-automaton.md)
- [Anatomical 3D Printed Beating Heart with MakeCode](https://learn.adafruit.com/anatomical-3d-printed-beating-heart-with-makecode.md)
- [Affordable HAL 9000 Replica](https://learn.adafruit.com/hal-9000-replica.md)
- [Circuit Playground Express Compass](https://learn.adafruit.com/circuit-playground-express-compass.md)
- [Crickit Dancing Marionette Kit](https://learn.adafruit.com/universal-marionette-with-crickit.md)
- [Dear Diary Alarm](https://learn.adafruit.com/dear-diary-alarm.md)
- [AdaBox 006](https://learn.adafruit.com/adabox006.md)
- [CRICKIT Exhibit Demo Board](https://learn.adafruit.com/crickit-exhibit-demo-board.md)
- [Animatronic Glowing Medusa Headdress](https://learn.adafruit.com/animatronic-glowing-medusa-headdress.md)
- [CircuitPython with Jupyter Notebooks](https://learn.adafruit.com/circuitpython-with-jupyter-notebooks.md)
- [Light Up Paper Dragon Wall Sconce](https://learn.adafruit.com/light-up-paper-dragon-wall-sconce.md)
- [Circuit Playground Express Perk-up Ears](https://learn.adafruit.com/perk-up-ears.md)
- [MicroBlocks Circuit Playground Express Ornament](https://learn.adafruit.com/microblocks-circuitplayground-express-ornament.md)
- [Makey Paper Craft ](https://learn.adafruit.com/makey-paper-craft.md)
- [Circuit Playground Analog Input](https://learn.adafruit.com/circuit-playground-analog-input.md)
