fix: adjust weight threshold for tare check to allow negative values

This commit is contained in:
2025-03-24 16:54:36 +01:00
parent f869bcc0c1
commit fc5d77c97b
+1 -1
View File
@@ -156,7 +156,7 @@ void loop() {
lastWeightReadTime = currentMillis;
// Prüfen ob die Waage korrekt genullt ist
if ((weight > 0 && weight < 5) || weight < 0)
if ((weight > 0 && weight < 5) || weight < -1)
{
if(scaleTareCounter < 5)
{