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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Calibrating the table fails for Z axis after sucessfully calibrating X and Y axis.
Issue: an improper way to tell that 2 ncal finished moving, by testing for pos of Z is zero.
2 ncal
Solution: use status bit 0 to determine if an axis is moving:
res.write("2 ncal") while int(res.query("st")) & 0x1: ...
The text was updated successfully, but these errors were encountered:
fixes #214
4021cd1
table is_moving, bump version, changelog
refs #214
c7b1d6d
reconnect resource on exception (workaround)
arnobaer
Successfully merging a pull request may close this issue.
Calibrating the table fails for Z axis after sucessfully calibrating X and Y axis.
Issue: an improper way to tell that
2 ncal
finished moving, by testing for pos of Z is zero.Solution: use status bit 0 to determine if an axis is moving:
The text was updated successfully, but these errors were encountered: