Umlaute in den Anzeigen entfernt

This commit is contained in:
2026-01-28 10:29:37 +01:00
parent f26af5e627
commit 811e718b6a

View File

@@ -162,7 +162,7 @@ void processLoanCode(String code) {
delay(2000); delay(2000);
return; return;
} else { } else {
showError("Ungültiger Code!"); showError("Ungueltiger Code!");
lcd.setCursor(0, 1); lcd.setCursor(0, 1);
lcd.print("Versuch "); lcd.print("Versuch ");
lcd.print(failedAttempts); lcd.print(failedAttempts);
@@ -193,7 +193,7 @@ void processLoanCode(String code) {
lcd.clear(); lcd.clear();
lcd.setCursor(0, 0); lcd.setCursor(0, 0);
if (isReturn) { if (isReturn) {
lcd.print("Rückgabe"); lcd.print("Rueckgabe");
} else { } else {
lcd.print("Ausleihe"); lcd.print("Ausleihe");
} }
@@ -211,7 +211,7 @@ void processLoanCode(String code) {
} }
if (doorCount == 0) { if (doorCount == 0) {
showError("Keine Fächer!"); showError("Keine Faecher!");
resetState(); resetState();
return; return;
} }
@@ -221,7 +221,7 @@ void processLoanCode(String code) {
setReturnDate(code); setReturnDate(code);
lcd.clear(); lcd.clear();
lcd.setCursor(0, 0); lcd.setCursor(0, 0);
lcd.print("Rückgabe OK!"); lcd.print("Rueckgabe OK!");
} else { } else {
setTakeDate(code); setTakeDate(code);
lcd.clear(); lcd.clear();
@@ -306,7 +306,7 @@ void openDoor(int doorNumber) {
int pinIndex = doorNumber - 1; int pinIndex = doorNumber - 1;
lcd.setCursor(0, 1); lcd.setCursor(0, 1);
lcd.print("Öffne Fach "); lcd.print("Oeffne Fach ");
lcd.print(doorNumber); lcd.print(doorNumber);
lcd.print(" "); lcd.print(" ");