Parameter | Value/Range |
---|---|
Resistance Range | 1 kΩ to 1 MΩ (varies by model) |
Power Rating | 0.1 W to 2 W |
Tolerance | ±10% to ±20% |
Operating Voltage | Up to 50 V |
Operating Temperature | -40°C to +85°C |
Adjustment Type | Rotary or Linear |
Pin Number | Name | Description |
---|---|---|
1 | Terminal 1 | One end of the resistive element. Connects to the input voltage or ground. |
2 | Wiper | The adjustable contact that moves along the resistive element. |
3 | Terminal 2 | The other end of the resistive element. Connects to the output or ground. |
Connecting the Potentiometer:
Using the Potentiometer in a Circuit:
Important Considerations:
Example: Connecting to an Arduino UNO:
// Example: Reading a potentiometer value with Arduino UNO
const int potPin = A0; // Connect the Wiper (Terminal 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(500); // Wait for 500ms before the next reading
}
Potentiometer not adjusting properly:
No output from the Wiper (Terminal 2):
Potentiometer overheats:
Q: Can I use a potentiometer to control a motor?
A: Yes, but ensure the potentiometer's power rating matches the motor's requirements. Alternatively, use the potentiometer to control a motor driver circuit.
Q: How do I clean a noisy potentiometer?
A: Use a contact cleaner spray to clean the internal resistive element and wiper.
Q: Can I use a potentiometer as a fixed resistor?
A: Yes, set the wiper to the desired position and avoid adjusting it further. However, a fixed resistor is more reliable for permanent use.