i'm using esp32 dev kit v1.0 and hx711 module and rsl803 load cell,
i have proper code but only the value comes in 0.000 why please help me
#include "HX711.h"
HX711 W;
void setup() {
Serial.begin(9600);
W.begin(32, 33);
}
void loop() {
Serial.println();
Serial.print(W.get_units(), 3);
delay(100);
}