

A trimmer potentiometer, commonly referred to as a trimpot, is a small adjustable resistor used to calibrate or fine-tune electronic circuits. It typically features three terminals and allows for precise adjustments of resistance, making it an essential component in applications where fine control of voltage or current is required. Trimpots are widely used in devices such as amplifiers, sensors, and oscillators to ensure optimal performance.








Below are the general technical specifications for a standard 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 Voltage | Up to 50 V (varies by model) |
| Operating Temperature | -55°C to +125°C |
| Terminal Configuration | 3 terminals: input, output, and wiper |
The trimpot typically has three terminals, as described below:
| Pin | Name | Description |
|---|---|---|
| 1 | Input | Connects to one end of the resistive track. |
| 2 | Wiper | The adjustable terminal that moves along the resistive track to vary resistance. |
| 3 | Output | Connects to the other end of the resistive track. |
A trimpot can be used as a variable resistor to control the brightness of an LED. Below is an example circuit and code:
// Define pin connections
const int trimpotPin = A0; // Analog pin connected to the trimpot wiper
const int ledPin = 9; // PWM pin connected to the LED
void setup() {
pinMode(ledPin, OUTPUT); // Set LED pin as output
}
void loop() {
int sensorValue = analogRead(trimpotPin); // Read the trimpot value (0-1023)
// Map the sensor value to a PWM range (0-255)
int brightness = map(sensorValue, 0, 1023, 0, 255);
analogWrite(ledPin, brightness); // Set LED brightness
}
Trimpot Not Adjusting Properly:
Incorrect Resistance Range:
Overheating:
No Output Voltage:
Q: Can a trimpot be used as a permanent resistor in a circuit?
A: While trimpots are designed for calibration and fine-tuning, they can be used as permanent resistors in low-power applications. However, they are not as robust as fixed resistors for long-term use.
Q: How do I choose between a single-turn and a multi-turn trimpot?
A: Use a single-turn trimpot for quick, coarse adjustments and a multi-turn trimpot for precise, fine adjustments.
Q: Can I use a trimpot to control high currents?
A: No, trimpots are not designed to handle high currents. Use them only in low-power applications within their specified ratings.