Stufin
Home Quick Cart Profile

10K Sliding Potentiometer

Buy Now

Component Name

10K Sliding Potentiometer

Description

A 10K sliding potentiometer is a type of variable resistor that allows users to vary the resistance between two terminals by sliding a contact along a resistive track. It is a common component used in various electronic circuits, particularly in applications where a precise and continuous adjustment of resistance is required.

Functionality

The primary function of a 10K sliding potentiometer is to divide a voltage source into two parts, creating a variable voltage divider. The potentiometer consists of three terminalsthe center terminal (wiper), and two outer terminals (ends). The wiper terminal is connected to a slider that moves along a resistive track, which is typically a conductive plastic or metal film.

When the slider is moved, the resistance between the center terminal and one of the outer terminals changes, while the resistance between the center terminal and the other outer terminal remains constant. This allows the potentiometer to act as a voltage divider, where the output voltage at the center terminal varies depending on the position of the slider.

Key Features

  • Resistance Range: The total resistance of the potentiometer is 10 kilohms (10K), which means the maximum resistance between the outer terminals is 10K ohms.
  • Linearity: The potentiometer has a linear taper, meaning that the resistance changes uniformly as the slider moves along the track.
  • Power Rating: The power rating of the potentiometer specifies the maximum power it can handle without overheating. Typical power ratings for 10K sliding potentiometers range from 0.1W to 1W.
  • Resolution: The resolution of the potentiometer refers to the minimum change in resistance that can be achieved by moving the slider. The resolution of a 10K sliding potentiometer is typically around 0.1% to 1% of the total resistance.
  • Operating Temperature: The operating temperature range of the potentiometer defines the temperature range within which it can function accurately. Typical operating temperatures for 10K sliding potentiometers range from -20C to 70C.
  • Physical Characteristics: 10K sliding potentiometers are available in various packages, including rotary, linear, and logarithmic types. They can be mounted through-hole, surface-mount, or even integrated into a PCB.
  • Applications: 10K sliding potentiometers are commonly used in audio equipment, automotive systems, industrial control systems, and consumer electronics, such as volume controls, tone controls, and sensor interfaces.

Specifications

| Parameter | Value |

| --- | --- |

| Resistance Range | 10 k |

| Tolerance | 10% |

| Power Rating | 0.1W to 1W |

| Linearity | Linear |

| Resolution | 0.1% to 1% |

| Operating Temperature | -20C to 70C |

| Package | Rotary, Linear, Logarithmic |

| Mounting | Through-hole, Surface-mount, PCB |

By understanding the functionality and key features of a 10K sliding potentiometer, designers and engineers can effectively integrate this component into their projects, achieving precise and continuous control over resistance and voltage division.

Pin Configuration

  • 10K Sliding Potentiometer Documentation
  • Overview
  • The 10K Sliding Potentiometer is a variable resistor that allows for smooth and continuous adjustment of resistance between 0 and 10K. It consists of three terminals, making it a popular choice for various IoT applications, such as audio volume control, sensor calibration, and more.
  • Pin Description
  • The 10K Sliding Potentiometer has three pins, labeled as follows:
  • Pin 1: Terminal 1 (Ground)
  • Function: Ground terminal, typically connected to the negative terminal of the power supply or the circuit ground.
  • Description: This pin is connected to one end of the resistive material inside the potentiometer. When the slider is at the extreme left position, the resistance between Terminal 1 and Terminal 2 is 0.
  • Pin 2: Wiper (Middle Terminal)
  • Function: Wiper terminal, which is connected to the movable slider inside the potentiometer.
  • Description: This pin is connected to the slider, which moves along the resistive material when adjusted. The resistance between Terminal 2 and Terminal 1 or Terminal 3 varies depending on the slider's position.
  • Pin 3: Terminal 3 (Signal)
  • Function: Signal terminal, which is connected to the other end of the resistive material inside the potentiometer.
  • Description: This pin is connected to the other end of the resistive material. When the slider is at the extreme right position, the resistance between Terminal 3 and Terminal 2 is 0.
  • Connection Structure
  • Here's a step-by-step guide to connecting the pins:
  • 1. Connect Terminal 1 (Ground):
  • Connect Pin 1 to the negative terminal of the power supply or the circuit ground.
  • 2. Optional: You can connect a bypass capacitor between Terminal 1 and the circuit ground to filter out noise and electromagnetic interference (EMI).
  • 3. Connect Terminal 2 (Wiper):
  • Connect Pin 2 to the input signal or the point in the circuit where you want to apply the variable resistance.
  • 4. Connect Terminal 3 (Signal):
  • Connect Pin 3 to the output signal or the point in the circuit where you want to measure the variable resistance.
  • Example Circuit
  • Here's a simple example circuit showing how to connect the 10K Sliding Potentiometer as a voltage divider:
  • Pin 1 (Terminal 1) Ground
  • Pin 2 (Terminal 2) Input voltage (e.g., 5V)
  • Pin 3 (Terminal 3) Output voltage (e.g., connected to an ADC input or a microcontroller)
  • In this example, the potentiometer acts as a voltage divider, and the output voltage at Pin 3 varies between 0V and 5V depending on the slider position.
  • Important Notes
  • Make sure to handle the potentiometer with care to avoid mechanical damage and electrical noise.
  • Use a stable and clean power supply to ensure accurate and reliable operation.
  • When using the potentiometer with a microcontroller or ADC, ensure that the input voltage and current are within the recommended specifications.
  • By following this documentation and connection structure, you can successfully integrate the 10K Sliding Potentiometer into your IoT project and take advantage of its smooth and continuous adjustment capabilities.

Code Examples

10K Sliding Potentiometer Documentation
Overview
The 10K Sliding Potentiometer is a variable resistor that allows for precise adjustments of resistance values. It consists of a fixed resistor with a movable tap that connects to a terminal, allowing the user to vary the resistance between the two fixed terminals. This component is commonly used in IoT projects to control various parameters such as volume, brightness, and speed.
Pinout
The 10K Sliding Potentiometer has three pins:
Pin 1: Left Terminal (one end of the fixed resistor)
 Pin 2: Wiper (movable tap)
 Pin 3: Right Terminal (other end of the fixed resistor)
Usage
The 10K Sliding Potentiometer can be used in various IoT projects, including:
### Example 1: Analog Input (Arduino)
In this example, we will use the 10K Sliding Potentiometer to control the brightness of an LED connected to an Arduino board.
```c
const int potPin = A0;  // Potentiometer connected to analog input 0
const int ledPin = 9;  // LED connected to digital output 9
void setup() {
  pinMode(ledPin, OUTPUT);
}
void loop() {
  int potValue = analogRead(potPin);  // Read potentiometer value (0-1023)
  int brightness = map(potValue, 0, 1023, 0, 255);  // Map value to LED brightness (0-255)
  analogWrite(ledPin, brightness);  // Set LED brightness
  delay(10);
}
```
### Example 2: Digital Input (Raspberry Pi)
In this example, we will use the 10K Sliding Potentiometer to control a digital output (e.g., a relay) connected to a Raspberry Pi.
```python
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
pot_pin = 17  # Potentiometer connected to GPIO 17
relay_pin = 23  # Relay connected to GPIO 23
GPIO.setup(pot_pin, GPIO.IN, pull_up_down=GPIO.PUD_UP)  # Set potentiometer pin as input with pull-up
GPIO.setup(relay_pin, GPIO.OUT)  # Set relay pin as output
while True:
    pot_value = GPIO.input(pot_pin)  # Read potentiometer value (0 or 1)
    if pot_value:
        GPIO.output(relay_pin, GPIO.HIGH)  # Turn relay on if potentiometer is above midpoint
    else:
        GPIO.output(relay_pin, GPIO.LOW)  # Turn relay off if potentiometer is below midpoint
```
### Example 3: Voltage Divider (ESP32)
In this example, we will use the 10K Sliding Potentiometer as a voltage divider to control the voltage output of a voltage regulator connected to an ESP32 board.
```c
const int potPin = 32;  // Potentiometer connected to GPIO 32
const int voutPin = 33;  // Voltage regulator output connected to GPIO 33
void setup() {
  pinMode(potPin, INPUT);
  pinMode(voutPin, OUTPUT);
}
void loop() {
  int potValue = analogRead(potPin);  // Read potentiometer value (0-4095)
  float vout = (potValue / 4095.0)  3.3;  // Calculate output voltage (0-3.3V)
  digitalWrite(voutPin, (int)(vout  255 / 3.3));  // Set voltage regulator output
  delay(10);
}
```
Precautions
Handle the 10K Sliding Potentiometer with care to avoid damaging the internal components.
 Use a breadboard or PCB to connect the potentiometer to ensure reliable connections.
 Adjust the potentiometer slowly and smoothly to avoid sudden changes in resistance.
Specifications
Resistance: 10k
 Power rating: 0.5W
 Voltage rating: 250V
 Operating temperature: -20C to 70C
 Dimensions: 15mm x 10mm x 10mm
By following the examples and guidelines provided, you can effectively utilize the 10K Sliding Potentiometer in your IoT projects.