5Kg Scale Load Cell Weight Weighing Sensor SENS32 ,R34

Fr5,950

In stock

SKU: SEN5894 Category:

Description

This straight bar load cell (sometimes called a strain gauge) can translate up to 5kg 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. With this gauge you will be able to tell just how heavy an object is, if an object’s weight changes over time, or if you simply need to sense the presence of an object by measuring strain or load applied to a surface.

Each straight bar load cell is made from an aluminum-alloy and is capable of reading a capacity of 5kg.

Model: YZC-131A
Dimensions: 75×12.7x8mm (L x W x H)
Range: 5 kg
Rated Load: 2 kg
Rated output: 1.0 ± 0.1mV / V
Nonlinear: ± 0.05% F.S
Hysteresis: 0.0% F.S
Repeatability: 0.05% F.S
Creep (5 minutes): 0.05% F.S
Temperature Effect on Output: 0.003% F.S /°C
Zero output: ± 0.2 mV / V
Input impedance: 1050 ± 10% Ω
Output impedance: 1000 ± 10% Ω

Insulation resistance: ≥2000 MΩ
Operating temperature range: -21 ~ 40°C
Recommended for: kitchen scales
Weight:21g

The full-bridge structure, the four leads, easy to use, plus driving voltage 5-10V, force changes in the output voltage signal directly.
Wiring:

Red voltage + E,

Black line voltage -E,

Green line signals + S,

White line signal -S

The sensor is fixed at one end through the screw hole, and the other end left floating state, applied according to label directions direction of gravity. In particular, note that you must not directly push the white plastic cover part, in order to avoid damage of the sensor.

 

Getting started with the 5 Kg 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 5Kg  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

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

Connecting the Hardware

Load cell connection HX711 to Arduino and load cell.

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, 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 244.7 grams 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: 244.7
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.

The calibration factor(Calibrationvalue) is 34.38 that I found.

Another code is weight measurement program(Testing), the calibration factor(34.38) 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.