diff --git a/src/main.cpp b/src/main.cpp index 53534fb..0265cd3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -122,7 +122,7 @@ void loop() { // Ausgabe der Waage auf Display if (pauseMainTask == 0 && weight != lastWeight && hasReadRfidTag == 0) { - (weight < 0 || weight == 1) ? oledShowMessage("0") : oledShowWeight(weight); + (weight < 2) ? oledShowMessage("0") : oledShowWeight(weight); }