Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
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
feat(api): Return a defined
tipPhysicallyMissing
error frompickUpTip
commands #15176feat(api): Return a defined
tipPhysicallyMissing
error frompickUpTip
commands #15176Changes from 6 commits
f346d9e
b721310
3f968d2
1e5f497
efc4574
3bc44d5
bad9d6e
2049657
e62f14e
873f55c
c67ead7
835d440
0d93d4e
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this a good idea? Theoretically, we could assume that there is a tip hanging off the bottom of the pipette.
That might be a bit harder to implement and maintain, since there "is a tip" for movement purposes but "there is not a tip" for liquid handling purposes. But it would be safer for the client. Imagine this error triggers falsely because of a flaky sensor, so physically, there actually is a tip attached. Then, if a client commands a
moveToWell
as part of its recovery flow, we probably want the robot to go high enough to clear all the labware on the deck, right?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On the other hand, if a client commands a
moveToWell
to be followed by apickUpTipInPlace
, we want the robot to put the pipette nozzle in the proper tip pickup position, which means acting as if there is no tip attached...There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tips.py
will need this info to logically remove the tip from the tip rack. It's currently getting this info from the command'sparams
, which was quick hack that probably won't scale to other error types.For the sake of being incremental, I'll undo that hack in a separate PR, not this one. So, as of this PR, this data is just in anticipation of that, and is not currently consumed by anything.