olkal/HX711_ADC

How do I reading 3 decimal places result?

tazzanai opened this issue · 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?

olkal commented

Hi!
Floats prints with 2 decimals as default, you can change it to 3 decimals like this: Serial.println(i, 3);

Thank you, olkal.