-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(api): Experimental, barebones support for dropping stuff in the …
…waste chute (#13828)
- Loading branch information
1 parent
a84f00b
commit 5c49d1a
Showing
13 changed files
with
241 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
class WasteChute: | ||
"""Represents a Flex waste chute. | ||
See :py:obj:`ProtocolContext.load_waste_chute`. | ||
""" | ||
|
||
def __init__( | ||
self, | ||
with_staging_area_slot_d4: bool, | ||
) -> None: | ||
self._with_staging_area_slot_d4 = with_staging_area_slot_d4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
"""Constants for the dimensions of the Flex waste chute. | ||
TODO: These should be moved into shared-data and interpreted by Protocol Engine. | ||
""" | ||
|
||
|
||
from opentrons.types import Point | ||
|
||
|
||
SLOT_ORIGIN_TO_1_OR_8_TIP_A1 = Point(64, 21.91, 144) | ||
SLOT_ORIGIN_TO_96_TIP_A1 = Point(14.445, 42.085, 115) | ||
|
||
# TODO: This z-coord is misleading. We need to account for the labware height and the paddle height; | ||
# we can't define this as a single coordinate. | ||
SLOT_ORIGIN_TO_GRIPPER_JAW_CENTER = Point(64, 29, 136.5) | ||
|
||
# This includes the height of the optional lid. | ||
ENVELOPE_HEIGHT = 154 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.