How to Blink an LED Using Arduino
- TJCreativetech
- Nov 20, 2020
- 1 min read
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);
}
Comments