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
8 changes: 6 additions & 2 deletions pylabrobot/liquid_handling/backends/hamilton/STAR.py
Original file line number Diff line number Diff line change
Expand Up @@ -7419,10 +7419,14 @@ async def ztouch_probe_z_height_using_channel(
)

if tip_len is None:
tip_len = self.head[channel_idx].get_tip().total_tip_length
# currently a bug, will be fixed in the future
# reverted to previous implementation
# tip_len = self.head[channel_idx].get_tip().total_tip_length
tip_len = await self.request_tip_len_on_channel(channel_idx)

# fitting_depth = 8 mm for 10, 50, 300, 1000 ul Hamilton tips
fitting_depth = self.head[channel_idx].get_tip().fitting_depth
# fitting_depth = self.head[channel_idx].get_tip().fitting_depth
fitting_depth = 8 # mm, for 10, 50, 300, 1000 ul Hamilton tips

if start_pos_search is None:
start_pos_search = 334.7 - tip_len + fitting_depth
Expand Down