Open
Description
Hello, in Printrun 2.1.0, there are send
and send_now
methods as part of printcore.py
.
These methods are non-blocking, which means when you send a G0 ...
command to move to a certain position, the method returns immediately without waiting for the printer to finish the movement.
Could blocking versions of these commands be implemented? Is it even possible given the communication protocol? Of course you can calculate a rough estimate of the time it needs to move by dividing the distance by the move rate (in mm/min), but that is not the same as a blocking version of these methods.