Working an LabPipBlock
This commit is contained in:
parent
13f248aa4a
commit
5c3d35cbfe
@ -57,7 +57,26 @@ class LabPip(LabPis):
|
||||
return self.sendXYZ()
|
||||
|
||||
|
||||
class LabPipBlock():
|
||||
""" Pipettenblock description"""
|
||||
|
||||
def __init__(self,xoffset,yoffset,anz,rows,deltax,deltay):
|
||||
self.xoffset = xoffset
|
||||
self.yoffset = yoffset
|
||||
self.anz = anz
|
||||
self.rows = rows
|
||||
self.deltax = deltax
|
||||
self.deltay = deltay
|
||||
self.akt = 0
|
||||
|
||||
def next(self):
|
||||
if self.akt == self.anz:
|
||||
return f'No more tips !!'
|
||||
else :
|
||||
pass
|
||||
|
||||
|
||||
|
||||
|
||||
#Job 100myl of A in Vial 1
|
||||
v1 = LabPis(200,200,100,21)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user