

The ALPS Alpine RK09L is a 9 mm rotary potentiometer, a variable resistor designed for precise adjustment of resistance by rotating its shaft. This component is widely used in electronic circuits for applications such as volume control, brightness adjustment, and other scenarios requiring variable control. Its compact size and reliable performance make it a popular choice in consumer electronics, audio equipment, and DIY projects.








The following table outlines the key technical details of the ALPS Alpine RK09L rotary potentiometer:
| Parameter | Specification |
|---|---|
| Manufacturer | ALPS Alpine |
| Part Number | RK09L |
| Resistance Range | 10 kΩ, 50 kΩ, 100 kΩ (varies by model) |
| Tolerance | ±20% |
| Power Rating | 0.05 W (50 mW) |
| Rotation Angle | 300° ± 5° |
| Shaft Length | 15 mm |
| Shaft Diameter | 6 mm |
| Operating Temperature | -10°C to +70°C |
| Mounting Style | Through-hole |
| Life Cycle | 15,000 cycles |
The RK09L potentiometer typically has three pins, as described below:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Terminal 1 | One end of the resistive track. Connect to ground or a reference voltage. |
| 2 | Wiper | The adjustable middle pin that provides the variable resistance output. |
| 3 | Terminal 2 | The other end of the resistive track. Connect to a voltage source or reference. |
Basic Connection:
Adjusting Resistance:
Microcontroller Integration:
Below is an example of how to use the RK09L potentiometer to read analog values with an Arduino UNO:
// Example: Reading a potentiometer value with Arduino UNO
// Connect the potentiometer's wiper (Pin 2) to A0, and the other terminals to 5V and GND.
const int potPin = A0; // Analog pin connected to the potentiometer's wiper
int potValue = 0; // Variable to store the potentiometer reading
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
potValue = analogRead(potPin); // Read the analog value from the potentiometer
Serial.print("Potentiometer Value: ");
Serial.println(potValue); // Print the value to the Serial Monitor
delay(100); // Small delay for stability
}
No Output Voltage:
Inconsistent Readings:
Potentiometer Not Responding:
Q: Can the RK09L be used for high-power applications?
A: No, the RK09L is rated for a maximum power of 50 mW. For high-power applications, consider using a higher-rated potentiometer or a digital potentiometer.
Q: How do I clean a noisy potentiometer?
A: Use a contact cleaner spray to clean the internal resistive track. Rotate the shaft several times to distribute the cleaner evenly.
Q: Can I use the RK09L for digital control?
A: The RK09L is an analog component. However, its output can be read by an ADC (Analog-to-Digital Converter) in microcontrollers for digital processing.
This concludes the documentation for the ALPS Alpine RK09L 9 mm rotary potentiometer.