#include <Adafruit_Sensor.h>
#define CLK 3
#define DOUT 2
sensor.h scale;
float calibration_factor = -400; //perkiraan nilai awal
float unit;
float ounces;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.println("HX711 calibration");
Serial.println("pastikan diatas loadcell tidak ada benda apapun");
}
void loop() {
// put your main code here, to run repeatedly:
}