yaeseonggledel
Published

My First Activity of Fab Lab

I used the Arduino UNO to control the LED.

BeginnerShowcase (no instructions)30 minutes785
My First Activity of Fab Lab

Things used in this project

Story

Read more

Schematics

Blink LED

For control LED

Code

Blink LED

Arduino
LED control code
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

yaeseong

yaeseong

7 projects • 7 followers
Korean High School Student who wants to expand his knowledge of the World
gledel

gledel

100 projects • 115 followers
Looking back on my childhood, I was happy when I was making something and I was proud of myself. "Making is instinct!"

Comments