mirror of
https://github.com/deepmodeling/Uni-Lab-OS
synced 2026-05-25 05:09:56 +00:00
修改Z轴最大值无法赋予的bug,
This commit is contained in:
@@ -1078,7 +1078,7 @@ class PRCXI9300Handler(LiquidHandlerAbstract):
|
||||
"ZAgainstTheWall": pip_pos.z - z_wall,
|
||||
"X2Pos": pip_pos.x + self.right_2_left.x,
|
||||
"Y2Pos": pip_pos.y + self.right_2_left.y,
|
||||
"Z2Pos": max(min(pip_pos.z + self.right_2_left.z, self.max_z_pipetting),0),
|
||||
"Z2Pos": max(min((pip_pos.z + self.right_2_left.z), self.max_z_pipetting),0),
|
||||
"X2_Left": half_x,
|
||||
"X2_Right": half_x,
|
||||
"ZAgainstTheWall2": pip_pos.z - z_wall,
|
||||
@@ -2053,7 +2053,7 @@ class PRCXI9300Backend(LiquidHandlerBackend):
|
||||
|
||||
step = self.api_client.Imbibing(
|
||||
axis=axis,
|
||||
dosage=int(volumes[0]),
|
||||
dosage=float(volumes[0]),
|
||||
plate_no=PlateNo,
|
||||
is_whole_plate=False,
|
||||
hole_row=hole_row,
|
||||
|
||||
Reference in New Issue
Block a user