tazzanai opened this issue 4 years ago · 2 comments
Hi, I would like to find how to read the result of weight by 3 decimal places (now 2). Anybody can help me?
Hi! Floats prints with 2 decimals as default, you can change it to 3 decimals like this: Serial.println(i, 3);
Serial.println(i, 3);
Thank you, olkal.