-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
run MoveIt Task Constructor demo using gen3 #177
Comments
Hi @patrickwasp, I don't know much about the MTC tutorial, but I can help you with the portion of code you linked. ros2_kortex/kortex_moveit_config/kinova_gen3_6dof_robotiq_2f_85_moveit_config/launch/robot.launch.py Lines 41 to 57 in a2f018a
make sure to pass For the CreateTask function, what you are saying makes sense, but you will need to use the correct Best, |
@felixmaisonneuve I prepared a minimal environment to troubleshoot working with a kinova 6 dof and robotiq 85 gripper along with task constructor. https://github.com/ecoation-labs/ros2-kortex-pick-and-place-with-moveit-task-constructor/ I'm looking to replicate the tutorial example with the FRANKA EMIKA Panda arm shown in the moveit2 tutorial documentation. Can you please see if you can find the errors I made? |
@patrickwasp const auto& arm_group_name = "panda_arm";
const auto& hand_group_name = "hand";
const auto& hand_frame = "panda_hand"; should be replace to const auto& arm_group_name = "manipulator";
const auto& hand_group_name = "gripper";
const auto& hand_frame = "end_effector_link"; |
Closing due to inactivity - reply to the thread if you need the issue to be reopened |
I'm trying to run modify the tutorial for task constructor to run with a gen3 arm. It seems that the following pieces of config would have to change, but I'm not sure what to.
pick_place_demo.launch.py
specifically this line:
moveit_config = MoveItConfigsBuilder("moveit_resources_panda").to_dict()
and
mtc_tutorial.cpp
I think this might work once the
moveit_config
is setup correctlyThe text was updated successfully, but these errors were encountered: