Beat Your Bit
Published © GPL3+

Know Arduino Family

Brief history about Arduino, its starting, types, as a product & how to use etc.

BeginnerProtip30 minutes1,273
Know Arduino Family

Things used in this project

Story

Read more

Code

Blink Example

Plain text
//Blink
#define LED_PIN 13 //Pin number attached to LED.
void setup()
{
pinMode(LED_PIN, OUTPUT);    //Configure pin 13 to be a digital output.
}
void loop()
{
digitalWrite(LED_PIN, HIGH); //Turn on the LED.
delay(1000);                 //Wait 1 second (1000 milliseconds).
digitalWrite(LED_PIN, LOW);  //Turn off the LED.
delay(1000);                 //Wait 1 second.
}

Credits

Beat Your Bit

Beat Your Bit

1 project • 0 followers
Helping hand for Arduino community. Visit my website www.beatyourbit.com for more info. FB/TW/IG/TG: @beatyourbit

Comments