#include "hx711.h"
void setup() {
scale.begin(DT_pin, SCK_pin);
scale.set_scale(calibration_factor);
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
if (scale.wait_ready_timeout(1000)){
long weight = scale.get_units(10);
}
}// this speeds up the simulation