Skip to content

Instantly share code, notes, and snippets.

@ssov
Created January 25, 2012 00:27
Show Gist options
  • Save ssov/1673768 to your computer and use it in GitHub Desktop.
Save ssov/1673768 to your computer and use it in GitHub Desktop.
あれ
void setup()
{
int i;
for(i=2; i<=11; i++) {
pinMode(i, OUTPUT);
}
}
void loop()
{
int i;
for(i=2; i<=11; i++) {
if(i==2) {
digitalWrite(11, LOW);
}
else {
digitalWrite(i-1, LOW);
}
digitalWrite(i, HIGH);
delay(50);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment