Hello guys, Please I need Help
I wired 4 load cells (from 5kg kitchen scale) with ADC HX711, and I wired the HX711 with the arduino but I don't now if this connection is correct or no (pls see the schematic attached). Also The serial monitor of the Arduino gives me incorrect values (high values, I mean hicgh than 5kg).
This is my program :
// Hx711.DOUT - pin #A2
// Hx711.SCK - pin #A3
#include <Hx711.h>
Hx711 scale(A2, A3);
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.print(scale.getGram(), 1);
Serial.println(" g");
delay(200);
}
Please help me and give me a solution because I don't have an electronic background jsut I do that for an IoT project.

