#include "DFRobot_HX711.h"
DFRobot_HX711 MyScale(A2, A3);
void setup() {
Serial.begin(9600);
}
void loop() {
// Get the weight of the object
//Serial.print(MyScale.readWeight()*4.7429, 1);
Serial.print(MyScale.readWeight()*474.29, 1);
Serial.println(" g");
delay(200);
}