2021-04-26 10:45:00 +02:00
|
|
|
<?xml version="1.0" ?>
|
|
|
|
<launch>
|
|
|
|
<!-- Arguments -->
|
2021-05-26 14:46:12 +02:00
|
|
|
<arg name="launch_rviz" default="true" />
|
2021-04-26 10:45:00 +02:00
|
|
|
|
|
|
|
<!-- Load parameters. -->
|
2021-04-29 10:50:33 +02:00
|
|
|
<rosparam command="load" file="$(find active_grasp)/config/active_grasp.yaml" subst_value="true" />
|
2021-04-27 11:45:57 +02:00
|
|
|
<param name="robot_description" command="$(find xacro)/xacro $(find active_grasp)/assets/urdfs/panda_arm_hand.urdf.xacro" />
|
2021-04-26 10:45:00 +02:00
|
|
|
|
|
|
|
<!-- Bringup the robot -->
|
2021-04-26 20:10:52 +02:00
|
|
|
<node pkg="active_grasp" type="bt_sim_node.py" name="simulation" args="--gui" output="screen" />
|
2021-04-26 10:45:00 +02:00
|
|
|
<node pkg="robot_state_publisher" type="robot_state_publisher" name="robot_state_publisher" />
|
|
|
|
|
2021-06-02 10:54:52 +02:00
|
|
|
<!-- Launch MoveIt -->
|
|
|
|
<!-- <include file="$(find panda_moveit_config)/launch/move_group.launch" /> -->
|
|
|
|
|
2021-04-26 10:45:00 +02:00
|
|
|
<!-- Visualize the robot. -->
|
2021-05-26 14:46:12 +02:00
|
|
|
<node pkg="rviz" type="rviz" name="rviz" args="-d $(find active_grasp)/launch/panda_visualization.rviz" if="$(arg launch_rviz)" />
|
2021-04-26 10:45:00 +02:00
|
|
|
</launch>
|