IoTBoysRajiv SharmaShambhoo kumar
Published

LED Blinking Arduino Project

This is very basic project who wants to start learning Arduino and Internet of Things.

BeginnerProtip2 hours13,654
LED Blinking Arduino Project

Things used in this project

Story

Read more

Schematics

Circuit Design

Circuit design for LED blinking project

Code

Source Code

C/C++
Source code for LED blinking project
int PINNo=5;
void setup() {
pinMode(PINNo,OUTPUT);
}
void loop() {
digitalWrite(PINNo,HIGH);
delay(2000);
digitalWrite(PINNo,LOW);
delay(2000);
}

Credits

IoTBoys

IoTBoys

9 projects • 115 followers
Watch, Learn and Built IoT projects | DIY IoT Projects | IoT Projects for College Student.
Rajiv Sharma

Rajiv Sharma

17 projects • 71 followers
Having more than 10 years of experience in IoT and software technology. Founded IoTBoys to share knowledge with IoT enthusiasts.
Shambhoo kumar

Shambhoo kumar

4 projects • 43 followers

Comments