Trying to use the stepper library, everything works correctly with single steps in the loop, but when I step a large number of steps, ie. myStepper.step(2000), should I expect this procedure to block the loop (delay the code execution) while it steps?
I apologize, I am new to C++ programming and interpreting the libraries is still mostly beyond my capabilities
I have no experience of the library but even if the function does block then why not use myStepper.step(1); and count the number of times that you do it. Doing it that way would allow you 2000 opportunities to do something else between steps.