Skip to content

Commit

Permalink
move_scope_lift added
Browse files Browse the repository at this point in the history
  • Loading branch information
Ingo Berg committed Jun 12, 2023
1 parent 178dda5 commit 099035c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sentio_prober_control/Sentio/ProberSentio.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,10 @@ def move_scope_z(self, ref: ScopeZReference, z: float) -> float:
resp = Response.check_resp(self.comm.read_line())
return float(resp.message())

def move_scope_lift(self, state: bool) -> float:
self.comm.send(f"move_scope_lift {state}")
Response.check_resp(self.comm.read_line())

def get_scope_xy(self) -> Tuple[float, float]:
self.comm.send("get_scope_xy")
resp = Response.check_resp(self.comm.read_line())
Expand Down

0 comments on commit 099035c

Please sign in to comment.