Adam Radjabov
Published © GPL3+

Led project

This is a led project if your new to arduino projects.

BeginnerShowcase (no instructions)30 minutes10
Led project

Things used in this project

Story

Read more

Custom parts and enclosures

led diagram

this is the diagram

Schematics

led diagram

this is the diagram

Code

led code

JavaScript
this is the code
// Project 1 - LED Flasher
int ledPin = 8;
void setup() {
 pinMode(ledPin, OUTPUT);
}
void loop() {
 digitalWrite(ledPin, HIGH);
 delay(1000);
 digitalWrite(ledPin, LOW);
 delay(1000);
}

Credits

Adam Radjabov
8 projects • 0 followers

Comments