Update the tool pose of Almond Bot at a high frequency with your own control policy.

Parameters

frequency
float
required

The frequency to update the tool pose. Should be between 63Hz and 1000Hz.

pose
Pose
required

The tool pose offset to set. Should be very small (less than 0.5mm or 0.5 degree) to avoid overshoot. See Pose for more details.

tool_stroke
float
default:"None"

The tool stroke to set. Should be between 0 and 100. If not provided, the tool stroke will not be updated.

tool_force
float
default:"None"

The tool force to set. Should be between 0 and 100. If not provided, the tool force will not be updated.

Example Usage

for _ in range(100):
  await client.stream_tool_pose(
    frequency=500,
    pose=Pose(z=0.5),
    tool_stroke=50,
    tool_force=10
  )