Pooja Baraskar
Published © GPL3+

Hello World with LinkIt One

Blinking an LED is same as like writing your first “Hello World’ program.

BeginnerFull instructions provided1,072
Hello World with LinkIt One

Things used in this project

Hardware components

USB-A to B Cable
USB-A to B Cable
×1
LED (generic)
LED (generic)
×1

Story

Read more

Code

Blinky

Arduino
int led = 13;

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

// the loop routine runs over and over again forever:
void loop()
{
    digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
    delay(1000); // wait for a second
    digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
    delay(1000); // wait for a second
}

 

Credits

Pooja Baraskar

Pooja Baraskar

25 projects • 178 followers
Pooja Baraskar is an accomplished software engineer, inventor, and technical author with over a decade of experience in the tech industry.

Comments