problem monitoring the serial Real from load cell and HX711

Hello :smiley:
I am reading data through the weight sensor of a scale. But when I display it in monitor serie the latter does not display anything. Even if I put the same bode rate
i use HX711

If I remove the wires from the analog port it will work if I put it again it shows nothing
you find the code in attechement and result

ard hx.jpg

Baud rate, after Baudot, Bode was someone else.

All I can suggest is that the call to scale() is hanging for some reason, such as the hardware being not
connected correctly?

You should post code with code tags so it can be copied/pasted. See the </> icon when composing a message.

/* sample for digital weight scale of hx711
 * library design: Weihong Guan (@aguegu)
 * library host on
 *https://github.com/aguegu/ardulibs/tree/3cdb78f3727d9682f7fd22156604fc1e4edd75d1/hx711
 */

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

Your other post.