harshithsudhesh
Published © LGPL

Aduino blink

easy, creative and for begginers.

BeginnerProtip7,460
Aduino blink

Things used in this project

Story

Read more

Schematics

led blink

Code

code

ActionScript
Here is the code.
void setup() {
 
pinMode(13,OUTPUT);
}

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

Credits

harshithsudhesh
0 projects • 5 followers

Comments