Stufin
Home Quick Cart Profile

Potentiometer Knobs - (Pack of 10)

Buy Now on Stufin

Component Name

Potentiometer Knobs (Pack of 10)

Description

The Potentiometer Knobs (Pack of 10) is a set of rotary knobs designed to pair with potentiometers, allowing users to adjust the resistance value of the potentiometer by rotating the knob. These knobs are commonly used in various electronic projects, including IoT devices, audio equipment, and robotics.

Functionality

The primary function of the Potentiometer Knobs is to provide a user-friendly interface for adjusting the resistance value of a potentiometer. When paired with a potentiometer, the knob allows the user to rotate the shaft, which in turn changes the resistance value of the potentiometer. This allows the user to fine-tune various parameters, such as volume, tone, or other adjustable settings, in their electronic project.

Key Features

  • Rotary Adjustment: The knobs are designed for smooth, continuous rotation, allowing for precise adjustments to the potentiometer's resistance value.
  • Compatibility: The knobs are compatible with most standard potentiometers, including those with shaft diameters of 6mm or 1/4 inch.
  • Pack of 10: The package includes 10 individual potentiometer knobs, making it an ideal choice for projects that require multiple adjustments or for users who need a spare set.
  • Durable Construction: The knobs are made from high-quality plastic materials, ensuring a long lifespan and resistance to wear and tear.
  • Easy Installation: The knobs are simple to install on most potentiometers, with a secure screw-on design that ensures a snug fit.
  • Aesthetically Pleasing: The knobs have a sleek, modern design that complements a wide range of electronic projects and devices.
  • Universal Application: The Potentiometer Knobs can be used in a variety of applications, including audio equipment, robotics, IoT devices, and other electronic projects that require adjustable resistance values.

Material

High-quality plastic

Shaft Diameter

Compatible with 6mm or 1/4 inch potentiometer shafts

Rotation Type

Smooth, continuous rotary adjustment

-PackagingPack of 10 individual potentiometer knobs

Dimensions

20mm (diameter) x 15mm (height)

Weight

Approximately 10 grams per knob

Recommended Usage

The Potentiometer Knobs (Pack of 10) are ideal for a wide range of electronic projects, including

Audio equipment, such as volume controls or tone adjustments

Robotics and automation systems that require adjustable resistance values

IoT devices, such as smart home automation systems or environmental monitoring devices

Other electronic projects that require a user-friendly interface for adjusting resistance values

Pin Configuration

  • Potentiometer Knobs - (Pack of 10)
  • Overview
  • The Potentiometer Knobs (Pack of 10) is a set of rotary potentiometers with knobs, commonly used in various IoT projects, audio equipment, and electronic devices. Each potentiometer has a three-pin layout, allowing for easy connection to microcontrollers, Arduino boards, or other electronic circuits.
  • Pinout
  • The Potentiometer Knobs have a standard three-pin configuration. Here's a detailed explanation of each pin:
  • Pin 1: Terminal 1 (T1)
  • Function: One end of the potentiometer's resistive track
  • Connection: Typically connected to the positive voltage supply (VCC) or a voltage reference point
  • Description: Terminal 1 is one end of the potentiometer's resistive track. When the knob is rotated, the resistance between Terminal 1 and the wiper (Terminal 3) changes.
  • Pin 2: Terminal 2 (T2)
  • Function: The other end of the potentiometer's resistive track
  • Connection: Typically connected to ground (GND) or a voltage reference point
  • Description: Terminal 2 is the other end of the potentiometer's resistive track. When the knob is rotated, the resistance between Terminal 2 and the wiper (Terminal 3) changes.
  • Pin 3: Wiper (W)
  • Function: The moving contact that connects to the resistive track
  • Connection: Typically connected to the analog input of a microcontroller or an ADC (Analog-to-Digital Converter)
  • Description: The wiper is the moving contact that slides along the resistive track as the knob is rotated. The wiper's position determines the output voltage, which is proportional to the knob's rotation.
  • Connection Structure
  • Here's a step-by-step guide to connecting the Potentiometer Knobs:
  • 1. Connect Terminal 1 (T1) to VCC or a voltage reference point:
  • Connect Pin 1 to the positive voltage supply (e.g., 5V or 3.3V) or a voltage reference point in your circuit.
  • 2. Connect Terminal 2 (T2) to GND or a voltage reference point:
  • Connect Pin 2 to ground (GND) or a voltage reference point in your circuit.
  • 3. Connect the Wiper (W) to an analog input or ADC:
  • Connect Pin 3 to an analog input on a microcontroller (e.g., Arduino Uno's A0-A5 pins) or an ADC (Analog-to-Digital Converter).
  • Note:
  • Ensure the potentiometer is correctly oriented and seated in its mounting hole to prevent damage or malfunction.
  • When connecting the potentiometer, avoid over-tightening the terminals, as this may damage the component.
  • Use a suitable voltage range for your project, and ensure the potentiometer is rated for the applied voltage.
  • By following these steps, you can correctly connect the Potentiometer Knobs and utilize them in your IoT projects or electronic devices.

Code Examples

Component Documentation: Potentiometer Knobs (Pack of 10)
Overview
The Potentiometer Knobs (Pack of 10) is a set of rotary potentiometer knobs designed for use with linear potentiometers. These knobs are commonly used in various IoT projects, such as robotic arms, robotic cars, and other mechanical systems that require precise control. Each knob in the pack is identical and features a smooth, rotating design that provides tactile feedback.
Technical Specifications
Material: Plastic
 Shaft diameter: 6 mm
 Knob diameter: 20 mm
 Height: 15 mm
 Package includes: 10 x Potentiometer Knobs
Code Examples
### Example 1: Analog Input with Arduino
In this example, we will use a potentiometer knob to control the brightness of an LED connected to an Arduino board.
Hardware Requirements
Arduino Board (e.g., Arduino Uno)
 Potentiometer Knob (from the pack)
 Linear Potentiometer (e.g., 10k)
 LED
 Resistor (e.g., 1k)
 Breadboard and jumper wires
Code
```c
const int potPin = A0;  // Analog input pin for potentiometer
const int ledPin = 9;  // Digital output pin for LED
void setup() {
  pinMode(ledPin, OUTPUT);
}
void loop() {
  int potValue = analogRead(potPin);  // Read analog value from potentiometer
  int brightness = map(potValue, 0, 1023, 0, 255);  // Map value to LED brightness range
  analogWrite(ledPin, brightness);  // Set LED brightness
  delay(10);
}
```
In this example, we read the analog value from the potentiometer using the `analogRead()` function and map it to a brightness value for the LED using the `map()` function. We then set the LED brightness using the `analogWrite()` function.
### Example 2: Digital Input with Raspberry Pi (Python)
In this example, we will use a potentiometer knob to control a digital output on a Raspberry Pi.
Hardware Requirements
Raspberry Pi (e.g., Raspberry Pi 4)
 Potentiometer Knob (from the pack)
 Linear Potentiometer (e.g., 10k)
 Breadboard and jumper wires
Code
```python
import RPi.GPIO as GPIO
# Set up GPIO library
GPIO.setmode(GPIO.BCM)
# Define GPIO pin for digital output
output_pin = 17
GPIO.setup(output_pin, GPIO.OUT)
while True:
    # Read analog value from potentiometer
    pot_value = int(input("Enter analog value (0-1023): "))
# Set digital output based on potentiometer value
    if pot_value > 512:
        GPIO.output(output_pin, GPIO.HIGH)
    else:
        GPIO.output(output_pin, GPIO.LOW)
# Wait for 0.1 seconds
    time.sleep(0.1)
```
In this example, we read the analog value from the potentiometer using the `input()` function and set a digital output based on the value. We use the `GPIO.output()` function to set the output pin high or low.
Note: These examples are for illustrative purposes only and may require modifications to work with your specific IoT project.