#include<HX771_ADC.h>
#include <EEPROM.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
const int HX771_dout = 12;
const int HX771_sck = 13;
XH771_ADC LoadCell (HX771_dout, HX711_sck);
const int calVal_eepromAdress = 0;
long t;
void setup() {
Serial.begin(9600);
lcd.begin();
pinMode(HX771_dout, INPUT);
delay(1000);
Serial.printIn();
Serial.printIn("Memulai...");
lcd.begin();
LoadCell.begin();
lcd.setCursor(0, 0);
}
void loop() {
// put your main code here, to run repeatedly:
}