*******************
Launch_ files
*******************
Basic launch file
========================
Ros launch ``talker_listener.launch`` file that execute 2 nodes:
.. code-block:: xml
:caption: talker_listener.launch
The previous launch file execute one instance of the ``listener_node`` with a the name ``listener``, and one instance of the executable ``talker_node`` with the name ``talker``, that are part of the package ``roscpp_tutorials``.
So the ``type`` id the name of the compiled node. The ``name`` is the name of the instance of the node (process).
The tag ``output`` have value ``screen``, it tell ROS to show the outputs of the nodes in the terminal.
If ``roscore`` is not running, ``roslaunch`` execute it.
Open a terminal and run the roslaunch_ command::
roslaunch roscpp_tutorials talker_listener.launch
Of course the package ``roscpp_tutorials`` should be in your active workspace or installed on your computer. Or you substitute the package name and node names with your own.
Clone the repository in your workspace ::
git clone https://github.com/ros/ros_tutorials.git
Or install it ::
sudo apt-get install ros-kinetic-roscpp-tutorials
Parameters
============
You can also set parameters on the Parameter Server. These parameters will be stored on the Parameter Server before any nodes are launched.
.. code-block:: xml
Substitution args
====================
.. code-block:: xml
:caption: launch_file.launch
Execution example: ::
roslaunch beginner_tutorials launch_file.launch a:=1 b:=5
Namespaces
=============
Including files
=================
.. _roslaunch: http://wiki.ros.org/roslaunch
.. _Launch: http://wiki.ros.org/roslaunch