Blinking LED with Arduino Uno

In this tutorial, we learn about how to blink LEDs using Arduino. This LED Blink Arduino tutorial includes everything about the wiring and programming of this project.

Arduino Uno - LED Blinking

Required Hardware -

1 * Arduino Uno Board

1 * LED

1 * 220-ohm Resistor

1 * Breadboard

2 * Jumper Wires

  • You can buy these components from Amazon by clicking on it

Video Tutorial For This Project

Here is a video tutorial for this project. You can do your whole project with this video.

Credits – techteachervideo

About LED

red led pinout schematic
  • Cathode (-) always needs to be connected with GND.
  • Anode (+) connects with the control LED’s state. (Ex- 13 pin in Arduino Uno board).

Wiring Diagram

diagram for arduino led blink
  • Connect Arduino Board GND pin to LED light (-) pin with a jumper wire.
  • Then, connect Arduino Board 13 pin to LED (+) pin with a remaining jumper wire.
				
					/*
  Blinking LED project.
  Turns on an LED on for one second, then off for one second, repeatedly.
  Last Modification modified 30 March 2020
  by Roy Ben Avraham
 */

// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin 13 as an output.
  pinMode(13, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(13, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);              // wait for a second
  digitalWrite(13, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);              // wait for a second
}

				
			

Feel free to ask any questions about this project in the comment section. Thank you.

8 Responses

  1. I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post…

  2. Hi there! This post couldn’t be written any better! Reading through this post reminds me of my previous room mate! He always kept talking about this. I will forward this article to him. Pretty sure he will have a good read. Thank you for sharing!

  3. You really make it appear really easy with your presentation however I to find this matter to be really one thing that I feel I’d by no means understand. It seems too complex and extremely large for me. I am having a look ahead for your subsequent submit, I’ll try to get the grasp of it!

  4. I feel that is among the most important info for me. And i am happy reading your article. But wanna commentary on some basic things, The site style is perfect, the articles is really excellent : D. Just right job, cheers

  5. Somebody essentially help to make seriously articles I would state. This is the very first time I frequented your web page and thus far? I amazed with the research you made to make this particular publish amazing. Wonderful job!

Leave a Reply

Your email address will not be published. Required fields are marked *