Introduction: Make Your Weighing Scale Hack Using Arduino and Hx711
I am working on an application where i need to convert the weight of a person to calculate and use it for other parameter.
So i started searching the internet and found many tutorials using the load cell and arduino.
I started by opening up a bathroom scale and using the sensors available in it.
It turned out after trying with the AD620 insrumentation amplifier that i was not getting linear results and the readings were not accurate so i decided to use HX711 instead.
Also the code provided displays the weight in KG and can measure upto 120KGs.
I am publishing this instructable so it helps someone like me to make their project faster.
Step 1: Open Up the Scale.
First you need to open the weighing scale and get rid of the internal circuit to use the load sensors
Step 2: Understanding the Sensor
The load sensor found in the scale is https://www.sparkfun.com/products/10245 4 such sensors are connected in a bridge configuration.
The Sensor has 3 terminal wires as seen in the pic they are:
- Vcc ------ White
- Vss ------ Black
- Signal ------ Red
Generally we consider the white to be signal wire but its not its the red one
Found out my load cell was connected in a bridge configuration in image :
Step 3: Connecting Sensor to Arduino
So the sensor gives the analog voltage as an output to the arduino but the voltage level is too small to be detected by the adc of the arduino and needs to be amplified using instrumentation amplifiers like AD620 or INA125.
Also the ADC on the arduino is 10 bit which provides a maximum of 2^10 ie. 1024 readings compared to HX711 which is 24 bit ADC and easy to interface. HX711 Datasheet
The Hx711 uses SPI interface to communiacate to the Arduino. (Refer Data sheet for more info)
More info on DfRobots
Connecting to Arduino
Connection is pretty simple.
1. Connect the wires from the load sensors E+ E- on the terminals of the sensor
2. Connect the S+ and S- wires on the A+and A- terminals respectively.
3. Connect Vcc and Gnd
4. Connect the Dt terminal to A1 and Sck terminal to A0 (can be changed according to code)
Step 4: Library for Arduino
<p>//The library used for arduino https://github.com/bogde/HX711<br>// LCD can also be used instead of serial #include "HX711.h" // HX711.DOUT - pin 10 // HX711.PD_SCK - pin 11 HX711 scale(10, 11); // parameter "gain" is ommited; the default value 128 is used by the library library*/</p><p>void setup() { Serial.begin(38400); Serial.println("HX711 Demo");</p><p> Serial.println("Before setting up the scale:"); Serial.print("read: \t\t "); Serial.println(scale.read()); // print a raw reading from the ADC Serial.print("read average:\t\t "); Serial.println(scale.read_average(20)); // print the average of 20 readings from the ADC Serial.print("get value: \t\t "); Serial.println(scale.get_value(5)); // print the average of 5 readings from the ADC minus the tare weight (not set yet) Serial.print("get units: \t\t "); Serial.println(scale.get_units(5), 1); // print the average of 5 readings from the ADC minus tare weight (not set) divided by the SCALE parameter (not set yet) </p><p> scale.set_scale(2280.f); // this value is obtained by calibrating the scale with known weights; see the README for details scale.tare(); // reset the scale to 0 Serial.println("After setting up the scale:"); Serial.print("read: \t\t"); Serial.println(scale.read()); // print a raw reading from the ADC Serial.print("read average:\t\t "); Serial.println(scale.read_average(20)); // print the average of 20 readings from the ADC Serial.print("get value: \t\t "); // print the average of 5 readings from the ADC minus the tare weight, set with tare() Serial.println(scale.get_value(5));</p><p>Serial.print("get units: "); Serial.println(scale.get_units(5), 1); // print the average of 5 readings from the ADC minus tare weight, divided by the SCALE parameter set with set_scale Serial.println("Readings:"); }</p><p>void loop() { Serial.print("Weight :"); /* ---------Weight in terms of KG-------------*/ Serial.print(scale.get_units()*0.1 , 1); Serial.print("KG");</p><p> scale.power_down(); // put the ADC in sleep mode delay(5000); scale.power_up(); }</p>
Step 5: More Modifications and Links
You can connect a wifi module to it and upload the readings to an app or web server.
More details can be found here.
Update : 27/7/2015 : Had some issues like lcd displaying black boxes it was fixed by changing the analog pins A1,A0 to other digital pins eg (10,11) in the code.
Thanks: :)
33 Comments
2 years ago
Still waiting for the hardware to arrive, but my sketch is ready. With the current version of HX711.h there is no creator with the pin numbers - you need 2 commands:
int dout = 10;
int sck = 11;
HX711 scale; // create
scale.begin(dout, sck, factor); // set ports and amplification
The rest seems ok.
3 years ago
I have tried these, but no output is coming.
4 years ago
Hey guys, i'm doing a balance system with 4 balances to do a mass balance in a race car (a project of my university). I did all, but the balances display a wrong result. I calibrated the system (individualy) but when i put a 5kg mass in the balance (used to calibration) all display the same value, but if i mount in the balances, one same more and one same less. I don't know what's happening, could it be the cables? (i need a long cable) I'm sorry for my bad english, i'm brazilian. Please Help me! Thanks
Reply 3 years ago
You can divide it in groups of 2 and sum the results of the 2 values, then, just take the average.
Question 4 years ago
Please show me, what is the commands for:
scale.power_down(); // put the ADC in sleep mode
delay(5000);
scale.power_up();
6 years ago
Hello sir,
I followed your instructions but still i get a 0 reading. Can you please help?
Reply 4 years ago
you get 0 reading because the diagram says you connect sck to A0 and dout (dt) to A1 but inside his code he is using pin 10 for dout and 11 for sck. In order to get a result/reading you must change the HX711 scale(10, 11); to HX711 scale(A1, A0);
5 years ago
hello
The load sensor have three wire while in the figure there is four wires for sensor.
we must connect white and black wires to E+ and E- terminals.But only red wire left while we have two terminals A+ and A-. How do I connect one wire to two terminals.?!!!
5 years ago
Hi,
After compiling the codes given, I received an error about the "yield being not declared".
What should i do? thanks
5 years ago
What sensor can i use to measure the weight of a coin?
5 years ago
What am I supposed to do with the black/white leads from each sensor? When only hooking up the red signal wires like you have shown here the readings are all over the place and are unusuable.
Reply 5 years ago
Most scale sensors have 3 wires, V+, gnd and signal. You'll need to find out which are which. An easy way is to measure the resistance between each. You should get 2x the resistance across V+ and gnd as you do across V+ and signal and GND and signal.
The harder part is finding which is V+ and which ground; however, I don't think it matters too much as long as you're consistent.
6 years ago
Can I use HX711 with one sensor and Three resistors to form the Wheat stone Bridge?
6 years ago on Introduction
Really cool idea! What did you use this for?
Reply 6 years ago
I have made same kind of circuit but I am getting a problem in amplifying the voltage. I have tried this with a 3 wired load sensor in which I am keeping 2 resistors on the breadboard and 2 wires (black and white) coming out of load sensor are connected to make a Wheatstone bridge and I am reading the value of voltage between red wire of load sensor and its other end in Wheatstone bridge. Now when I am applying force on load sensor then it's value are changing ( very minute change but still change I have to amplify that). Now my problem is I am able to amplify the value of the voltage but the change is so minute that it's amplification doesn't show up in comparison to the actual voltage. How should I go about it?
Reply 6 years ago
Hi KeyurV1,
Firstly what tools are you using to mesure the voltage? (multimeter, oscilloscope,...)
Then I understood that you made your own wheastone bridge, so you have 4 load sensors? and what is the value (ohm) of the resistances you have plugged?
As you can read in this tutorial, we use a HX711 to amplify the very low voltage changement, does it answer your question??
Hope I'll be able to help you when you would have answer my questions! :D
Reply 6 years ago
I received always this error .
How can i solve this error?
Thanks your reply
^
C:\Users\Kotesz\Documents\Arduino\pontosabb_scale\pontosabb_scale.ino: In function 'void setup()':
pontosabb_scale:14: error: 'scale' was not declared in this scope
Serial.println(scale.read()); // print a raw reading from the ADC
^
C:\Users\Kotesz\Documents\Arduino\pontosabb_scale\pontosabb_scale.ino: In function 'void loop()':
pontosabb_scale:49: error: 'scale' was not declared in this scope
Serial.print(scale.get_units(), 1);
^
exit status 1
'scale' was not declared in this scope
Reply 6 years ago
Hello,
I hope you have fixed up your issues since 3 months...
But if you don't maybe it can be due to :
> HX711 librarie was not imported in arduino IDE
or :
> you are calling scale.read() outside of setup() or loop() functions...
Hope it can help, contact me if you still have bugs ;)
Reply 6 years ago
Hello do you have any idea which sensor to use for 100Kg weigh
Reply 6 years ago
Hi ☺
You can find weight (or load) sensors here :
https://secure.robotshop.com/en/type-s-load-cell-100-kg.html
or here :
https://www.sparkfun.com/products/13332
Firstly it depend of how much you are ready to invest into a load sensor !
Then it is your choice to buy rather on a DIY website or elsewhere such as alibaba etc...
Also use search engine, just type 'weight sensor 100kg' in the search box you will find tones of websites !
Finally I highly recommand you to take car about the "shape" of the sensor (because you have to fix it to something stable).
Have a nice day and tell us about your achievements ; )