Hx711 based weight machine

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);

}

3 posts were merged into an existing topic: Hx711 weight machine

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.