Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions pylabrobot/liquid_handling/backends/hamilton/STAR_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -6403,6 +6403,19 @@ async def position_components_for_free_iswap_y_range(self):

return await self.send_command(module="C0", command="FY")

async def request_y_pos_iswap_channel(self):
"""Query the current Y-axis position of the iSWAP channel."""

y_pos_query_increments = await self.send_command(
module="R0",
command="RY",
fmt="ry######",
)

y_pos_query_mm = self.y_drive_increment_to_mm(y_pos_query_increments["ry"])

return round(y_pos_query_mm, 1)

async def move_iswap_x_relative(self, step_size: float, allow_splitting: bool = False):
"""
Args:
Expand Down