Andreas Motl

Results 1525 comments of Andreas Motl

By 87727e03, we added some more variants how to wait for the HX711 chip: ```c++ // Wait for the HX711 to become ready void wait_ready(unsigned long delay_ms = 0); bool...

Also, out of curiosity we have been wondering if the ready event could even be interrupt-triggered like seen in [this example](https://github.com/esp8266/Arduino/issues/584#issuecomment-197062284)? This could make yet another variant for `wait_ready` and...

I think #31, #109 and #111 might also be related. @LwServices already said in #31: > i think it need to be rewritten with attachinterupt or timer?

## Thoughts As this issue just hit @HamidSaffari again (see #135) and the improvements made by #123 obviously haven't been sufficient to solve this, we should think about how to...

Dear Agustin, ### Constructor initialization > once i do `scale.begin(DOUT, CLK);` then the program stop serial printing Just wanted to let you know that by [1], we let the constructor-based...

Dear @CFTechno, > Would like to point out that I used this lib from the beginning on a DUE and never had any problems with it. Thanks for letting us...

If you are still with us, we would also love to hear from you in this context, @jpk73 and @AlbiBone. Thanks!

Hi there, thanks for your feedback @CFTechno regarding DUE clockspeed. What you are saying here in respect to the code snippets displayed in this thread: @CFTechno is absolutely right, you...

> you should wait for the scale to become ready `read()` already **does** `while (!is_ready())` upfront, so it will wait for the HX711 to become ready. I conclude this detail...

> you do not want to write code that goes into a while not ready loop :) I second that and believe the spinlock shouldn't be part of the `read()`...