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,678
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
9 projects • 115 followers
Watch, Learn and Built IoT projects | DIY IoT Projects | IoT Projects for College Student.
Contact
Rajiv Sharma
18 projects • 71 followers
Having more than 10 years of experience in IoT and software technology. Founded IoTBoys to share knowledge with IoT enthusiasts.
Contact
Shambhoo kumar
4 projects • 43 followers
Contact

Comments

Please log in or sign up to comment.