

The PR-Rotary Potentiometer is a variable resistor designed to adjust voltage levels in a circuit. By varying its resistance, it allows for precise control of current flow and signal levels. This component is widely used in applications such as volume control in audio devices, brightness adjustment in lighting systems, and as an input device in microcontroller-based projects.








The following table outlines the key technical details of the PR-Rotary Potentiometer:
| Parameter | Specification |
|---|---|
| Manufacturer | PR-Rotary Potentiometer |
| Resistance Range | 1 kΩ to 1 MΩ (varies by model) |
| Tolerance | ±10% |
| Power Rating | 0.25 W (250 mW) |
| Maximum Voltage | 250 V DC |
| Operating Temperature | -40°C to +85°C |
| Rotational Life | 10,000 cycles |
| Shaft Rotation Angle | 300° ± 5° |
The potentiometer typically has three pins, as described below:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Terminal 1 | One end of the resistive track. Connect to the circuit's voltage source. |
| 2 | Wiper | The adjustable middle pin. Outputs the variable voltage based on rotation. |
| 3 | Terminal 2 | The other end of the resistive track. Connect to ground or another circuit. |
Basic Voltage Divider Configuration:
Adjusting Resistance:
Microcontroller Input:
Below is an example of how to use the potentiometer to read analog values with an Arduino UNO:
// Example: Reading potentiometer values with Arduino UNO
const int potPin = A0; // Connect the wiper (Pin 2) to analog pin A0
int potValue = 0; // Variable to store the potentiometer value
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 or Noisy Output:
Potentiometer Not Responding to Rotation:
Microcontroller Not Reading Values:
Q: Can I use the potentiometer to control an LED's brightness directly?
A: No, the potentiometer cannot directly drive an LED. Use it to control the input of a transistor or PWM signal for brightness adjustment.
Q: What happens if I exceed the power rating?
A: Exceeding the power rating can cause the potentiometer to overheat, potentially damaging the resistive track.
Q: Can I use the potentiometer as a fixed resistor?
A: Yes, by setting the wiper to one extreme position, the potentiometer can act as a fixed resistor between the wiper and one terminal.
Q: How do I clean a noisy potentiometer?
A: Use a contact cleaner spray to clean the internal resistive track. Avoid using excessive force on the shaft.
This concludes the documentation for the PR-Rotary Potentiometer.