JOY-iT SEN-HX711 Load Cell Instruction Manual

June 14, 2024
JOY-It

JOY-iT SEN-HX711 Load Cell

JOY-iT SEN-HX711 Load Cell

GENERAL INFORMAT

Dear customer,
thank you very much for choosing our product.
In following, we will introduce you to what to observe while starting up and using this product.
Should you encounter any unexpected problems during use, please do not hesitate to contact us.

INSTALLATION OF THE LOAD CELL

For accurate measurements it is important to mount the load cell correctly.

The cell must be bolted into a solid base plate with the Integrated holes on one side and the other side bolted to the bearing surface of your measuring point.

Example setup:

INSTALLATION OF THE LOAD CELL

USE WITH THE ARDUINO

Wiring
Arduino Amplifier board Load cell
5 V VCC
GND GND
Pin 3 SCK
Pin 2 DT
E+ Red
E- Black
A- Green
A+ White

Wiring

Installation

To use the load cell, you must install a library. To do this, open your Arduino IDE and click on:
Tools - > Manage libraries…
Now enter HX711 Arduino Library in the search field and install the library HX711 Arduino Library by Bogdan Necula, Andreas Motl.

Code example

In the following code example, your load cell will first be calibrated and then repeatedly outputs the currently measured value.

For calibration you need a known weight. Ideally, it should be half of the maximum measurement weight.
The constant Calibration_Weight must be adjusted with the weight you use for calibration. The weight is specified in grams.

#include "HX711.h" 


// HX711 circuit wiring 
const int LOADCELL_DOUT_PIN = 2;
const int LOADCELL_SCK_PIN = 3;
const int Calibration_Weight = 1000;
HX711 scale;


void setup() { 
Serial.begin(57600);
scale.begin(LOADCELL_DOUT_PIN, LOADCELL_SCK_PIN);
scale.set_scale();
scale.tare();
Serial.println("Calibration");
Serial.println("Put a known weight on the scale");
delay(5000);
float x = scale.get_units(10);
x = x / Calibration_Weight;
scale.set_scale(x);
Serial.println("Calibration finished...");
delay(3000);
}


void loop() { 

if (scale.is_ready()) {
float reading = scale.get_units(10);
Serial.print("HX711 reading: ");
Serial.println(reading);
} else {
Serial.println("HX711 not found.");
}
delay(1000);
}

USE WITH THE RASPBERRY PI

Wiring

Wiring

Raspberry Pi Amplifier board Load cell
3 V3 VCC
GND GND
GPIO 6 SCK
GPIO 5 DT
E+ Red
E- Red
A- Red
A+ White
Installation

To use the load cell, you need a library.
Enter the following commands to download the library:

sudo apt-get install git
sudo git clone <https://github.com/j-dohnalek/hx711py>
Code example

Now you can start the calibration with the following commands:

cd hx711py
sudo python3 calibration.py

For calibration you need a known weight. Ideally, it should be half the maximum measured weight.

Follow the instructions for the calibration that are displayed on the terminal. At the end of the calibration, you can display the values required in the next step by pressing 2 and confirming with Enter.

The output should look something like this:

Code example

Make a note of the values Offset and Scale, you must now insert these into your example programme.

To do this, enter the following command:

sudo nano example_python3.py

Now find the following lines:

Code example

Now enter your previously noted values for Offset and Scale in the corresponding brackets. Save the file with the key combination CTRL + O and Enter and exit the editor with CTRL + X.

Now you can execute the sample programme with the following command:

sudo python3 example_python3.py

ADDITIONAL INFORMATION

Our information and take-back obligations according to the Electrical and Electronic Equipment Act (ElektroG)

Symbol on electrical and electronic equipment:

This crossed-out dustbin means that electrical and electronic appliances do not belong in the household waste. You must return the old appliances to a collection point.
Before handing over waste batteries and accumulators that are not enclosed by waste equipment must be separated from it.

Return options:

As an end user, you can return your old device (which essentially fulfils the same function as the new device purchased from us) free of charge for disposal when you purchase a new device. Small appliances with no external dimensions greater than 25 cm can be disposed of in normal household quantities independently of the purchase of a new appliance.

Possibility of return at our company location during opening hours:
SIMAC Electronics GmbH, Pascalstr. 8, D-47506 Neukirchen-Vluyn, Germany

Possibility of return in your area:
We will send you a parcel stamp with which you can return the device to us free of charge. Please contact us by email at Service@joy- it.net or by telephone.

Information on packaging:
If you do not have suitable packaging material or do not wish to use your own, please contact us and we will send you suitable packaging.

SUPPORT

If there are still any issues pending or problems arising after your purchase, we will support you by E-mail, telephone and with our ticket support system.
Email: service@joy-it.net
Ticket system: http://support.joy-it.net
Telephone: +49 (0)2845 98469-66 (Mon – Thur: 10:00 – 17:00 o‘clock, Fri: 10:00 – 14:30 o‘clock)
For further information please visit our website: www.joy-it.net

Pascalstr. 8 47506 Neukirchen-Vluyn
www.joy-it.net
SIMAC Electronics GmbH

Logo

References

Read User Manual Online (PDF format)

Loading......

Download This Manual (PDF format)

Download this manual  >>

Related Manuals