Showing posts with label LED Blinking in Arduino Uno. Show all posts
Showing posts with label LED Blinking in Arduino Uno. Show all posts

Saturday, December 29, 2018

LED Blinking in Arduino Uno

In this article I would like to share with you a very simple program that I wrote to make the LED or Light Emitting Diode blink using Arduino. I am just learning how to write a program using Arduino and I feel it is a very fun way to spend spare time. 

I am currently accepting programming work, it projects, school 

programming projects, thesis and capstone projects, IT consulting 

work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

My personal website is http://www.jakerpomperada.com






Sample  Program Output


Program Listing

/* LED Blinking
 *  Author : Mr. Jake Rodriguez Pomperada,MAED-IT
 *  Date   : December 29, 2018  Saturday
 *  Bacolod City, Negros Occidental
 *  jakerpomperada@yahoo.com
 */

#define LED 13

void setup() {
  pinMode(LED, OUTPUT); 
}

void loop() {
  digitalWrite(LED, HIGH);
  delay(2000);
  digitalWrite(LED,LOW);
  delay(500);
}