Lösung Trs Gruppe1

Übernahme aus Lösung, da Gruppe 1 nichts gearbeitet....
This commit is contained in:
trs 2025-01-31 10:52:46 +01:00
parent c43ab91ace
commit f869a17027

View file

@ -35,7 +35,20 @@ void loop() {
case 0: // neue Runde
//Gruppe 1 start ===============================================================================
Tft.setCursorCharacter(1, 1);
Tft.print("neue Runde in ");
for (int j = 3; j > 0; j--) {
Tft.setCursorCharacter(1, 15);
Tft.print(String(j) + " ");
delay(1000);
}
level = 0;
for (int i = 0; i < MAXLEVEL; i++) {
musterVorgabe[i] = random(0, 4);
musterEingabe[i] = -1;
}
state = 1;
//Gruppe 1 ende ================================================================================
break;