Skip to content
Snippets Groups Projects
Commit fcfed078 authored by Paul Beuchat's avatar Paul Beuchat
Browse files

Added launch file for launching only the flying agent GUI

parent 821f9597
No related branches found
No related tags found
No related merge requests found
<launch>
<!-- INPUT ARGUMENT OF THE AGENT's ID -->
<arg name="agentID" default="$(optenv DFALL_DEFAULT_AGENT_ID)" />
<!-- Example of how to use the value in agentID -->
<!-- <param name="param" value="$(arg agentID)"/> -->
<!-- Example of how to specify the agentID from command line -->
<!-- roslaunch dfall_pkg agentID:=1 -->
<group ns="$(eval 'agent' + str(agentID).zfill(3))">
<!-- AGENT GUI (aka. the "student GUI") -->
<node
pkg = "dfall_pkg"
name = "FlyingAgentGUI"
output = "screen"
type = "FlyingAgentGUI"
>
<param name="type" type="str" value="agent" />
<param name="agentID" value="$(arg agentID)" />
</node>
</group>
</launch>
\ No newline at end of file
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