top of page
Search

How to Blink an LED Using Arduino

Updated: Apr 28, 2021

Hello My Friends! In this tutorial I will show you how to Blink an Normal LED (Light Emmiting Diode) Using Arduino.



Connection





Hardware Required


1. Arduino Board

2. A Solderless Breadboard

3. A LED

4. Some Jumper Wires



Download Code




Code


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

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





7 views0 comments

Recent Posts

See All

Kommentare


Post: Blog2_Post
bottom of page