Skip to content

Supriyagowda24/LED-Blink-Arduino-

Repository files navigation

Arduino LED Blinking Project

📌 Objective

To control an LED using Arduino UNO and make it blink at regular intervals.

🔧 Components Used

  • Arduino UNO
  • LED
  • Resistor (220 ohm)
  • Breadboard
  • Jumper wires

🔌 Circuit Connection

  • Connect LED positive leg to digital pin 13 through resistor.
  • Connect LED negative leg to GND.

💻 Code

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

void loop() {
  digitalWrite(13, HIGH);
  delay(1000);
  digitalWrite(13, LOW);
  delay(1000);
}

📷 Output

The LED connected to pin 13 blinks ON and OFF at a 1-second interval.

📚 Conclusion

This project demonstrates the basic working of Arduino UNO and how digital pins can be used to control electronic components like LEDs.

About

Arduino-based LED blinking project demonstrating digital output control, circuit design, and embedded programming basics.

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages