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