Parkmoonsugledel
Published © CC BY-NC-SA

Learn About Arduino: How To Use LEDs

I learned how to use the most basic LED method in the first hour of learning Arduino.

BeginnerShowcase (no instructions)3 minutes524
Learn About Arduino: How To Use LEDs

Things used in this project

Story

Read more

Schematics

LED Schematics

LED Schematics!

Code

LED Code

Arduino
Turn the LED on
int led = 13;

void set up() {
  pinMode(led, OUTPUT);
}

void loop() {
  digitalWrite(led, HIGH);
}

Credits

Parkmoonsu

Parkmoonsu

1 project • 6 followers
A Korean high school student who wants to learn about Arduino!
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