IFL-CAMP / iiwa_stack

ROS integration for the KUKA LBR IIWA R800/R820 (7/14 Kg).
Other
337 stars 249 forks source link

Can we use moveit setup assistant to edit the file? unable to locate the URDF file in package. Expected File: /home/user/catkin_stackiiwa/src/iiwa_stack/iiwa_description/urdf/iiwa14.urdf #279

Open mf093087 opened 2 years ago

mf093087 commented 2 years ago

I want to use moveit setup assistant to edit the configuration file. However, it doesn't work for me. Can anybody help me?

unable to locate the URDF file in package. Expected File: /home/user/catkin_stackiiwa/src/iiwa_stack/iiwa_description/urdf/iiwa14.urdf

image

ymollard commented 2 years ago

The URDF is generated by Xacro at runtime, but the setup assistant requires the URDF to be available. You can generate it manually:

roscd iiwa_description/urdf
xacro iiwa14.urdf.xacro >iiwa14.urdf

Also make sure that the right IIWA version 14 or 7 is used there: https://github.com/IFL-CAMP/iiwa_stack/blob/master/iiwa_moveit/.setup_assistant#L4-L6

mf093087 commented 2 years ago

thanks, it works!