fix: adjust tare weight tolerance to ignore deviations of 2g

This commit is contained in:
Manuel Weiser 2025-03-31 10:59:54 +02:00
parent 9ed3c70c01
commit 012f91851e

View File

@ -180,7 +180,8 @@ void loop() {
lastWeightReadTime = currentMillis;
// Prüfen ob die Waage korrekt genullt ist
if (autoTare && (weight > 0 && weight < 5) || weight < 0)
// Abweichung von 2g ignorieren
if (autoTare && (weight > 2 && weight < 7) || weight < -2)
{
scale_tare_counter++;
}