#include "HX711.h"
#include <LiquidCrystal.h>
HX711 scale;
LiquidCrystal lcd(12, 11, 10, 9, 8, 7);
void setup() {
Serial.begin(9600);
Serial.println("Initializing the scale");
scale.begin(A1, A0);
lcd.begin(16, 2);
// you can now interact with the LCD, e.g.:
//lcd.print(scale.get_units());
}
void loop() {
lcd.print((scale.get_units()/420));
delay(1000);
lcd.clear();
}