Skip to content

Instantly share code, notes, and snippets.

@dsvakola
Created January 10, 2019 05:43
Show Gist options
  • Save dsvakola/42d8eac6fc44e8032f0e596d454cb61a to your computer and use it in GitHub Desktop.
Save dsvakola/42d8eac6fc44e8032f0e596d454cb61a to your computer and use it in GitHub Desktop.
/*
* Single Blinking LED program for Arduino UNO
* Date: 24.11.2018
* Vidyasagar Academy, Akola
*/
int LED=13; // The variable LED is assigned to pin-13
void setup() // Here we define the output or input pin
{
pinMode(LED, OUTPUT); // defined pin-13 as output pin
}
void loop() // infinite loop to produce continuous action
{
digitalWrite(LED, HIGH); // LED will become ON
delay(1000); // it will remain ON for 1 second
digitalWrite(LED, LOW); // LED will become OFF
delay(1000); // it will remain OFF for 1 second
// after this last line the program will start again
// and again to repeat the blinking of the LED
// up to infinity.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment