

The SLS 095 Linear Pot by Curtis-Write is a high-precision linear potentiometer designed for applications requiring adjustable voltage levels. This component features a sliding contact that moves along a resistive element, allowing for smooth and accurate control of resistance. Its robust design and reliable performance make it suitable for a wide range of electronic circuits.








The following table outlines the key technical details of the SLS 095 Linear Pot:
| Parameter | Value |
|---|---|
| Manufacturer | Curtis-Write |
| Resistance Range | 10 kΩ |
| Tolerance | ±5% |
| Maximum Voltage | 250 V DC |
| Power Rating | 0.5 W |
| Operating Temperature | -40°C to +85°C |
| Mechanical Travel | 95 mm |
| Lifespan | 1,000,000 cycles |
The SLS 095 Linear Pot has three pins, as described below:
| Pin | Name | Description |
|---|---|---|
| 1 | Terminal 1 | One end of the resistive element. Connect to the voltage source or ground. |
| 2 | Wiper | The sliding contact that provides the adjustable output voltage. |
| 3 | Terminal 2 | The other end of the resistive element. Connect to the voltage source or ground. |
Basic Voltage Divider Setup:
Important Considerations:
Arduino UNO Example: The SLS 095 Linear Pot can be used with an Arduino UNO to read analog voltage values. Below is an example code snippet:
// Arduino code to read the SLS 095 Linear Potentiometer
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
// Map the value to a voltage range (0-5V for Arduino UNO)
float voltage = potValue * (5.0 / 1023.0);
Serial.print("Potentiometer Value: ");
Serial.print(potValue); // Print the raw analog value
Serial.print(" | Voltage: ");
Serial.println(voltage); // Print the calculated voltage
delay(500); // Wait for 500ms before the next reading
}
Connections:
Issue: The potentiometer output is unstable or noisy.
Issue: The slider is difficult to move or feels stuck.
Issue: The output voltage does not vary as expected.
Issue: The potentiometer overheats during operation.
Q: Can the SLS 095 Linear Pot be used for AC signals?
A: Yes, it can be used for low-frequency AC signals, but ensure the voltage and power ratings are not exceeded.
Q: How do I mount the potentiometer securely?
A: Use the mounting holes or brackets provided with the potentiometer. Ensure it is fixed firmly to avoid mechanical stress.
Q: What is the lifespan of the SLS 095 Linear Pot?
A: The potentiometer is rated for 1,000,000 cycles under normal operating conditions.
By following this documentation, you can effectively integrate the SLS 095 Linear Pot into your projects and ensure reliable performance.