Working an LabPipBlock

This commit is contained in:
jfsScience 2021-11-03 15:37:17 +01:00
parent 13f248aa4a
commit 5c3d35cbfe

View File

@ -57,7 +57,26 @@ class LabPip(LabPis):
return self.sendXYZ() 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 #Job 100myl of A in Vial 1
v1 = LabPis(200,200,100,21) v1 = LabPis(200,200,100,21)