Stufin
Home Quick Cart Profile

10K Pot Potentiometer - (Pack of 5)

Buy Now on Stufin

Component Name

10K Pot Potentiometer (Pack of 5)

Description

The 10K Pot Potentiometer is a variable resistor component that consists of a rotating shaft connected to a resistive element. This component is commonly used in electronic circuits to divide voltage, adjust signal levels, and provide impedance matching. This pack of 5 potentiometers offers convenience and cost-effectiveness for projects that require multiple instances of this component.

Functionality

The 10K Pot Potentiometer is a three-terminal device that acts as a variable voltage divider. When the shaft is rotated, the resistance between the center terminal and the two outer terminals changes, allowing the user to adjust the output voltage. The component can be used in various applications, including

Voltage division and signal attenuation

Impedance matching and buffering

Audio equipment, such as volume controls and tone controls

Sensor interfaces and signal conditioning

Test and measurement equipment

Key Features

  • Resistance: 10 k
  • Tolerance: 20%
  • Power Rating: 0.5 W
  • Operating Temperature: -20C to +70C
  • Rotational Life: 10,000 cycles (minimum)
  • Shaft Type: Knob and shaft, suitable for panel mounting
  • Terminations: 3-pin, PCB-mount or wire-lead
  • Package: Pack of 5 potentiometers
  • Dimensions: Dependent on the specific package type, but typically:

Body diameter

10 mm

Body length

20 mm

Shaft diameter

6 mm

Shaft length

15 mm

Packaging and Availability

This component is sold in a pack of 5, making it an ideal option for projects that require multiple potentiometers. The pack includes 5 individual potentiometers, each with its own set of terminals and shaft.

Notes and Precautions

When handling the potentiometer, avoid applying excessive force or torque to the shaft, as this may cause damage or mechanical failure.

Cleanliness is essential when working with potentiometers. Make sure to handle the component in a clean, dry environment to prevent contamination.

The component is not intended for use in high-vibration or high-reliability applications.

This component is suitable for

Electronics engineers and designers

Hobbyists and makers

Students and researchers

Prototyping and development teams

Certifications and Compliance

The 10K Pot Potentiometer meets relevant industry standards and regulations, including

RoHS (Restriction of Hazardous Substances) compliance

CE (Conformit Europene) marking

UL (Underwriters Laboratories) recognition (dependent on the specific manufacturer)

Manufacturer-Dependent Information

Please note that some specifications and features may vary depending on the manufacturer of the component. Be sure to consult the datasheet and documentation provided by the manufacturer for specific details and recommendations.

Pin Configuration

  • 10K Pot Potentiometer - (Pack of 5) Documentation
  • Overview
  • The 10K Pot Potentiometer is a variable resistor that allows for manual adjustment of resistance values. This component is commonly used in a wide range of applications, including audio equipment, sensors, and control systems. This documentation provides a detailed explanation of the potentiometer's pins and their connections.
  • Pinout
  • The 10K Pot Potentiometer has three pins, which are:
  • Pin 1: Clockwise Terminal (CW)
  • Function: Connects to the wiper (center terminal) when the potentiometer is turned clockwise
  • Description: When the potentiometer is turned clockwise, the resistance between Pin 1 and the wiper (Pin 3) decreases, while the resistance between Pin 2 and the wiper (Pin 3) increases
  • Connection: Typically connected to VCC (positive voltage supply) or a fixed voltage reference
  • Pin 2: Counter-Clockwise Terminal (CCW)
  • Function: Connects to the wiper (center terminal) when the potentiometer is turned counter-clockwise
  • Description: When the potentiometer is turned counter-clockwise, the resistance between Pin 2 and the wiper (Pin 3) decreases, while the resistance between Pin 1 and the wiper (Pin 3) increases
  • Connection: Typically connected to GND (ground) or a fixed voltage reference
  • Pin 3: Wiper (Center Terminal)
  • Function: Connects to the output signal or the circuit being controlled
  • Description: The wiper terminal moves along the resistive track as the potentiometer is turned, dividing the total resistance between Pin 1 and Pin 2 into two variable resistors
  • Connection: Typically connected to the output of a circuit, such as a voltage divider or an amplifier
  • Connection Structure
  • Here's a general connection structure for the 10K Pot Potentiometer:
  • Pin 1 (CW): Connect to VCC (positive voltage supply) or a fixed voltage reference
  • Pin 2 (CCW): Connect to GND (ground) or a fixed voltage reference
  • Pin 3 (Wiper): Connect to the output of a circuit, such as a voltage divider or an amplifier
  • Example Circuit
  • Here's an example of a simple voltage divider circuit using the 10K Pot Potentiometer:
  • Pin 1 (CW): Connect to 5V (VCC)
  • Pin 2 (CCW): Connect to GND
  • Pin 3 (Wiper): Connect to a microcontroller's analog input pin or an ADC (analog-to-digital converter)
  • In this example, the potentiometer is used to divide the 5V voltage supply into a variable output voltage, which is then read by the microcontroller or ADC.
  • Important Notes
  • The 10K Pot Potentiometer has a linear taper, meaning that the resistance changes linearly as the potentiometer is turned.
  • The potentiometer's resistance value (10K) is the total resistance between Pin 1 and Pin 2.
  • To ensure proper operation, the potentiometer should be connected to a stable voltage supply and a suitable load.
  • By following this documentation, you should be able to properly connect and utilize the 10K Pot Potentiometer in your IoT projects.

Code Examples

10K Pot Potentiometer - (Pack of 5) Documentation
Overview
The 10K Pot Potentiometer is a versatile and widely used component in IoT projects. It is a type of variable resistor that allows for adjustment of the resistance value by rotating the shaft. This potentiometer has a total resistance of 10 k and is packaged in a set of 5, making it an excellent value for prototyping and development. In this documentation, we will provide an overview of the component, its specifications, and code examples to demonstrate its usage in various contexts.
Specifications
Resistance: 10 k
 Power rating: 0.5 W
 Operating temperature: -20C to 70C
 Rotation angle: 270
 Shaft diameter: 6 mm
 Package includes: 5 pieces
Pinout
The 10K Pot Potentiometer has three pins:
Pin 1: CCW (Counter-Clockwise) terminal
 Pin 2: Wiper terminal
 Pin 3: CW (Clockwise) terminal
Code Examples
### Example 1: Analog Voltage Divider with Arduino
In this example, we will use the 10K Pot Potentiometer to create an analog voltage divider circuit with an Arduino board.
Circuit Diagram
Connect Pin 1 (CCW) to GND
 Connect Pin 2 (Wiper) to Analog Input A0 on the Arduino board
 Connect Pin 3 (CW) to VCC (5V)
Code
```c
const int potPin = A0;  // Analog input pin
int potValue = 0;        // Variable to store the potentiometer value
void setup() {
  Serial.begin(9600);
}
void loop() {
  potValue = analogRead(potPin);
  int voltage = map(potValue, 0, 1023, 0, 5000);  // Convert analog value to voltage (0-5V)
  Serial.print("Voltage: ");
  Serial.print(voltage);
  Serial.println(" mV");
  delay(50);
}
```
In this example, we use the `analogRead()` function to read the analog value from the potentiometer and map it to a voltage value between 0-5V. The resulting voltage value is then printed to the serial console.
### Example 2: Simple Audio Volume Control with Raspberry Pi
In this example, we will use the 10K Pot Potentiometer to control the volume of an audio output using a Raspberry Pi.
Circuit Diagram
Connect Pin 1 (CCW) to GND
 Connect Pin 2 (Wiper) to GPIO pin 18 on the Raspberry Pi
 Connect Pin 3 (CW) to VCC (3.3V)
Code
```python
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setup(18, GPIO.IN, pull_up_down=GPIO.PUD_UP)  # Set GPIO pin 18 as input
while True:
    pot_value = GPIO.input(18)
    volume = int((pot_value / 1023.0)  100)  # Convert pot value to volume percentage
    print("Volume: {}%".format(volume))
    os.system("amixer -D pulse sset Master {}%".format(volume))  # Set audio volume
    time.sleep(0.1)
```
In this example, we use the `RPi.GPIO` library to read the analog value from the potentiometer and convert it to a volume percentage. We then use the `os` library to set the audio volume using the `amixer` command.
These examples demonstrate the versatility of the 10K Pot Potentiometer in various IoT projects. By adjusting the potentiometer's resistance value, you can control a wide range of applications, from simple voltage dividers to complex audio systems.