Hi,
I am trying trying to calibrate my load cell but the ide keeps on giving me this error. Any help would be much apperciated,
Thanks.
exit status 1
no matching function for call to 'HX711::HX711(int, int)'
This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.
Code
#include <HX711.h>
#define DOUT 3
#define CLK 2
HX711 scale (DOUT ,CLK);
float weight;
float calibration_factor = 419640; // for me this value works just perfect 419640
void setup() {
Serial.begin(9600);
Serial.println("HX711 calibration sketch");
Serial.println("Remove all weight from scale");
Serial.println("After readings begin, place known weight on scale");
Serial.println("Press + or a to increase calibration factor");
Serial.println("Press - or z to decrease calibration factor");
scale.set_scale();
scale.tare(); //Reset the scale to 0
long zero_factor = scale.read_average(); //Get a baseline reading
Serial.print("Zero factor: "); //This can be used to remove the need to tare the scale. Useful in permanent scale projects.
Serial.println(zero_factor);
}
void loop() {
scale.set_scale(calibration_factor); //Adjust to this calibration factor
Serial.print("Reading: ");
weight = scale.get_units(5);
//Serial.print(scale.get_units(), 2);
// Serial.print(" lbs"); //Change this to kg and re-adjust the calibration factor if you follow SI units like a sane person
Serial.print("Kilogram:");
Serial.print( weight);
Serial.print(" Kg");
Serial.print(" calibration_factor: ");
Serial.print(calibration_factor);
Serial.println();
if(Serial.available())
{
char temp = Serial.read();
if(temp == '+' || temp == 'a')
calibration_factor += 10;
else if(temp == '-' || temp == 'z')
calibration_factor -= 10;
}
}