ART
BEAUTY & WELLNESS
CRAFT
CULTURE & HISTORY
ENTERTAINMENT
ENVIRONMENT
FOOD & DRINKS
GREEN FUTURE
REVERSE ENGINEERING
SCIENCES
SPORTS
TECHNOLOGY
WEARABLES
Blinking LED — ඔබේ පළමු Arduino Project
පරිවර්තනය කර ඇත
NFT
Admiral OOM

Created by

Admiral OOM

09. මාර්තු 2026NO
247
1
2
0
0

Blinking LED — ඔබේ පළමු Arduino Project

NFT
The classic first electronics project! Build a blinking LED circuit using an Arduino, a breadboard, a resistor, and a single LED. Perfect for absolute beginners — no soldering required.

Instructions

1

ඔබේ සංරචක එකතු කරන්න

පහත ලේඛනගත සියලුම සංරචක එකතු කරන්න. කිසිදු焊接 අවශ්‍ය නොවේ — සෑම දෙයක්ම බ්‍රෙඩ්බෝඩ්එ එකතු වේ.

Materials for this step:

SparkFun Inventor's Kit - V3.2SparkFun Inventor's Kit - V3.21 kit
Arduino Uno R3Arduino Uno R31 piece
5mm LED (any color)5mm LED (any color)1 piece
220 ohm Resistor (1/4W)220 ohm Resistor (1/4W)1 piece
BreadboardBreadboard1 piece
Jumper Wires (Male-to-Male)Jumper Wires (Male-to-Male)2 pieces
USB-B CableUSB-B Cable1 piece

Tools needed:

Computer with Arduino IDE
2

පරිපථ योजनाबद्ध

සිංහල මගින් අර්ඩුයිනෝ පින් 13 → 220Ω 저항 (R1) → LED (D1) → GND. 저항은 LEDను ​​ रक्षा करने के लिए करंट को सीमित करता है।

Materials for this step:

Arduino Uno R3Arduino Uno R31 piece
5mm LED (any color)5mm LED (any color)1 piece
220 ohm Resistor (1/4W)220 ohm Resistor (1/4W)1 piece
3

එය නැවත සම්බන්ධ කරන්න

  1. LED බ්‍රෙඩ්බෝර්ඩ් එකට ඇතුල් කරන්න — දිගු පාද (anode +) එක පෙළකින්, කෙටි පාද (cathode −) ඊට පස්සේ පෙළකින්.
  2. 220Ω 저항 එর එක පාදය LED cathode ට සමාන පෙළට ඇතුල් කරන්න. අනෙක් පාදය වෙනස් පෙළකට.
  3. Jumper wire LED anode පෙළից → Arduino Pin 13 වෙත.
  4. Jumper wire 저항 නිදහස් පෙළ → Arduino GND වෙත.
ඉඟිය: 저항 LED ඕනෑම පැත්තකට තැබිය හැකි — එය වරاملश සිතියාවක હોඳ පමණයි.

Materials for this step:

5mm LED (any color)5mm LED (any color)1 piece
220 ohm Resistor (1/4W)220 ohm Resistor (1/4W)1 piece
BreadboardBreadboard1 piece
Jumper Wires (Male-to-Male)Jumper Wires (Male-to-Male)2 pieces
4

Upload the Blink Code

Connect Arduino via USB. Open Arduino IDE, select Tools → Board → Arduino Uno, paste the code, and click Upload.
blink.inoarduino
// Blinking LED — Your First Arduino Project
// Turns an LED on for one second, then off for one second, repeatedly.

const int LED_PIN = 13;  // Pin connected to the LED

void setup() {
  pinMode(LED_PIN, OUTPUT);  // Set pin 13 as an output
}

void loop() {
  digitalWrite(LED_PIN, HIGH);  // Turn LED ON
  delay(1000);                  // Wait 1 second

  digitalWrite(LED_PIN, LOW);   // Turn LED OFF
  delay(1000);                  // Wait 1 second
}

// EXPERIMENT IDEAS:
// - Change delay(1000) to delay(100) for fast blinking
// - Change delay(1000) to delay(2000) for slow blinking
// - Try delay(50) for a strobe effect
// - Use different values for ON and OFF times:
//   delay(200) ON, delay(800) OFF = short flash
//   delay(800) ON, delay(200) OFF = long flash

Materials for this step:

Arduino Uno R3Arduino Uno R31 piece
USB-B CableUSB-B Cable1 piece

Tools needed:

Computer with Arduino IDE
5

PCB සැරසිලි (යොමුව)

මෙය PCB සැරසිලි ලෙස පරිපථ පෙන්වයි. මෙම ව්‍යාපෘතිය සඳහා අවශ්‍ය නොවේ — ඉතිරිවලුන් පරිපථ පරිපූර්ණයි — නමුත් සැබෑ තලක ලෙස නිෂ්පාදනය කළ නම් එම පරිපථ කෙබඳු ලෙස දිස්වනු ඇතිදැයි පෙන්වයි.
6

පරීක්ෂණ සහ පර්යේෂණ

LED දැල්වෙනවාද? පිළිවෙතින්! ඔබ දැන් දෘඩ උපකරණ ක්‍රමලේඛනය කර ඇත.

ගැටළු විසඳීම:
  • LED ආලෝකිත නොවනවාද? LED පෙරලන්න — දිගු දෙපැත්ත Pin 13 දෙසට.
  • LED සක්‍රිය ව ඉන්නවාද? කේතය සফලව උඩුගත වී ඇතිදැයි පරීක්ෂා කරන්න.
  • කිසිවක් සිදු නොවේද? තාරයම් 2 පියවරේ ස්කිමාටිකයට ගැලපෙන්නේදැයි තහවුරු කරන්න.

ඉදිරි පර්යේෂණ:
  • delay() අගයන් වෙනස් කර දැල්වීමේ වේගය පාලනය කරන්න
  • Pin 12 හි දෙවන LED එක් කරන්න
  • RGB LED සමඟ ප්‍රතිස්ථාපනය කරන්න (SIK Circuit 3 බලන්න)

Materials

7

Tools Required

2
Estimated Total
$105.00

CC0 Public Domain

This blueprint is released under CC0. You are free to copy, modify, distribute, and use this work for any purpose, without asking permission.

Support the Maker by purchasing products through their Blueprint where they earn a Maker Commission set by Vendors, or create a new iteration of this Blueprint and include it as a connection in your own Blueprint to share revenue.

සාකච්ඡාව

(0)

පිවිසෙන්න සාකච්ඡාවට සම්බන්ධ වීමට

අදහස් පූරණය කරමින්...