top of page
Search

How to Blink an LED Using Arduino

Writer's picture: TJCreativetechTJCreativetech

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);
  
}                 





8 views0 comments

Recent Posts

See All

Comments


Post: Blog2_Post

Contact us

Thanks for submitting!

Scan QR Code

YT.png
  • YouTube
facebook_logo-removebg-preview.png
  • Twitter logo
  • discord logo
Glossy-Instagram-logo-PNG-removebg-previ

Copyright ©2021 by TJ CREATIVE TECH

bottom of page