#include "HX711.h"
HX711 load;
void setup() {
Serial.begin(9600);
Serial.println("Initializing the scale");
load.begin(A1, A0);
//load.set_scale(); //The default scale is 1
// load.tare(); // Take 20 readings, the average is the tare weight.
load.set_scale(420);
}
void loop() {
Serial.println(load.get_units(), 1);
delay(1000);
}