Move to m-explore/explore/launch folder and create a new launch file named activity.launch
code activity.launchcopy the following snippet into the launch file
<launch>
<node pkg="explore_lite" type="explore" respawn="false" name="explore" output="screen">
<param name="robot_base_frame" value="base_link"/>
<param name="costmap_topic" value="move_base/global_costmap/costmap"/>
<param name="visualize" value="true"/>
<param name="planner_frequency" value="0.5"/>
<param name="progress_timeout" value="30.0"/>
<param name="potential_scale" value="0.001"/>
<param name="orientation_scale" value="0.0"/>
<param name="gain_scale" value="2.0"/>
<param name="transform_tolerance" value="0.5"/>
<param name="min_frontier_size" value="0.5"/>
</node>
</launch>First open a terminal window, move to robotics folder, source the devel/setup.bash and start the gazebo world
source devel/setup.bash
roslaunch rosbot_gazebo rosbot_world.launchThen open another terminal window, move to robotics folder, source the devel/setup.bash and start the rosbot model
source devel/setup.bash
roslaunch rosbot_description rosbot_gazebo.launchThen open another terminal window, move to robotics folder, source the devel/setup.bash and start the movebase (Navigation stack) and octomap_server
source devel/setup.bash
roslaunch rosbot_navigation navigation_demo.launchThen open another terminal window, move to robotics folder, source the devel/setup.bash and start the explore-lite system
source devel/setup.bashroslaunch explore_lite activity.launch