Skip to content

Instantly share code, notes, and snippets.

@yemreeke
Last active November 18, 2020 19:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yemreeke/0d610ae422d75cf6dfbef1b2111897e2 to your computer and use it in GitHub Desktop.
Save yemreeke/0d610ae422d75cf6dfbef1b2111897e2 to your computer and use it in GitHub Desktop.
int sure = 60;
void setup() {
pinMode(2,OUTPUT);
pinMode(3,OUTPUT);
}
void loop() {
for(int i=0;i<3;i++){
digitalWrite(2,HIGH);
delay(sure);
digitalWrite(2,LOW);
delay(sure);
}
for(int i=0;i<3;i++){
digitalWrite(3,HIGH);
delay(sure);
digitalWrite(3,LOW);
delay(sure);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment