Skip to content
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(hardware-testing): use instrument context partial tip pickup interface. #14166

Merged
merged 2 commits into from
Dec 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions hardware-testing/hardware_testing/gravimetric/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
)
from opentrons.protocol_api.labware import Well, Labware
from opentrons.protocol_api._types import OffDeckType
from opentrons.protocol_api._nozzle_layout import NozzleLayout
from opentrons.protocols.types import APIVersion
from opentrons.hardware_control.thread_manager import ThreadManager
from opentrons.hardware_control.types import OT3Mount, Axis
Expand Down Expand Up @@ -386,12 +387,7 @@ def _load_pipette(
# NOTE: 8ch QC testing means testing 1 channel at a time,
# so we need to decrease the pick-up current to work with 1 tip.
if pipette.channels == 8 and not increment and not photometric:
hwapi = get_sync_hw_api(ctx)
mnt = OT3Mount.LEFT if pipette_mount == "left" else OT3Mount.RIGHT
hwpipette: Pipette = hwapi.hardware_pipettes[mnt.to_mount()]
hwpipette._config.pick_up_tip_configurations.press_fit.current_by_tip_count[
8
] = 0.2
pipette.configure_nozzle_layout(NozzleLayout.SINGLE, "A1")
return pipette


Expand Down
Loading