Table of Contents

roboticArm.movexyzinline()

Function Definition: roboticArm.movexyzinline(XPOS, YPOS, ZPOS, TIME = 1000)

Parameters

NameTypeDescriptionExpected ValuesDefault Value
XPOSintWhen X= 0, Y = 0 and Z = 0 Then, Range of X will be X = -250 to -10 and 10 to 250-250 to -10 and 10-2500
YPOSintWhen X= 0, Y = 0 and Z = 0 Then, Range of Y will be Y = 10 to 25010 to 2500
ZPOSintWhen X = 0 and Y = 0 Then, Range of Z will be Z = 10 to 12010 to 1200
TIMEintTime in miliseconds.100 to 100001000

Description

This function takes four input parameters, the X, Y, and Z coordinates of the desired end position, and the amount of time to reach that position. It then divides the motion into smaller line segments, allowing the robotic arm to accurately and efficiently reach the specified location. The function then moves the robot arm from its current position to the specified end position within the given time frame.

Note: The ranges of X, Y, and Z are interdependent, and modifying one value causes the ranges of the others to update accordingly

Example

There are no examples documented for this article.