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
26 changes: 26 additions & 0 deletions sentio_prober_control/Sentio/ProberSentio.py
Original file line number Diff line number Diff line change
Expand Up @@ -1335,6 +1335,19 @@ def get_vacuum_status(self, site: ChuckSite | None = None) -> VacuumState:
status = resp.message().split(",")[0]

return VacuumState.fromSentioAbbr(status)

def get_wafer_diameter(self) -> float:
"""Get the diameter of wafer on chuck.

Wraps SENTIO's "get_wafer_diameter" remote command.

Returns:
diameter (float): The wafer diameter in mm.
"""

self.comm.send("get_wafer_diameter")
resp = Response.check_resp(self.comm.read_line())
return float(resp.message())

def move_chuck_hover(self) -> float:
"""Move the chuck to hover height.
Expand Down Expand Up @@ -1377,6 +1390,19 @@ def move_chuck_index(self, ref: str, x_steps: int, y_steps: int) -> tuple[float,

return new_x, new_y

def move_chuck_lift(self) -> float:
"""Move chuck to "Lift" position.

Wraps SENTIO's "move_chuck_lift" remote command.

Returns:
Height (float): The chuck Z position in µm.
"""

self.comm.send("move_chuck_lift")
resp = Response.check_resp(self.comm.read_line())
return float(resp.message())

def move_chuck_xyt(self, x_offset: float, y_offset: float, theta_offset: float) -> None:
"""Move chuck xy and theta to match pattern to field of view center.

Expand Down