कला
सुन्दरता र कल्याण
हस्तकला
संस्कृति र इतिहास
मनोरञ्जन
वातावरण
खाना र पेय
हरित भविष्य
रिभर्स इन्जिनियरिङ
विज्ञान
खेलकुद
प्रविधि
पहिर्न मिल्ने
झलमलाउँदै LED — तपाईंको पहिलो Arduino परियोजना
अनुवादित
NFT
Admiral OOM

Created by

Admiral OOM

09. मार्च 2026NO
247
1
2
0
0

झलमलाउँदै LED — तपाईंको पहिलो Arduino परियोजना

NFT
क्लासिक पहिलो इलेक्ट्रोनिक्स परियोजना! Arduino, ब्रेडबोर्ड, प्रतिरोधक, र एकल LED को उपयोग गरेर झलमलाउँदै LED सर्किट बनाउनुहोस्। बिल्कुल शुरुवातीहरूको लागि परिपूर्ण — कुनै सोल्डरिङ आवश्यक छैन।

Instructions

1

आपके घटकहरू जमा गर्नुहोस्

तलको सूचीबद्ध सभी घटकहरू सংग्रह गर्नुहोस्। कुनै焊接को आवश्यकता छैन — सबै कुरा ब्रेडबोर्डमा प्लग हुन्छ।

Materials for this step:

SparkFun Inventor's Kit - V3.2SparkFun Inventor's Kit - V3.21 किट
Arduino Uno R3Arduino Uno R31 टुक्रा
5mm LED (any color)5mm LED (any color)1 टुक्रा
220 ohm Resistor (1/4W)220 ohm Resistor (1/4W)1 टुक्रा
BreadboardBreadboard1 टुक्रा
Jumper Wires (Male-to-Male)Jumper Wires (Male-to-Male)2 टुक्रा
USB-B CableUSB-B Cable1 टुक्रा

Tools needed:

Computer with Arduino IDE
2

सर्किट योजनाबद्ध

सिग्नल Arduino Pin 13 → 220Ω प्रतिरोधक (R1) → LED (D1) → GND बाट प्रवाह हुन्छ। प्रतिरोधकले LED को सुरक्षा गर्न करेन्ट सीमित गर्छ।

Materials for this step:

Arduino Uno R3Arduino Uno R31 टुक्रा
5mm LED (any color)5mm LED (any color)1 टुक्रा
220 ohm Resistor (1/4W)220 ohm Resistor (1/4W)1 टुक्रा
3

यसलाई वायर गर्नुहोस्

  1. LED लाई ब्रेडबोर्डमा घुसाउनुहोस् — लामो खुट्टा (anode +) एक पङ्क्तिमा, छोटो खुट्टा (cathode −) अर्कोमा।
  2. 220Ω resistor को एक खुट्टा LED cathode जस्तै पङ्क्तिमा घुसाउनुहोस्। अर्को खुट्टा अलग पङ्क्तिमा।
  3. Jumper wire LED anode पङ्क्तिबाट → Arduino Pin 13 सम्म।
  4. Jumper wire resistor खाली पङ्क्तिबाट → Arduino GND सम्म।
सुझाव: Resistor LED को कुनै पनि पक्षमा जान सक्छ — यसलाई श्रृंखलामा हुन आवश्यक छ।

Materials for this step:

5mm LED (any color)5mm LED (any color)1 टुक्रा
220 ohm Resistor (1/4W)220 ohm Resistor (1/4W)1 टुक्रा
BreadboardBreadboard1 टुक्रा
Jumper Wires (Male-to-Male)Jumper Wires (Male-to-Male)2 टुक्रा
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 टुक्रा
USB-B CableUSB-B Cable1 टुक्रा

Tools needed:

Computer with Arduino IDE
5

PCB लेआउट (संदर्भ)

यसले सर्किटलाई PCB लेआउटको रूपमा देखाउँछ। यस प्रकल्पको लागि आवश्यक छैन — ब्रेडबोर्ड पूर्णतया काम गर्छ — तर यसले देखाउँछ कि एउटा वास्तविक बोर्डको रूपमा निर्मित गरिएको भए एउटै सर्किट कस्तो देखिन्थ्यो।
6

परीक्षण र प्रयोग

LED झिमझिमिएको छ? बधाई छ! तपाईंले भर्खास्ट प्रोग्राम गर्नु भएको छ।

समस्या समाधान:
  • LED उज्ज्वल हुन सकेको छैन? LED पलट गर्नुहोस् — लामो खुट्टा Pin 13 तर्फ।
  • LED सधैं अन छ? कोड सफलतापूर्वक अपलोड भएको जाँच गर्नुहोस्।
  • केहि भएन? तार जोडिएको स्केमेटिक चरण २ सँग मेल खाँदो जाँच गर्नुहोस्।

अगलो प्रयोगहरु:
  • 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)

लग इन छलफलमा सामेल हुन

टिप्पणीहरू लोड गर्दै...