ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

kevin.crawford.knight's profile - activity

2019-08-05 12:13:07 -0500 received badge  Famous Question (source)
2018-08-21 20:59:46 -0500 received badge  Notable Question (source)
2018-08-21 00:42:23 -0500 marked best answer Robot drives arm into table on its way to target pose

Greetings,

Apologies for newbie question. Is there a command that moves "straight" to a target set of joint angles, where "straight" means the end effector moves in a roughly straight line?

Background:

I use my Kinova MICO 4DOF arm for art projects. I drive it with shell commands. It currently plays a decent game of chess, using a DGT sensory board. I'm an end user who programs in bash, consumed by art projects that leave little time for mastering robotics.

I've recorded joint angles for all robot arm poses of interest. I can get current joint positions with:

rostopic echo -c /m1n4s200_driver/out/joint_angles

I subtract these from the target-position angles, and drive the arm like this:

rosrun kinova_demo joints_action_client.py -v -r m1n4s200 degree -- $M1 $M2 $M3 $M4

This works fine much of the time. However, all joints seem to move at the same speed independently, toward their individual goals. So the end effector follows a ponderous curvy path. Depending on where the joints are, the robot will often try to drive straight through the table surface (presumably hoping to emerge somewhere else en route to the target angles).

Is there a command that will move the end effector straight, or avoid the table surface? I'm using joint angles, not Cartesian positions.

I'm using kinova-ros, as described here:

https://github.com/Kinovarobotics/kin...

Everything I know comes from this document -- it's a pretty spare tutorial for me.

Thanks, Kevin

PS. My software versions:

% rosversion -d
kinetic

% lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 16.04.4 LTS
Release:        16.04
Codename:       xenial
2018-08-21 00:42:22 -0500 received badge  Scholar (source)
2018-08-21 00:42:02 -0500 received badge  Supporter (source)
2018-08-21 00:41:53 -0500 commented answer Robot drives arm into table on its way to target pose

Thank you very much for the clear explanation. I got 90% of the way there with rosrun shell commands, but for the last

2018-08-20 16:36:14 -0500 received badge  Popular Question (source)
2018-08-19 18:58:03 -0500 asked a question Robot drives arm into table on its way to target pose

Robot drives arm into table on its way to target pose Greetings, Apologies for newbie question. Is there a command tha