This function creates a clockwise circle trajectory in the Y plane for a robotic arm, given the center position in the X and Z axes, and the radius of the circle. The function calculates the points on the trajectory and sends instructions to the arm to travel to each point sequentially.
Table of Contents
roboticArm.moveincircleclockwise()
Function Definition: roboticArm.moveincircleclockwise(XPOS, ZPOS = 80, RADIUS = 50, YPOS = 180, TIME = 4000)
- 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 position of the center of the circle. | -20 to 20 | 0 |
ZPOS | int | The Z position of the center of the circle. | 50 to 80 | 80 |
RADIUS | int | The radius of the circle to be created. | 10 to 50 | 50 |
YPOS | int | The Y position of the Y plane along which the circle is being created. | 100 to 240 | 180 |
TIME | int | Time in miliseconds. | 100 to 10000 | 4000 |
Description
Example
There are no examples documented for this article.