10k Linear Potentiometer Module
zoom_out_map
chevron_left chevron_right

Product images are for informational purposes only and may vary slightly depending on the batch and supplier. Product specifications and prices may be subject to change without notice. We do our best to provide accurate and complete product specifications, but they may not be completely accurate. If you encounter any such situation, please let us know.

The product is intended for specialists and requires qualified and authorized personnel. The product does not include assembly/use instructions . Putting the product into operation by unqualified persons leads to the loss of the warranty according to the Terms and Conditions on the site.

The specified technical parameters (current, power, etc.) represent maximum allowable values under ideal operating conditions. For safe use and optimal lifespan, it is recommended to operate the product continuously at no more than 50% of the specified maximum values.

Linear Potentiometer Module, 10k, 3.3-5V

Ideal for fine tuning in Arduino projects and analog circuits, this 10k slide potentiometer provides fast and precise voltage control by moving the slider. It operates at 3.3V or 5V, provides analog output for real-time position reading, and is suitable for controlling LED brightness, motor speed, or menu navigation.

2.56 € Tax included

2.12 € Tax excluded

No reviews yet
1-2 zile
check In Stoc

Shipping by Thursday 27 August

Close

This product has a warranty of 2 years.

INTERNATIONAL DELIVERY
International fast shipping within EU. Free Shipping for orders above 100 EUR in most EU countries.
FAST DISPATCH 24H
We ship from our stock within 24H
LOYALTY POINTS
You earn points with every order, worth 5%.

10K linear slide potentiometer module, compatible with Arduino and other development boards, is an electronic device used for adjusting the voltage level in analog circuits.

Due to its elongated construction, it allows quick and precise manual adjustment of the variable resistance, making it suitable for Arduino projects, educational experiments, and control applications.

It operates at 3.3V or 5VDC, has an analog output, and can be used for reading the slider position in real time.

 

Specifications:

Operating voltage: 3.3V / 5VDC

Potentiometer type: slide

Resistance: 10K

Output: analog

Dimensions: 90 x 20 mm

 

Pinout:

Arduino Uno Linear Potentiometer
5V VCC
GND GND
A0 DTB

 

Usage:

The module is connected to power via the VCC and GND pins, and the analog output DTB is connected to an analog pin of the microcontroller, for example A0 on the Arduino Uno.

By moving the slider, the output voltage changes progressively, and the value can be read by the microcontroller to control other components, such as the brightness of an LED, the speed of a motor, or the position in a menu.

When connecting an LED to the microcontroller, it requires a resistor of at least 220 Ohms to prevent damage to the microcontroller.

33270

Produs destinat utilizarii in proiecte electronice, automatizari, prototipare, educatie si cercetare.

Produsul trebuie utilizat numai conform specificatiilor tehnice mentionate in descriere si/sau in documentatia produsului.

Avertismente generale de siguranta:

Nu utilizati produsul la tensiuni, curenti sau temperaturi peste valorile specificate.

Montajul si conectarea trebuie realizate de persoane cu cunostinte tehnice minime in domeniul electric/electronic.

Evitati scurtcircuitele, inversarea polaritatii si conectarea gresita a alimentarii.

Nu lasati produsul alimentat nesupravegheat in timpul testelor.

Produsul nu este jucarie si nu este destinat copiilor.

Pentru modulele electronice, se recomanda utilizarea in carcase, panouri sau montaje protejate, dupa caz.

Identificare produs:

Denumirea produsului, codul/SKU-ul si caracteristicile tehnice sunt mentionate in pagina produsului si/sau pe eticheta ambalajului.

Producator / Importator / Distribuitor:

Sigmanortec S.R.L.

Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania

E-mail: [email protected]

Website: www.sigmanortec.ro

Persoana responsabila in UE:

Sigmanortec S.R.L.

Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania

E-mail: [email protected]

Documentatie si siguranta:

Pentru informatii suplimentare, fise tehnice, declaratii de conformitate sau instructiuni, ne puteti contacta la [email protected].

const int potPin = A0;

const int ledPin = 10;

int potValue = 0;

int ledValue = 0;

void setup() {

  pinMode(ledPin, OUTPUT);

  Serial.begin(9600);

}

void loop() {

  potValue = analogRead(potPin);

  ledValue = map(potValue, 0, 1023, 0, 255);

  analogWrite(ledPin, ledValue);

  Serial.print("Potentiometer: ");

  Serial.print(potValue);

  Serial.print("  LED PWM: ");

  Serial.println(ledValue);

  delay(20);

}