nbv_sim/launch/simulation.launch
2021-04-26 20:10:52 +02:00

16 lines
656 B
XML

<?xml version="1.0" ?>
<launch>
<!-- Arguments -->
<arg name="launch_rviz" default="false" />
<!-- Load parameters. -->
<param name="robot_description" command="$(find xacro)/xacro $(find franka_description)/robots/panda_arm_hand.urdf.xacro" />
<!-- Bringup the robot -->
<node pkg="active_grasp" type="bt_sim_node.py" name="simulation" args="--gui" output="screen" />
<node pkg="robot_state_publisher" type="robot_state_publisher" name="robot_state_publisher" />
<!-- Visualize the robot. -->
<node pkg="rviz" type="rviz" name="rviz" args="-d $(find active_grasp)/launch/panda_visualization.rviz" if="$(arg launch_rviz)" />
</launch>