কলা
সৌন্দর্য এবং সুস্থতা
ক্রাফট
সংস্কৃতি ও ইতিহাস
বিনোদন
পরিবেশ
খাদ্য ও পানীয়
সবুজ ভবিষ্যৎ
রিভার্স ইঞ্জিনিয়ারিং
বিজ্ঞান
খেলাধুলা
টেকনোলজি
পরিধানযোগ্য
Reading a Potentiometer — SIK Circuit 2
Ed

দ্বারা বনাযা গযা

Ed

17. March 2026

Reading a Potentiometer — SIK Circuit 2

Learn to read analog input from a potentiometer and use it to control LED blink speed. Turn the knob to make the LED blink faster or slower — your first step into analog sensors!

নির্দেশ

1

Parts & Introduction

In this experiment you'll use a potentiometer (a variable resistor with a knob) to control how fast an LED blinks. This introduces analogRead() — reading voltage levels between 0 and 5V as values from 0 to 1023.

Parts Needed

  • 1x Arduino Uno + USB cable
  • 1x Breadboard
  • 1x Potentiometer (10K)
  • 1x LED (any color)
  • 1x 330Ω Resistor
  • 6x Jumper Wires
2

Hardware Hookup

Wiring Instructions

  1. Place the potentiometer in the breadboard. It has three pins.
  2. Connect the left pin to GND and the right pin to 5V (or vice versa).
  3. Connect the middle pin (wiper) to Analog Pin A0.
  4. Place an LED in the breadboard. Connect the positive leg (longer) to Digital Pin 13.
  5. Connect the negative leg (shorter) through a 330Ω resistor to GND.
  6. Connect the 5V and GND rails on the breadboard to the Arduino.
3

Arduino Code

Open the Arduino IDE and upload the following sketch to your Arduino board.

potentiometer.inoarduino
/*
SparkFun Inventor's Kit
Example sketch 02 — POTENTIOMETER

Measure the position of a potentiometer and use it to
control the blink rate of an LED. Turn the knob to make
it blink faster or slower!

This code is completely free for any use.
Visit http://learn.sparkfun.com/products/2 for SIK information.
*/

int sensorPin = 0;    // Potentiometer on analog pin 0
int ledPin = 13;      // LED on digital pin 13

void setup()
{
  pinMode(ledPin, OUTPUT);
}

void loop()
{
  int sensorValue;

  sensorValue = analogRead(sensorPin);

  digitalWrite(ledPin, HIGH);
  delay(sensorValue);

  digitalWrite(ledPin, LOW);
  delay(sensorValue);
}
4

Test & Experiment

What You Should See

The LED blinks faster or slower as you turn the potentiometer knob. At one extreme it blinks very fast, at the other it blinks slowly.

Troubleshooting

  • Sporadically working: The potentiometer pins may not be making good contact. Press it firmly into the breadboard.
  • Not working: Make sure the wiper (middle pin) goes to Analog pin 0, not Digital pin 0.
  • LED not lighting: LEDs only work in one direction. Flip it around.

Experiments to Try

  • Open the Serial Monitor and print the sensorValue to see the raw numbers (0-1023).
  • Use map() to convert the sensor range to a brightness range and control LED brightness with analogWrite().

সামগ্রী

  • SparkFun Inventor's Kit - V3.2 - 1 kitNOK 999.20
    দেখেং
  • Arduino Uno R3 - 1 pieceপ্লেসহোল্ডর
    দেখেং
  • Breadboard - 1 pieceপ্লেসহোল্ডর
    দেখেং
  • Potentiometer (10K) - 1 pieceপ্লেসহোল্ডর
    দেখেং
  • 5mm LED - 1 pieceপ্লেসহোল্ডর
    দেখেং
  • 330 Ohm Resistor - 1 pieceNOK 24.00
    দেখেং
  • Jumper Wires - 6 piecessNOK 39.20
    দেখেং

আবশ্যক উপকরণ

  • Computer with Arduino IDE

CC0 পব্লিক ডোমেন

যহ ব্লূপ্রিংট CC0 কে তহত জারী কিযা গযা হৈ। আপ বিনা অনুমতি মাঁগে ইস কার্য কো কিসী ভী উদ্দেশ্য কে লিএ কॉপী, সংশোধিত, বিতরিত ঔর উপযোগ করনে কে লিএ স্বতংত্র হৈং।

উনকে ব্লূপ্রিংট কে মাধ্যম সে উত্পাদ খরীদকর মেকর কা সমর্থন করেং জহাঁ বে মেকর কমীশন কমাতে হৈং জো বিক্রেতাওং দ্বারা নির্ধারিত হোতা হৈ, যা ইস ব্লূপ্রিংট কা নযা সংস্করণ বনাএঁ ঔর রাজস্ব সাঝা করনে কে লিএ ইসে অপনে ব্লূপ্রিংট মেং কনেক্শন কে রূপ মেং শামিল করেং।

চর্চা

(0)

লॉগ ইন করেং চর্চা মেং শামিল হোনে কে লিএ

টিপ্পণিযাঁ লোড হো রহী হৈং...