//Regita Robi'ah
//A021011
//TP sensor modul 5

#include <HX711_ADC.h> 
#include <Wire.h>
#include <LiquidCrystal_I2C.h> 

HX711_ADC LoadCell(6, 7);
LiquidCrystal_I2C lcd(0x27,16,2);

void setup() {
  LoadCell.begin();
  LoadCell.start(2000);
  LoadCell.setCalFactor(420.0983);
  lcd.begin(16, 2);
  lcd.backlight();

}

void loop() {
  LoadCell.update();
  float i = LoadCell.getData();
  lcd.setCursor(0, 0);
  lcd.print("Weight[kg]:");
  lcd.setCursor(0, 1);
  lcd.print(i);
}