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

Xylus's profile - activity

2019-11-22 12:45:36 -0500 received badge  Self-Learner (source)
2019-11-22 12:45:36 -0500 received badge  Teacher (source)
2019-03-01 12:40:04 -0500 marked best answer MoveIt only moves one joint

I am facing issues when trying to move more than one joint. I am following the MoveIt tutorial for Python but adding more than one joint, in example:

group_variable_values = group.get_current_joint_values()
# shoulder_pan_joint
group_variable_values[0] = 0.0
#shoulder_lift_joint
group_variable_values[1] = 0.0
#elbow_joint
group_variable_values[2] = 0.0
#wrist_1_joint
group_variable_values[3] = 0.0
#wrist_2_joint
group_variable_values[4] = 2.57
#wrist_3_joint
group_variable_values[5] = -3.14
group.set_joint_value_target(group_variable_values)
plan = group.plan()
rospy.sleep(5)
group.execute(plan)

I have looked at https://answers.ros.org/question/2737... and it seems I am trying to accomplish the same goal but the answer seems to be my current implementation (unless there is an equivalent of move in Python and I should not be using execute)

It is probably worth noting I am using universal_robot library and the model of UR5. The group which I am modifying is group = moveit_commander.MoveGroupCommander("manipulator")

As it stands with the above implementation only one joint moves, I would like for all the joints to move. Is there something I am doing wrong in the above?

2019-03-01 12:39:02 -0500 received badge  Famous Question (source)
2018-04-17 13:58:13 -0500 received badge  Notable Question (source)
2018-03-14 08:05:26 -0500 received badge  Popular Question (source)
2018-03-11 10:14:48 -0500 asked a question MoveIt getJacobian for Python?

MoveIt getJacobian for Python? I can see there is a getJacobian implementation in MoveIt! however the Python wrapper doe

2018-03-11 10:11:33 -0500 received badge  Notable Question (source)
2018-02-02 04:21:53 -0500 received badge  Popular Question (source)
2018-02-01 14:12:11 -0500 answered a question MoveIt only moves one joint

For anybody facing this issue: I have fixed it by turning off gui mode in my .launch file for rviz. I have no idea why t

2018-02-01 04:48:14 -0500 received badge  Enthusiast
2018-01-23 09:34:49 -0500 asked a question MoveIt only moves one joint

MoveIt only moves one joint I am facing issues when trying to move more than one joint. I am following the MoveIt tutori