bogde

Results 56 comments of bogde

the HX711_basic_example.ino should do what you want. if it doesn't, you should post your code, schematic, board used, otherwise it's impossible to get any help

i think you need a library that was written for circuitpython or micropython. two examples that i quickly googled: https://github.com/Miakatt/Hx711_circuitpython https://github.com/SergeyPiskunov/micropython-hx711 note that i didn't test any of those and...

so you mean setting DOUT to INPUT breaks the `is_ready` function? did you test by editing src/hx711.cpp and changing `#define DOUT_MODE INPUT` under `#ifdef ARCH_ESPRESSIF` to `#define DOUT_MODE INPUT_PULLUP` and...

On Windows 10, I found that using WSL works great and it's easy enough for this and other scenarios that require gcc or other build tools. I will try to...

Are you sure your Nodemcu wiring is correct? Can you post a picture or schematic of your wiring?

Are you sure your HX711 board is good? Do you have another one to test?

@amotl I was just looking at this today and while i can confirm the reported issue (E- AGND not connected to GND), actually connecting AGND to GND didn't make a...

yes, that's what i meant but the change was never implemented

just don't call scale.tare() in your setup code.

if you properly calibrate once and then store the calibration value in code, and dont call tare() you should get proper weight after reboot. am i missing something?