Arduino Beginner Project #1: How to Blink LED using Arduino Uno


Arduino Beginner Project #1: How to Blink LED using Arduino Uno

 

Objective: 

 To blink the LED with delay of one second.

 

Components:

  • Arduino Uno with USB cable
  •  Breadboard
  • Male to male jumper
  • LED
  • Resistor 220 Ohm

 

Schematic Circuit:

 

 Coding using Arduino IDE:

 

 

void setup() 

{

 pinMode(13,OUTPUT); 

 void loop() 

 digitalWrite(13,HIGH); 

 delay(1000); 

 digitalWrite(13,LOW); 

 delay(1000); 

 

Download this project code here: https://drive.google.com/uc?export=download&id=1ujmWTsnMGUdOjf7_b1hrdGhvmO_1EVG2


Watch this project tutorial on Youtube:


Thank you.

 

Comments

Popular posts from this blog

IoT Beginner Project #2: How to Monitor Temperature Data with LED Alert using BLYNK App

IoT Beginner Project #1: How to Blink LED using BLYNK App Button with Internet of Things (IoT) via ESP32 Wifi

Arduino Beginner Project #2: How to Blink RGB (Red Green Blue) LED using Arduino Uno