Zhou Nana
Published

Blinking LED | Getting hands on programming from here

Rome wasn’t built in one day and a program of a thousand megabytes begins with a single line. Let's get started from a simple blink program!

BeginnerProtip2 hours46
Blinking LED | Getting hands on programming from here

Things used in this project

Hardware components

Grove Beginner Kit for Arduino - All-in-one Arduino Compatible Board with 10 Sensors
Seeed Studio Grove Beginner Kit for Arduino - All-in-one Arduino Compatible Board with 10 Sensors
×1

Software apps and online services

Seeed Studio TinkerGen IDE

Story

Read more

Schematics

Grove beginner kit

Code

Blinking LED

C/C++
void setup(){
  pinMode(4, OUTPUT);
  digitalWrite(4,HIGH);
  delay(1000);
  digitalWrite(4,LOW);
  delay(1000);

}



void loop(){


}

Credits

Zhou Nana
1 project • 0 followers
Contact

Comments

Please log in or sign up to comment.