給move_base 發送 goal c++

使用 Action :move_base_msgs::MoveBaseAction(move_base在world中的目標)

新建send_goal.cpp

/*
 * send_goal.cpp
 *
 *  Created on: Aug 10, 2016
 *      Author: unicorn
 */

#include <ros/ros.h>
#include <move_base_msgs/MoveBaseAction.h>
#include <actionlib/client/simple_action_client.h>
/*move_base_msgs::MoveBaseAction
 move_base在world中的目標
*/ 
typedef actionlib::SimpleActionClient<move_base_msgs::MoveBaseAction>  MoveBaseClient;
int main(int argc, char** argv) {
	ros::init(argc, argv, "send_goals_node");

	/*
	// create the action client
	// true causes the client to spin its own thread
	//don't need ros::spin()
	創建action客戶端,參數1:action名,參數2:true,不需要手動調用ros::spin(),會在它的線程中自動調用。
	*/
	MoveBaseClient ac("move_base", true);
	// Wait 60 seconds for the action server to become available
	ROS_INFO("Waiting for the move_base action server");
	ac.waitForServer(ros::Duration(60));
	ROS_INFO("Connected to move base server");
	// Send a goal to move_base
	//目標的屬性設置
	move_base_msgs::MoveBaseGoal goal;
	goal.target_pose.header.frame_id = "map";
	goal.target_pose.header.stamp = ros::Time::now();
	goal.target_pose.pose.position.x = 21.174;
	goal.target_pose.pose.position.y = 10.876;
	goal.target_pose.pose.orientation.w = 1;
	ROS_INFO("");
	ROS_INFO("Sending goal");
	ac.sendGoal(goal);
	// Wait for the action to return
	ac.waitForResult();
	if (ac.getState() == actionlib::SimpleClientGoalState::SUCCEEDED)
	ROS_INFO("You have reached the goal!");
	else
	ROS_INFO("The base failed for some reason");
	return 0;
}

CMakeList.txt

add_executable(send_goal src/send_goal.cpp)
target_link_libraries(send_goal
   ${catkin_LIBRARIES}
 )

文章來源:
https://blog.csdn.net/yiranhaiziqi/article/details/52891973

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章