1Kg Scale Load Cell Weight Weighing Sensor + HX711 A/D Weighing Module COM45 ,R17

Fr7,000

This straight bar 1kg Load cell (sometimes called a strain gauge) with a complete assembly kit can translate up to 1 kg of pressure (force) into an electrical signal.

In stock

SKU: SEN17363 Category:

Description

This straight bar 1kg Load cell (sometimes called a strain gauge) with a complete assembly kit can translate up to 1kg of pressure (force) into an electrical signal. Each load cell is able to measure the electrical resistance that changes in response to, and proportional of, the strain (e.g. pressure or force) applied to the bar.. This straight bar load cell is made from an aluminium alloy and is capable of reading a capacity of 0~1KG of weight

It has Four lead wires which can be connected to HX711 A/D pressure sensor  .  It is easy to use with driving voltage 5-10V and produce the output voltage as per the force changes over it.

Description:

The module uses 24 high-precision A / D converter chip HX711, is designed for high-precision electronic scale and design, with two analog input channels, the internal programmable gain amplifier integrated multiplier 128. The input circuit can be configured to provide a bridge voltage electrical bridge (such as pressure, weight) sensor model is an ideal high-precision, low-cost sampling front-end module.
*Two selectable differential input channels
*On-chip active low noise PGA with selectable gain of 32, 64 and 128
*On-chip power supply regulator for load-cell and ADC analog power supply
*On-chip oscillator requiring no external component with optional external crystal
*On-chip power-on-reset
*Simple digital control and serial interface: pin-driven controls, no programming needed
*Selectable 10SPS or 80SPS output data rate
*Simultaneous 50 and 60Hz supply rejection
*Current consumption including on-chip analog power supply regulator: normal operation < 1.5mA, power down < 1uA
*Operation supply voltage range: 2.6 ~ 5.5V
*Operation temperature range: -40 ~ +85℃
*Module size: 24mm * 16mm
Load cell size: 80mm X 12.7mm X 12.7mm

Connection:
red to E +
black to E-
green to A +
white to ONE-

Package Included:
1 X Scale Load  (1kg)
1 X HX711 Weighing Sensors

Getting started with the 1Kg Scale Load Cell Weight Weighing Sensor

In the following discussions we will learn how to construct a digital weight scale machine using Arduino which can measure weights from few grams to 1Kg  with reasonable accuracy. We will be calibrating the proposed circuit and finalizing the weight scale machine.

The output signal produced by the load cell is in range of millivolts, so we need an amplifier to convert the signal into a level that we can later transform it into a digital signal and process it. For this purpose, we useHX711 amplifier sensor. The HX711 amplifier sensor includes a HX711 chip with analog-to-digital conversion capability in 24-bit accuracy. The HX711 module amplifies the low-voltage output of the load cell and sends it to the Arduino so that the Arduino eventually calculate weight from this data.

What is a Load Cell?

A Load cell is an aluminium profile with strain gauge attached to 4 sides in Wheatstone bridge configuration

Hardware required

  • 1Kg Scale Load Cell Weight Weighing Sensor + HX711 Load Cell Amplifier
  • Arduino Uno
  • Jumper wires

Connecting the Hardware

You can see the connections between Arduino, load cell and HX711 as shown below.

Note: Be careful about the side of the load cell when you’re putting a weigh on it. Usually, there is an arrow on the module that shows the force direction. With the help of this arrow, you can place the weight and the load cell correctly.

Library

Download the HX711 library here.

Calibrating the circuit

There are two programs; one is the calibration program (finding the calibration factor). Another code is weight measurement program(Testing), the calibration factor found from the calibration program code need to be entered in weight measurement program. The calibration factor determines the accuracy of the weight measurement.

Calibrations Program code:

I used an items, which is 305.9grams as shown below.

Open the Calibration example that came with the “HX711_ADC” library.

Open Arduino IDE and then from the menu:
File->Examples->HX711_ADC->Calibration
Load the example code to your Arduino. It should work without any modifications if you connected the DT output of the HX711 module to the Arduino pin 4, and SCK to the Arduino pin 5.

Start calibration:
Place the load cell an a level stable surface.
Remove any load applied to the load cell.
Send ‘t’ from serial monitor to set the tare offset.

Tare complete
Now, place your known mass on the loadcell.
Then send the weight of this mass (i.e. 100.0) from serial monitor.

Known mass is: 305.90
New calibration value has been set to: (is based on the calibrationValue you got after fixing the load cell and following all the instructions), use this as calibration value (calibrationValue) in your project sketch.

 

 

Open the Arduino Serial Monitor

The calibration factor(Calibrationvalue) determines the accuracy of the weight measurement.

 

Another code is weight measurement program, the calibration factor(2128.59) found from the calibration program code need to be entered in weight measurement program.

Open Arduino IDE and then from the menu:
File->Examples->HX711_ADC->Testing
Replace 696.0 with the calibration factor(Calibrationvalue) that you found. It can be a negative number or a positive number. Now you can measure unknown weights.

Open the Arduino Serial Monitor

Now it can measure unknown weights.