This commit is contained in:
Falloimitator 2025-05-22 14:33:05 +03:00
parent cb46ecb424
commit 142ac44f46

View file

@ -31,16 +31,13 @@ config = {
},
}
def main():
robot = RobotClient(HOST, PORT)
robot.set_joint_maxacc(2)
robot.set_joint_maxvelc(2)
# robot.move_linear_cartesian(config["pre_grasp_position"])
# robot.move_to_pose(config["pre_grasp_position"])
# robot.move_to_pose(config["grasp_position"])
robot.move_to_pose(config["pre_grasp_position"])
robot.move_to_pose(config["grasp_position"])
robot.move_to_pose(config["post_grasp_position"])
robot.close()