Joint Control

For a serial multi-joint robot, the control of the joint space is to control the variables of each joint so as to make each joint reaches a target position at a certain speed.

Notice: When setting the angle, the values corresponding to different manipulators are different. Refer to the parameter introduction section for more information.

myCobot

Single-Joint Control

send_angle(id, degree, speed)

set_encoder(joint_id, encoder)

Multi-Joint Control

get_angles()

send_angles(degrees, speed)

set_encoders(encoders, sp)

sync_send_angles(degrees, speed, timeout=7)

get_radians()

send_radians(radians, speed)

Simple Demo

myBuddy

single joint control

send_angle(id, joint, angle, speed)

get_angle(id, joint_id)

set_encoder(id, joint_id, encoder, speed)

multi-joint control

get_angles(id)

send_angles(id, degrees, speed)

set_encoders(id, encoders, speed)

get_radians(id)

send_radians(id, radians, speed)

Simple Demo

myPalletizer

Simple Demo

myArm

Simple Demo