fix: adjust weight threshold for tare check to allow negative values
This commit is contained in:
		| @@ -159,7 +159,7 @@ void loop() { | |||||||
|     lastWeightReadTime = currentMillis; |     lastWeightReadTime = currentMillis; | ||||||
|  |  | ||||||
|     // Prüfen ob die Waage korrekt genullt ist |     // 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) |       if(scaleTareCounter < 5) | ||||||
|       { |       { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user