Verbesserung Code und Config

This commit is contained in:
Manuel Weiser 2018-05-26 17:30:57 +02:00
parent b80c965bd6
commit a7511316b1

View File

@ -15,7 +15,8 @@ const int buttonTare = D4;
String esp_id = "filwage"; // ESP Name 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* ssid = "iApfel";
const char* password = "***REMOVED***"; const char* password = "***REMOVED***";
@ -128,10 +129,8 @@ void loop() {
//scale.tare(); //scale.tare();
} }
float weight = scale.get_units(5)*1000-4446-spule; float weight = scale.get_units(5)*1000-ausgleich;
// Nullen der Wage mit ca. Trommelgewicht if (spule > 0 && weight < 0) weight = 0;
// Muss auskommentiert werden zum Eichen !!!
if (weight < 0) weight = 0;
int gewicht = weight; int gewicht = weight;
int laenge = (gewicht)/3.0; int laenge = (gewicht)/3.0;