Arduino Workshop-LED Flashers
Now we are going to the first four projects. These projects all use LED lights in various ways. You will learn about controlling outputs from the Arduino
Parts Required
You can read this book and it will help you to learn more About Arduino Beginning Arduino
Circuit Diagram
First, make sure your Arduino is powered off by unplugging it from the USB cable. Next, take your breadboard, LED, resistor, and wires, and connect everything up as in Circuit Diagram,
When you are sure that everything is connected up correctly, power up your Arduino and connect the USB cable
Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int ledPin = 7; | |
void setup() { | |
pinMode(ledPin, OUTPUT); | |
} | |
void loop() { | |
digitalWrite(ledPin, HIGH); | |
delay(1000); | |
digitalWrite(ledPin, LOW); | |
delay(1000); | |
} |
No comments