We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My original code looked like this:
mot = chipdrive.tmc5130(settings=nema17,loglvl=logging.ERROR) for i in range(2): mot.goto(0.3) mot.goto(0)
This was to check that the index marker came back to the same place each time. I found that I was probably losing some early steps.
Now I have:
mot = chipdrive.tmc5130(settings=nema17,loglvl=logging.ERROR) time.sleep(0.5)
and all is good
Regards
Andy
The text was updated successfully, but these errors were encountered:
ah yes you definately need to jabe a pause at least between the 2 gotos
Sorry, something went wrong.
No branches or pull requests
My original code looked like this:
This was to check that the index marker came back to the same place each time. I found that I was probably losing some early steps.
Now I have:
and all is good
Regards
Andy
The text was updated successfully, but these errors were encountered: