-
Notifications
You must be signed in to change notification settings - Fork 58
/
pick_place.launch
22 lines (18 loc) · 923 Bytes
/
pick_place.launch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<launch>
<!-- Debug -->
<arg name="debug" default="false" />
<arg unless="$(arg debug)" name="launch_prefix" value="" />
<arg if="$(arg debug)" name="launch_prefix" value="gdb --ex run --args" />
<!-- Verbose mode -->
<arg name="verbose" default="false" />
<arg unless="$(arg verbose)" name="command_args" value="" />
<arg if="$(arg verbose)" name="command_args" value="--verbose" />
<!-- Start the block grasping -->
<node name="clam_pick_place" launch-prefix="$(arg launch_prefix)" pkg="clam_pick_place"
type="block_pick_place" output="screen" args="$(arg command_args)">
<param name="ee_group_name" value="gripper_group"/>
<param name="planning_group_name" value="arm"/>
<rosparam command="load" file="$(find clam_moveit_config)/config/kinematics.yaml"/>
<rosparam command="load" file="$(find moveit_simple_grasps)/config/clam_grasp_data.yaml"/>
</node>
</launch>