This function moves the end-effector to the specified position of the chosen axis while keeping the other two axes in their current positions. The function requires three inputs: the coordinates on the chosen axis, the axis to move on, and the time it needs to complete the movement.
Table of Contents
roboticArm.gotoinoneaxis()
Function Definition: roboticArm.gotoinoneaxis(POSITION = 150, AXIS = "x", TIME = 1000)
- Python Library: Quarky Robotic Arm
- Library Import: roboticArm = RoboticArm(1, 2, 3, 4)
- Mode: Stage Mode, Upload Mode
Parameters
Name | Type | Description | Expected Values | Default Value |
---|---|---|---|---|
POSITION | int | The position on the axis to move. | 0 - 250 | 150 |
AXIS | string | The axis to which the gripper needs to move. | "x", "y", or "z" | "x" |
TIME | int | Time in miliseconds. | 100 to 10000 | 1000 |
Description
Example
There are no examples documented for this article.