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