སྒྱུ་རྩལ
མཛེས་སྡུག་དང་བདེ་ཐང
བཟོ་རིག
རིག་གནས་དང་ལོ་རྒྱུས
དགའ་སྟོན
ཁོར་ཡུག
ཟས་དང་བཏུང་རྫས
ལྗང་མ་འཇོར་ལུགས
ཕྱིར་འཕྲུལ་རིག
ཚན་རིག
རྩེད་འགྲན
རིག་རྩལ
གྱོན་རུང

অনুবাদ করা হয়েছে
NFT
Blinking LED — Your First Arduino Project
NFTThe 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
1
ཁ་གླེང་ཕོ་ཆེ་ཚུ་སྡེབ་སྒྲིག་གླེང་སྟེ་ལེན་པ།
ཁ་གླེང་ཕོ་ཆེ་ཚུ་སྡེབ་སྒྲིག་གླེང་སྟེ་ལེན་པ།
འོག་སྐོར་དུ་རམ་འདེགས་བྱེ་ཆེ་ཚུ་ཆ་མེད་དུ་ལེན་པ། ལག་རུ་དགོ་མི་འདུག — ཆ་མེད་ཀྱི་ཚུ་ཆ་མེད་གི་བོད་ཀྱི་ཅོད་པེ་ནང་དུ་ཞུགས་སུ་འདེགས་ཡོད།
Materials for this step:
SparkFun Inventor's Kit - V3.21 kit
Arduino Uno R31 piece
5mm LED (any color)1 piece
220 ohm Resistor (1/4W)1 piece
Breadboard1 piece
Jumper Wires (Male-to-Male)2 pieces
USB-B Cable1 pieceTools needed:
Computer with Arduino IDE
2
2
Circuit Schematic
Circuit Schematic
Signal flows from Arduino Pin 13 → 220Ω resistor (R1) → LED (D1) → GND. The resistor limits current to protect the LED.
Materials for this step:
Arduino Uno R31 piece
5mm LED (any color)1 piece
220 ohm Resistor (1/4W)1 piece3
3
Wire It Up
Wire It Up
- Insert the LED into the breadboard — long leg (anode +) in one row, short leg (cathode −) in the next.
- Insert one leg of the 220Ω resistor into the same row as the LED cathode. Other leg in a separate row.
- Jumper wire from LED anode row → Arduino Pin 13.
- Jumper wire from resistor free row → Arduino GND.
Materials for this step:
5mm LED (any color)1 piece
220 ohm Resistor (1/4W)1 piece
Breadboard1 piece
Jumper Wires (Male-to-Male)2 pieces4
4
Upload the Blink Code
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 R31 piece
USB-B Cable1 pieceTools needed:
Computer with Arduino IDE
5
5
PCB འབེད་སྟེགས་ (ལreference་)
PCB འབེད་སྟེགས་ (ལreference་)
འདིས་ circuit ་ PCB འབེད་སྟེགས་ལ་སྟོན་པ་ཡིན། འདི་ project ་འདིའི་དོན་ལུ་དགོས་མི་དགོས་རེད། breadboard ་ལེགས་ཤོས་འདུག་ — ད་ེརང་གིས་ circuit ་དེ་དངོས་དངོས་ board ་གི་སྐུ་གཟུགས་ལ་སྐུལ་བའི་གདེང་སེང་སྟོན་པ་ཡིན།
6
6
ཚོད་སྐུལ་དང་དཔེ་ལ་དགོད།
ཚོད་སྐུལ་དང་དཔེ་ལ་དགོད།
LED འོད་འཕྲེང་གིས་འབར་སྒྲུབ། དགའ་སྤྲོ་ཡི་སྐུལ་སྟེགས། ཁྱེད་ཀྱིས་ཚོད་རིས་ངོས་འཛིན་བྱེད་སྐུལ་གླེང་སྟེགས།
གཞི་རིས་ལེགས་བསྒྲིགས་དགོས་པ།
རམ་འདེགས་གླེང་སྟེགས།
གཞི་རིས་ལེགས་བསྒྲིགས་དགོས་པ།
- LED འོད་འཕྲེང་གིས་མ་འབར་ངེས། LED ལ་ལྡོག་སྐུལ་གླེང་། རིང་པོའི་གླེང་དགེ་Pin 13 ལ་ཕྱོགས་གླེང་དགོས།
- LED དུས་ཡུན་གོ་མོའི་རིང་འོད་འཕྲེང་གིས་འབར་སྲིད། རམ་འདེགས་བྱེད་སྐུལ་དང་ཇེ་དགོས་གླེང་དགོས།
- གང་ཡང་མ་བྱུང་སྲིད། གླེང་སྟེགས་དང་གླེང་དགེ་འདི་གུ་གླེང་ལ་ཐུག་དགོས།
རམ་འདེགས་གླེང་སྟེགས།
delay()གོ་ཕུགས་ཐོག་གླེང་དགེ་འབར་སྲིད་གྱི་སྐུལ་ཆེད་དགོས།- LED གླེང་གྲུབ་གླེང་ Pin 12 ལ་གླེང་དགོས།
- RGB LED ལ་ལྡོག་སྐུལ་གླེང་། (SIK Circuit 3 ལ་ལྟ།)
Materials
7- $105.00
- 1 piecePlaceholder
- Placeholder
- Placeholder
- 1 piecePlaceholder
- Placeholder
Estimated Total
$105.00CC0 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.
