mkganesan1975
Published © GPL3+

Blinking LED

This project is for the very beginner to Arduino World

BeginnerFull instructions provided88
Blinking LED

Things used in this project

Story

Read more

Schematics

Blinking-LED

Code

Blinking-LED

Arduino
#include<Arduino.h>

int pin = 13;
int pause = 1000;


void setup() {
  // put your setup code here, to run once:
  pinMode(pin,OUTPUT);
}

void loop() {
  // put your main code here, to run repeatedly:
digitalWrite(pin, HIGH);
delay(pause);
digitalWrite(pin,LOW);
delay(pause);
}

Credits

mkganesan1975

mkganesan1975

2 projects • 1 follower

Comments