Skip to content

Instantly share code, notes, and snippets.

@ArduinoDiscordBot
Created August 7, 2019 23:19
Show Gist options
  • Save ArduinoDiscordBot/8e2b9354602218a883320f833d608538 to your computer and use it in GitHub Desktop.
Save ArduinoDiscordBot/8e2b9354602218a883320f833d608538 to your computer and use it in GitHub Desktop.
Code by Running shibe#4208 - Wed Aug 07 2019 23:19:26 GMT+0000 (Coordinated Universal Time)
gameEnabled = true;
digitalWrite(redLed,HIGH);
delay(100);
lcd.clear();
lcd.print("New game");
delay(1000);
for ( int a = 5 ; a < 1; a = a - 1 ) {
lcd.clear();
lcd.setCursor(8,0);
lcd.print(a);
delay(1500);
}
delay(5000);
digitalWrite(redLed,LOW);
gameEnabled = false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment