ThorlabsLTStage

ThorlabsLTStage.PS_3DType

Available functions

  • move_xyz(xyz, x, y, z)
  • move_x_abs(xyz, x)
  • move_y_abs(xyz, y)
  • move_z_abs(xyz, z)
  • move_x_rel(xyz, x)
  • move_y_rel(xyz, y)
  • move_z_rel(xyz, z)
  • get_pos(xyz)
  • get_pos_x(xyz)
  • get_pos_y(xyz)
  • get_pos_z(xyz)
  • home(xyz)
  • home_x(xyz)
  • home_y(xyz)
  • home_z(xyz)
  • set_limits(xyz, low, high)
  • get_limits(xyz)
  • get_limits_x(xyz)
  • get_limits_y(xyz)
  • get_limits_z(xyz)
  • reset_limits(xyz)
source
ThorlabsLTStage.move_x_relMethod
move_x(xyz, x)

Moves x stage forward or backwards.

A positive number will move it forwards along the x axis while a negative number will move it backwards.

source
ThorlabsLTStage.move_y_relMethod
move_y(xyz, y)

Moves y stage forward or backwards.

A positive number will move it forwards along the y axis while a negative number will move it backwards.

source
ThorlabsLTStage.move_z_relMethod
move_z(xyz, z)

Moves z stage forward or backwards.

A positive number will move it forwards along the z axis while a negative number will move it backwards.

source
ThorlabsLTStage.set_limitsMethod
set_limits(xyz, (x_low_lim, y_low_lim, z_low_lim), (x_high_lim, y_high_lim, z_high_lim))

Arguments

  • low: A Pair or an Array of three positions: (lts.x_low_limit, lts.y_low_limit, lts.z_low_limit)
  • high: A Pair or an Array of three positions: (lts.x_high_limit, lts.y_high_limit, lts.z_high_limit)
source