FAQ

How to display negative weight information?

userHead Tonny12138 2024-07-11 06:51:55 55 Views0 Replies
How to display negative weight information?
2025-07-24 14:52:03

Replace the loop function in the code.

 

void loop() {

Serial.print("weight is: ");

Serial.print(MyScale.readWeight(), 1);

Serial.println(" g");

delay(1000);

}

userHeadPic Tonny12138