Skip to content

Commit 7edd849

Browse files
committed
add move_iswap_{x,y,z} to STARChatterboxBackend
1 parent f9e0256 commit 7edd849

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

pylabrobot/liquid_handling/backends/hamilton/STAR_chatterbox.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,3 +143,12 @@ async def pierce_foil(
143143
f"piercing foil | wells: {wells} | piercing channels: {piercing_channels} | hold down channels: {hold_down_channels} | "
144144
f"move inwards: {move_inwards} | spread: {spread} | one by one: {one_by_one} | distance from bottom: {distance_from_bottom}"
145145
)
146+
147+
async def move_iswap_x(self, x_position: float):
148+
print("moving iswap x to", x_position)
149+
150+
async def move_iswap_y(self, y_position: float):
151+
print("moving iswap y to", y_position)
152+
153+
async def move_iswap_z(self, z_position: float):
154+
print("moving iswap z to", z_position)

0 commit comments

Comments
 (0)