We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 609635c commit c94dc30Copy full SHA for c94dc30
pylabrobot/liquid_handling/backends/hamilton/STAR_backend.py
@@ -3147,11 +3147,14 @@ async def iswap_move_picked_up_resource(
3147
3148
assert self.iswap_installed, "iswap must be installed"
3149
3150
+ x_direction = 0 if center.x >= 0 else 1
3151
+ y_direction = 0 if center.y >= 0 else 1
3152
+
3153
await self.move_plate_to_position(
- x_position=round(center.x * 10),
- x_direction=0,
- y_position=round(center.y * 10),
3154
- y_direction=0,
+ x_position=round(abs(center.x) * 10),
3155
+ x_direction=x_direction,
3156
+ y_position=round(abs(center.y) * 10),
3157
+ y_direction=y_direction,
3158
z_position=round(center.z * 10),
3159
z_direction=0,
3160
grip_direction={
0 commit comments