Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
김유민gledel
Published

01 Digital/Analogue INPUT/OUTPUT

Bongilcheon High School Fab Lab Academy

BeginnerProtip679
01 Digital/Analogue INPUT/OUTPUT

Things used in this project

Story

Read more

Schematics

untitled_sketch_Lqp9bEYU7J.fzz

Code

Untitled file

Arduino
int led_pin = 11;

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

void loop(){
  digitalWrite(led_pin, HIGH);
  delay(1000);
  digitalWrite(led_pin, LOW);
  delay(1000);
}

Credits

김유민
9 projects • 2 followers
" Never do things others can do and will do if there are things others cannot do or will not do. "
Contact
gledel
100 projects • 116 followers
Looking back on my childhood, I was happy when I was making something and I was proud of myself. "Making is instinct!"
Contact

Comments

Please log in or sign up to comment.