Hello, I have some questions in regard to the same codes of this board.
Load Cell Amplifier HX711 Breakout Hookup Guide - SparkFun Learn
Under Arduino Example, there is a code for calibration. It states that “This example assumes pounds (lbs). If you prefer kilograms, change the Serial.print(” lbs"); line to kg. The calibration factor will be significantly different but it will be linearly related to lbs (1 lbs = 0.453592 kg)"
Is it correct to change the code to the following?
Serial.print("Reading: ");
Serial.print(scale.get_units()* 0.453592, 1);
Serial.print(" kg"); //Change this to kg and re-adjust the calibration factor if you follow SI units like a sane person
Serial.print(" calibration_factor: ");
Serial.print(calibration_factor);
Serial.println();