ROS C++ echo 구현 - 1
https://github.com/robotpilot/ros-seminar 자료를 참조했다 $ cs $ catkin_create_pkg beginner_tutorials std_msgs rospy roscpp message_generation #include #include #include int main(int argc, char *argv[]) { ros::init(argc, argv, "hello_world_node"); ros::NodeHandle nh; ros::Publisher chatter_pub = nh.advertise("say_hello_world", 1000); ros::Rate loop_rate(10); int count = 0; while(ros::ok()) { std_msgs::..
2019. 10. 21. 19:31