RoPod/Tutorials/Commands cheat sheet

From Control Systems Technology Group
Revision as of 16:40, 6 October 2017 by 20170140 (talk | contribs)
Jump to navigation Jump to search
Alias Command Purpose
buildit
cd $CATKIN_WORKSPACE; catkin_make
Build all packages in your catkin workspace
clean_build
   cd $CATKIN_WORKSPACE;
   rm -rf build/ devel/;
   cd $CATKIN_WORKSPACE/src/; 
   rm CMakelists.txt; 
   cd $CATKIN_WORKSPACE; 
   catkin_make;" 
Remove previous build and rebuild them.
pico-wired
  export ROS_MASTER_URI=http://10.0.0.2:11311;
  export ROS_IP=10.0.0.2;
  export WIRED_CONNECTION=true
Set the relevant ROS parameters to the wireless communication via the ropod-router
pico-wireless
  export ROS_MASTER_URI=http://192.168.44.81:11311;
  export ROS_IP=192.168.44.81;
  export WIRED_CONNECTION=false;
Set the relevant ROS parameters to the wireless communication via the ropod-router
pstart
roslaunch pico_bringup start.launch
Start all the communication with the hardware on pico
teleop <<robotname>>
rosrun robot_common teleop.py <<robotname>> 
Use your keyboard to navigate with the robot


alias sshpico="ssh ropod@192.168.44.81" alias sshpico-wired="ssh ropod@10.0.0.2" alias pico-core='export ROS_MASTER_URI=http://192.168.44.81:11311' alias pico-core-wired='export ROS_MASTER_URI=http://10.0.0.2:11311