This item has closed 1 buyer bought 1 item
View other items offered by BotShop3178

Similar products

5k Potentiometer
Sold

5k Potentiometer

New 6 were available
R5.99
Shipping
R65.00 Standard shipping applies to orders under R100.00, in most areas in South Africa. R35.00 Standard shipping applies to orders over R100.00. Some areas may attract a surcharge surcharge. This will be calculated at checkout if applicable.
Check my rate
The seller has indicated that they will usually have this item ready to ship within 3 business days. Shipping time depends on your delivery address. The most accurate delivery time will be calculated at checkout, but in general, the following shipping times apply:
 
Standard Delivery
Main centres:  1-3 business days
Regional areas: 3-4 business days
Remote areas: 3-5 business days
Buyer protection
Get it now, pay later

Product details

Condition
New
Location
South Africa
Product code
EC-023
Bob Shop ID
560389774

A potentiometer henceforth referred to as a pot, is a variable resistor. It is an electrical component with three terminals (i.e. pins or legs): one for input voltage (e.g. 5V), one for output voltage (e.g. GND) and one for picking up the value of the pot (well call this the wiper).

Mechanically speaking, pots are physically adjusted usually using your fingers. Both rotational and linear pots are common.

potentiometers-2.jpg

arduino-potentiometers.jpgpotentiometers.jpg

Pots are used a lot in all kinds of electrical appliances. Volume knobs, light dimmers and faders in audio mixers are often controlled with pots. They also come in digital and even motorized versions, but those are outside of the scope of this post.

If you want to control the speed of your electric motor, the position of your servo, LED brightness, filter cutoff on your synthesizer, gain on your guitar amp or thousands of other cool things in your own embedded system, a pot might just be the solution for you.

arduino_potentiometer_led.png

Code

void setup() { pinMode(3, OUTPUT);}void loop() { int Time = analogRead(A0); Time = map(Time, 0, 1023, 20, 1000); digitalWrite(3,HIGH); delay(Time); digitalWrite(3,LOW); delay(Time); }