Skip to content

Commit

Permalink
Update 2bba96.ot2.apiv2.py
Browse files Browse the repository at this point in the history
Updating following changes to resolve liquid volume and height tracking command issue due to software update:

Ln 5: from opentrons.protocols.api_support.types import APIVersion

Ln 10: updated apiLevel to 2.13

Ln 74: super().__init__(well.parent, well._core, APIVersion(2, 13))
  • Loading branch information
Abel-Tes authored Nov 9, 2023
1 parent c9bf5f3 commit e5113af
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions protocols/2bba96/2bba96.ot2.apiv2.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
from types import MethodType
import math
import csv
from opentrons.protocols.api_support.types import APIVersion

metadata = {
'title': 'Custom Dilution From CSV',
'author': 'Steve Plonk',
'apiLevel': '2.10'
'apiLevel': '2.13'
}


Expand Down Expand Up @@ -70,7 +71,7 @@ def pause_attention(message):
class WellH(Well):
def __init__(self, well, min_height=5, comp_coeff=1.15,
current_volume=0):
super().__init__(well._impl)
super().__init__(well.parent, well._core, APIVersion(2, 13))
self.well = well
self.min_height = min_height
self.comp_coeff = comp_coeff
Expand Down

0 comments on commit e5113af

Please sign in to comment.