Sorry I miss something. we use arduino due and for the HX711.h library as to which you suggested is what we are currently using and the output seems not that good.
NOTE: Additional Problem is that yield() function seems have conflict with scheduler when both integrated.
When we run both devices independently, the output has a good result though after integrating the problem occur. We use L298N driver for the stepper motor.
I don't know anything about that Scheduler library. I am generally suspicious that things like waste CPU cycles doing something that could just as easily be done using millis() as illustrated in Several Things at a Time
That said, it seems to me that you have your code organised backwards. I would schedule the scale readings because they don't need to be done nearly as often as you need the stepper to step.
And look at the AccelStepper library - it is designed to run in the background.
Finally, an L298 is a poor choice for driving a stepper motor. If you use a specialized stepper driver that takes step and direction signals it removes a lot of calculation from the Arduino.
Good day sir robin, my overall objective is to monitor the load cell output constantly while the stepper motor turns, as the load cell sensor output has an increasing value the stepper motor will turn counter-clockwise and when the load cell sensor output has an decreasing value the stepper motor know turns clockwise.
Another additions is that the stepper motor we use is a bipolar 4 leads.
Yes, the Arduino can do this. Can you do it? That is the question.
We already know a little of what you tried in the earlier thread. But how about you bring us up to date with what you've tried since then? Post your code.