Stufin
Home Quick Cart Profile

470K 16mm Rotary Pot(Pack of 5)

Buy Now

Component Name

470K 16mm Rotary Pot (Pack of 5)

Overview

The 470K 16mm Rotary Pot is a type of potentiometer designed for various applications in the Internet of Things (IoT) and electronics projects. This component is a variable resistor that allows for the division of voltage into two parts, enabling the creation of a voltage signal that is proportional to the rotation of the shaft.

Functionality

The primary function of the 470K 16mm Rotary Pot is to convert the mechanical rotation of the shaft into an electrical signal. This is achieved through a resistive track that is connected to the three terminals of the potentiometer. When the shaft is rotated, the wiper (the movable contact) slides along the resistive track, dividing the input voltage into two parts. The output voltage, which is taken from the wiper terminal, is proportional to the rotation of the shaft, making it an ideal component for applications that require position sensing, volume control, and signal adjustment.

Key Features

  • Resistance Value: 470k
  • Shaft Diameter: 16mm
  • Number of Turns: Continuous rotation
  • Linear Taper: The resistive track has a linear taper, ensuring a smooth and consistent output voltage change with shaft rotation
  • Power Rating: 0.05W
  • Insulation Resistance: 100M
  • Dielectric Strength: 500V AC for 1 minute
  • Operating Temperature: -20C to 70C
  • Storage Temperature: -30C to 80C
  • Packaging: Pack of 5 units

Physical Characteristics

The potentiometer has a compact design with a diameter of 16mm and a height of 25mm

The shaft is 16mm in diameter and has a flat top

The component is designed for through-hole mounting on a PCB

Applications

  • Audio Equipment: Volume control, tone control, and balance control
  • Industrial Control: Position sensing, speed control, and signal adjustment
  • Robotics: Position sensing, movement control, and feedback control
  • Automotive: Audio control, sensor calibration, and dashboard controls
  • IoT Projects: Sensor calibration, signal conditioning, and user interface controls
The 470K 16mm Rotary Pot is suitable for a wide range of applications, including

Precautions

Handle the component with care to avoid damage to the wiper terminal and resistive track

Ensure proper electrical connections to prevent overheating and damage

Avoid exposing the component to extreme temperatures, humidity, or vibrations

Certifications and Compliance

The 470K 16mm Rotary Pot complies with relevant industry standards and regulations, including RoHS, REACH, and CE.

Pin Configuration

  • Component Name: 470K 16mm Rotary Pot (Pack of 5)
  • Overview
  • The 470K 16mm Rotary Pot is a 3-pin rotary potentiometer with a resistance of 470k and a compact size of 16mm. It is commonly used in IoT projects and electronic designs to provide adjustable resistance or voltage division. This documentation explains the functionality of each pin and provides a step-by-step guide on how to connect them.
  • Pin Description
  • 1. Pin 1: CLK (Clockwise) or Terminal 1
  • Functionality: This pin is connected to one end of the internal resistor network and represents the "clockwise" or "high" side of the potentiometer.
  • Connection: Normally connected to the power supply (VCC) or a fixed voltage source.
  • 2. Pin 2: WIPER (Center) or Terminal 2
  • Functionality: This pin is connected to the movable wiper contact of the potentiometer, which varies the resistance as the pot is rotated.
  • Connection: Typically connected to the input or output of a circuit, such as a voltage divider or an analog-to-digital converter.
  • 3. Pin 3: CTR (Counterclockwise) or Terminal 3
  • Functionality: This pin is connected to the other end of the internal resistor network and represents the "counterclockwise" or "low" side of the potentiometer.
  • Connection: Normally connected to ground (GND) or a reference voltage.
  • Connection Structure
  • Here is a general connection structure for the 470K 16mm Rotary Pot:
  • Power Supply (VCC) or Fixed Voltage Source:
  • + Connect Pin 1 (CLK) to the positive terminal of the power supply or fixed voltage source.
  • Input/Output Circuit:
  • + Connect Pin 2 (WIPER) to the input or output of the circuit, such as an analog-to-digital converter or a voltage divider.
  • Ground (GND) or Reference Voltage:
  • + Connect Pin 3 (CTR) to the negative terminal of the power supply, ground, or a reference voltage.
  • Example Connection Diagram
  • Here is an example connection diagram:
  • ```
  • +-----------+
  • | VCC (5V) |
  • +-----------+
  • |
  • |
  • v
  • +-----------+
  • | Pin 1 (CLK) |
  • | (470K Rotary Pot) |
  • +-----------+
  • |
  • |
  • v
  • +-----------+
  • | Pin 2 (WIPER) |
  • | ( ADC Input or |
  • | Voltage Divider) |
  • +-----------+
  • |
  • |
  • v
  • +-----------+
  • | GND (0V) |
  • +-----------+
  • |
  • |
  • v
  • +-----------+
  • | Pin 3 (CTR) |
  • | (470K Rotary Pot) |
  • +-----------+
  • ```
  • In this example, the rotary pot is connected to a 5V power supply, an analog-to-digital converter (ADC) input, and ground. The wiper pin is connected to the ADC input, which measures the voltage divided by the rotary pot.

Code Examples

Component Documentation: 470K 16mm Rotary Pot (Pack of 5)
Overview
The 470K 16mm Rotary Pot (Pack of 5) is a high-quality, compact rotary potentiometer suitable for various IoT applications. It features a 16mm diameter and a resistance value of 470k. This component is ideal for projects that require precise angular position sensing or analog signal control.
Pinout
The rotary potentiometer has three terminals:
Pin 1 (CCW): Counter-clockwise terminal
 Pin 2 (Wiper): Center terminal (connected to the moving wiper)
 Pin 3 (CW): Clockwise terminal
Technical Specifications
Resistance: 470k
 Power rating: 0.5W
 Operating temperature: -20C to 70C
 Insulation resistance: 100M
 Dielectric strength: 500V AC/1 minute
Code Examples
### Example 1: Analog Voltage Divider (Arduino)
In this example, we'll use the rotary potentiometer as a voltage divider to control the brightness of an LED.
Hardware Requirements
Arduino Board (e.g., Arduino Uno)
 470K 16mm Rotary Pot (Pack of 5)
 LED
 220 resistor
 Breadboard and jumper wires
Code
```c++
const int potPin = A0;  // Select analog input pin for rotary pot
const int ledPin = 9;  // Select digital output pin for LED
void setup() {
  pinMode(ledPin, OUTPUT);
}
void loop() {
  int sensorValue = analogRead(potPin);  // Read analog value from rotary pot
  int brightness = map(sensorValue, 0, 1023, 0, 255);  // Map sensor value to LED brightness (0-255)
  analogWrite(ledPin, brightness);  // Set LED brightness
  delay(10);
}
```
In this example, the rotary potentiometer is connected to analog input pin A0 on the Arduino board. The `analogRead()` function reads the analog value from the potentiometer, which is then mapped to an LED brightness value using the `map()` function. The resulting brightness value is written to the LED using the `analogWrite()` function.
### Example 2: Digital Control using a Microcontroller (Raspberry Pi)
In this example, we'll use the rotary potentiometer to control a digital output on a Raspberry Pi.
Hardware Requirements
Raspberry Pi (e.g., Raspberry Pi 4)
 470K 16mm Rotary Pot (Pack of 5)
 Breadboard and jumper wires
Code
```python
import RPi.GPIO as GPIO
import time
# Set up GPIO mode
GPIO.setmode(GPIO.BCM)
# Define pins
pot_pin = 17  # GPIO 17 as input for rotary pot
out_pin = 23  # GPIO 23 as output
# Set up input and output pins
GPIO.setup(pot_pin, GPIO.IN)
GPIO.setup(out_pin, GPIO.OUT)
while True:
    # Read digital value from rotary pot
    pot_value = GPIO.input(pot_pin)
# Toggle digital output based on pot value
    if pot_value:
        GPIO.output(out_pin, GPIO.HIGH)
    else:
        GPIO.output(out_pin, GPIO.LOW)
time.sleep(0.01)
```
In this example, the rotary potentiometer is connected to GPIO 17 on the Raspberry Pi. The `GPIO.input()` function reads the digital value from the potentiometer, which is then used to toggle a digital output on GPIO 23 using the `GPIO.output()` function.
Additional Notes
When using the rotary potentiometer, ensure that the circuit is properly debounced to prevent false triggering.
 The rotary potentiometer's mechanical life is limited; avoid excessive rotation or vibration to prolong its lifespan.
By following these examples and technical specifications, you can effectively integrate the 470K 16mm Rotary Pot (Pack of 5) into your IoT projects, leveraging its precision and compact design to achieve a wide range of analog and digital control applications.