

The Potentiometer by LI Blocks 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 requiring adjustable parameters, such as volume control, brightness adjustment, and sensor calibration.








Below are the key technical details for the LI Blocks Potentiometer:
| Parameter | Value |
|---|---|
| Resistance Range | 1 kΩ to 1 MΩ (varies by model) |
| Tolerance | ±10% |
| Power Rating | 0.25 W (typical) |
| Operating Voltage | 0–50 V DC |
| Operating Temperature | -40°C to +85°C |
| Adjustment Type | Rotary or linear |
| Shaft Length | 15 mm |
| Mounting Type | Through-hole or panel mount |
The potentiometer typically has three pins, as described below:
| Pin | Name | Description |
|---|---|---|
| 1 | Terminal 1 | One end of the resistive track. Connect to the voltage source or ground. |
| 2 | Wiper | The adjustable middle pin. Outputs the variable voltage based on the knob's position. |
| 3 | Terminal 2 | The other end of the resistive track. Connect to ground or the voltage source. |
Basic Voltage Divider Setup:
Adjusting Resistance:
Connecting to an Arduino UNO:
The following code demonstrates how to read the potentiometer's value and control an LED's brightness:
// Define pin connections
const int potPin = A0; // Potentiometer wiper connected to analog pin A0
const int ledPin = 9; // LED connected to digital pin 9 (PWM-enabled)
void setup() {
pinMode(ledPin, OUTPUT); // Set LED pin as output
Serial.begin(9600); // Initialize serial communication for debugging
}
void loop() {
int potValue = analogRead(potPin); // Read potentiometer value (0-1023)
int ledBrightness = map(potValue, 0, 1023, 0, 255); // Map to PWM range (0-255)
analogWrite(ledPin, ledBrightness); // Set LED brightness
Serial.print("Potentiometer Value: "); // Print the potentiometer value
Serial.println(potValue); // to the Serial Monitor
delay(10); // Small delay for stability
}
No Output Voltage:
Inconsistent or Noisy Output:
Potentiometer Not Adjusting Properly:
Q: Can I use the potentiometer to control AC voltage?
A: No, this potentiometer is designed for DC circuits only. Using it with AC voltage may damage the component.
Q: How do I know which pin is the wiper?
A: The wiper is typically the middle pin. You can confirm this by measuring resistance with a multimeter while adjusting the knob.
Q: What happens if I reverse the connections on Terminal 1 and Terminal 2?
A: The potentiometer will still function, but the direction of adjustment (clockwise vs. counterclockwise) will be reversed.
By following this documentation, you can effectively integrate the LI Blocks Potentiometer into your projects for precise voltage and resistance control.