This function moves the end-effector of a robotic arm to a desired point in 3-dimensional space. The X, Y, and Z coordinates must be specified, as well as a parameter to set the time of movement. The function takes these inputs and sends commands to the robotic arm to move to the specified location in the desired time period.
Table of Contents
roboticArm.movetoxyz()
Function Definition: roboticArm.movetoxyz(XPOS, YPOS = 150, ZPOS = 70, 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 |
---|---|---|---|---|
XPOS | int | The X coordinate of the destination position of the Gripper. | -100 to 100 | 0 |
YPOS | int | The Y coordinate of the destination position of the Gripper. | 100 to 250 | 150 |
ZPOS | int | The Z coordinate of the destination position of the Gripper. | 0 to 120 | 70 |
TIME | int | Time in miliseconds. | 100 to 10000 | 1000 |
Description
Example
There are no examples documented for this article.