

A trimmer potentiometer, commonly referred to as a trimpot, is a small adjustable resistor designed for fine-tuning circuit parameters. It is typically used in applications where precise calibration or adjustment of resistance is required, such as setting bias points, adjusting gain, or calibrating sensors. Trimpots are compact, cost-effective, and available in various resistance values and configurations to suit different circuit requirements.








Below are the general technical specifications for a typical trimpot. Note that specific values may vary depending on the model and manufacturer.
| Parameter | Specification |
|---|---|
| Resistance Range | 100 Ω to 1 MΩ (varies by model) |
| Tolerance | ±10% to ±20% |
| Power Rating | 0.1 W to 0.5 W |
| Adjustment Type | Single-turn or multi-turn |
| Operating Temperature | -55°C to +125°C |
| Mounting Type | Through-hole or surface-mount |
A trimpot typically has three pins, as described below:
| Pin | Description |
|---|---|
| Pin 1 | One end of the resistive track |
| Pin 2 | Wiper (adjustable output, connected to the slider) |
| Pin 3 | The other end of the resistive track |
The resistance between Pin 1 and Pin 3 is fixed, while the resistance between Pin 1 and Pin 2 (or Pin 2 and Pin 3) varies depending on the wiper's position.
A trimpot can be used as a variable resistor to provide an analog input to an Arduino. Below is an example circuit and code:
// Example code to read trimpot value and display it on the Serial Monitor
const int trimpotPin = A0; // Pin connected to the trimpot wiper
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
int trimpotValue = analogRead(trimpotPin); // Read analog value from trimpot
float voltage = (trimpotValue / 1023.0) * 5.0; // Convert to voltage (0-5V)
// Print the raw value and voltage to the Serial Monitor
Serial.print("Trimpot Value: ");
Serial.print(trimpotValue);
Serial.print(" | Voltage: ");
Serial.println(voltage);
delay(500); // Wait for 500ms before the next reading
}
No Change in Resistance:
Trimpot Overheats:
Inconsistent Adjustment:
Mechanical Damage:
Q: Can a trimpot be used as a permanent resistor?
A: While trimpots are designed for calibration and adjustment, they can be left in a circuit permanently. However, for long-term stability, consider replacing the trimpot with a fixed resistor once the desired resistance is determined.
Q: What is the difference between single-turn and multi-turn trimpots?
A: Single-turn trimpots allow for quick adjustments but offer less precision. Multi-turn trimpots provide finer control over resistance adjustments, making them ideal for applications requiring high accuracy.
Q: How do I choose the correct trimpot for my circuit?
A: Consider the required resistance range, power rating, adjustment precision (single-turn vs. multi-turn), and mounting type (through-hole or surface-mount) when selecting a trimpot.