tech guy
Published

The Blackout Effect

I was experimenting with blink, and edited it.

BeginnerFull instructions provided15 hours586
The Blackout Effect

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Jumper wires (generic)
Jumper wires (generic)
×10
Breadboard (generic)
Breadboard (generic)
×1
LED (generic)
LED (generic)
×4
1000 ohm resistor
×4

Software apps and online services

fritzing
you may not need this, but if it will not open or download, then the problem is probably that you don't have Fritzing.
Arduino IDE
Arduino IDE

Story

Read more

Schematics

the blackout effect

Code

Untitled file

Arduino
void setup()
{
	pinMode(13, OUTPUT);
	pinMode(12, OUTPUT);
	pinMode(11, OUTPUT);
	pinMode(10, OUTPUT);
}

void loop()
{
	digitalWrite(13, HIGH);
	delay(1000);
	digitalWrite(12, HIGH);
	delay(1000);
	digitalWrite(11, HIGH);
	delay(1000);
	digitalWrite(10, HIGH);
	delay(1000);
	digitalWrite(10, LOW);
	delay(1000);
	digitalWrite(11, LOW);
	delay(1000);
	digitalWrite(12, LOW);
	delay(1000);
	digitalWrite(13, LOW);
	delay(1000);

}

Credits

tech guy
7 projects • 9 followers
Contact

Comments

Please log in or sign up to comment.