Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 686 Bytes

creation.md

File metadata and controls

43 lines (29 loc) · 686 Bytes

Package Creation

Move inside the ROS workspace and Create a ros package that depends on rospy, roscpp, std_msgs, sensor_msgs, open_manipulator_msgs.

Assuming workspace name is 'robotics'

cd robotics/src
catkin_create_pkg lab_5_taskspacecontrol rospy roscpp std_msgs sensor_msgs  tf open_manipulator_msgs

Move to workspace root and build the package

cd ..
catkin build

or

catkin_make

move inside the package and create a folder called scripts

cd robotics/src/lab_5_taskspacecontrol
mkdir scripts

This folder will hold all the python scripts required by the nodes.

<< Back to Main menu