Load Cell of 5 Kg with HX711 Module with Arduino

It is not working, i mean the sensor is not becoming active how sensor become active and give correct values. I have connected correct pin configuration and tried different codes but it not giving correct values.

Please help me by giving correct code with instructions how to active it. Plz plz plz.

I moved your topic to an appropriate forum category @babu_bhia45.

In the future, please take some time to pick the forum category that best suits the subject of your topic. There is an "About the _____ category" topic at the top of each category that explains its purpose.

This is an important part of responsible forum usage, as explained in the "How to get the best out of this forum" guide. The guide contains a lot of other useful information. Please read it.

Thanks in advance for your cooperation.

Please, using bar tools tags " < code > " , post your code.

#include <DFRobot_HX711.h>
DFRobot_HX711 MyScale(A2, A3);

void setup() {
Serial.begin(9600);
}

void loop() {
// Get the weight of the object
Serial.print(MyScale.readWeight(), 1);
Serial.println(" g");
delay(200);
}

Follow this excellent tutorial:
https://learn.sparkfun.com/tutorials/getting-started-with-load-cells/all

Please, post your code between tags, click bar tools " < code > ".

See your code at:

Click HX711 to adjust weight.

To show the correct weight, I needed to multiply by the factor 474.29, but I didn't study the library to see the reason for this.