Skip to content
Snippets Groups Projects
Commit 4a921120 authored by Sergi Hernandez's avatar Sergi Hernandez
Browse files

Modified the launch file to use the launch file in the iri_teleop_launch package.

parent 29c0f8be
No related branches found
No related tags found
No related merge requests found
...@@ -2,14 +2,20 @@ ...@@ -2,14 +2,20 @@
<!-- --> <!-- -->
<launch> <launch>
<group ns="ana"> <arg name="ns" default="ana" />
<node name="keyboard_teleop" <arg name="path" default="$(find iri_teleop_launch)"/>
pkg ="teleop_twist_keyboard" <arg name="config_file" default="$(arg path)/config/keyboard_teleop.yaml" />
type="teleop_twist_keyboard.py" <arg name="twist_topic" default="/$(arg ns)/ana_odom/cmd_vel_in"/>
output="screen"> <arg name="output" default="screen" />
<!-- <remap from="/ana/cmd_vel" <arg name="launch_prefix" default="" />
to="/ana/teleop/cmd_vel_unsafe"/>-->
</node> <include file="$(find iri_teleop_launch)/launch/keyboard_teleop.launch">
</group> <arg name="ns" value="$(arg ns)"/>
<arg name="path" value="$(arg path)"/>
<arg name="config_file" value="$(arg config_file)"/>
<arg name="twist_topic" value="$(arg twist_topic)"/>
<arg name="output" value="$(arg output)"/>
<arg name="launch_prefix" value="$(arg launch_prefix)"/>
</include>
</launch> </launch>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment