Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 747 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 747 Bytes

UdacityROSGoChaseIt

ROS program for chasing a white ball through a Gazebo simulator.

In order to execute program a catkin workspace is required.

Steps for creating project:

  1. Create a catkin workspace
  • mkdir catkin_ws
  1. Create a src folder in the catkin workspace
  • cd catkin_ws && mkdir src
  1. Clone project into src folder.
  • git clone [project_name]
  1. Change directory to workspace home - run catkin_make
  • cd ../
  • catkin_make

Steps to execute the project:

  1. Source the workspace
  • source devel/setup.bash
  1. Launch the environment
  • roslaunch my_robot world.launch
  1. Execute the ball chaser
  • roslaunch ball_chaser ball_chaser.launch
  1. Place the white ball in front of the robot and observe it chase it.