-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 5d579fe
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
source devel/setup.bash | ||
echo $ROS_PACKAGE_PATH | ||
catkin_make | ||
roscore | ||
rosnode list | ||
rosnode info <node_name> (ex: /rosout) | ||
rosnode ping <node_name> | ||
rosrun rqt_graph rqt_graph | ||
rosrun rqt_plot rqt_plot | ||
rostopic echo [topic] (ex: /turtle1/cmd_vel) | ||
rostopic type [topic] | ||
rosmsg show <msg_type/topic_type> (ex: geometry_msgs/Twist) | ||
rostopic pub [topic] [msg_type] [args] | ||
rosrun rqt_console rqt_console (show console window) | ||
rosrun rqt_logger_level rqt_logger_level (choose which is showed in console window) | ||
roslaunch [package] [filename.launch] | ||
rqt (run rqt_graph) | ||
ps -ef | grep -i rosmaster (check for roscore is running or not) | ||
|
||
--------------------------------------- | ||
rosparam set [param_name] | ||
rosparam get [param_name] | ||
rosparam dump [file_name] [namespace] | ||
rosparam load [file_name] [namespace] | ||
rosed [package_name] [filename] | ||
|
||
--------------------------------------- | ||
rosrun turtlesim turtlesim_node | ||
rosrun turtlesim turtlesim_node __name:=my_turtle | ||
rosrun turtlesim turtle_teleop_key | ||
rosservice call /clear |