From a7511316b1d9b13810edcbd1e4fddb5000e39869 Mon Sep 17 00:00:00 2001 From: Manuel Weiser Date: Sat, 26 May 2018 17:30:57 +0200 Subject: [PATCH] Verbesserung Code und Config --- src/main.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index d7f8f9c..fad9576 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -15,7 +15,8 @@ const int buttonTare = D4; String esp_id = "filwage"; // ESP Name -const int spule = 150.0; //Gewicht Spule in g +const int spule = 150; // Gewicht Spule in g !! setze auf 0 zum Eichen !! +const int ausgleich = 4462 + spule; // Grundgewicht für Eichung const char* ssid = "iApfel"; const char* password = "***REMOVED***"; @@ -128,10 +129,8 @@ void loop() { //scale.tare(); } - float weight = scale.get_units(5)*1000-4446-spule; - // Nullen der Wage mit ca. Trommelgewicht - // Muss auskommentiert werden zum Eichen !!! - if (weight < 0) weight = 0; + float weight = scale.get_units(5)*1000-ausgleich; + if (spule > 0 && weight < 0) weight = 0; int gewicht = weight; int laenge = (gewicht)/3.0;