Skip to content

Commit

Permalink
Merge pull request #4922 from Opentrons/anuwrag-patch-1
Browse files Browse the repository at this point in the history
Update 6d901d.ot2.apiv2.py
  • Loading branch information
anuwrag authored Oct 20, 2023
2 parents c64b83f + 887007f commit 6468f7f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion protocols/6d901d/6d901d.ot2.apiv2.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from opentrons import protocol_api
from opentrons import types

metadata = {
'protocolName': 'Normalization with a multi-channel pipette \
Expand Down Expand Up @@ -69,9 +70,11 @@ def run(ctx: protocol_api.ProtocolContext):
m300 = ctx.load_instrument('p300_multi_gen2', p300_mount)
m20 = ctx.load_instrument('p20_multi_gen2', p20_mount)

mounted_on = {"left" : types.Mount.LEFT, "right" : types.Mount.RIGHT}

pick_up_current = 0.15 # 150 mA for single tip
ctx._hw_manager.hardware._attached_instruments[
m20._implementation.get_mount()].update_config_item(
mounted_on[m20.mount]].update_config_item(
'pick_up_current', pick_up_current)

tip300ctr = 95
Expand Down

0 comments on commit 6468f7f

Please sign in to comment.