Skip to content

Instantly share code, notes, and snippets.

@mactkg
Created November 15, 2011 10:36
Show Gist options
  • Save mactkg/1366720 to your computer and use it in GitHub Desktop.
Save mactkg/1366720 to your computer and use it in GitHub Desktop.
Lchika
void setup(){
pinMode(13, OUTPUT);
}
void loop(){
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment