Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #include <stdlib.h>
00014 #include <string.h>
00015
00016
00017 #include <ros/ros.h>
00018 #include <geometry_msgs/TwistStamped.h>
00019
00020
00021 int main(int argc, char **argv) {
00022
00023
00024 if (argc!=8) {
00025 std::cerr << "USAGE: " << argv[0] << " <topic> <vx> <vy> <vz> <vroll> <vpitch> <vyaw>" << std::endl;
00026 std::cerr << "units are displacement/simulated_time. Time scale to be implemented." << std::endl;
00027 return 0;
00028 }
00029
00030 std::string topic(argv[1]);
00031 double x=atof(argv[2]);
00032 double y=atof(argv[3]);
00033 double z=atof(argv[4]);
00034 double roll=atof(argv[5]);
00035 double pitch=atof(argv[6]);
00036 double yaw=atof(argv[7]);
00037
00038 std::string nodeName=topic;
00039 nodeName.replace(0,1,"a");
00040 ros::init(argc, argv, "setVehicleVelocity");
00041 ros::NodeHandle nh;
00042 ros::Publisher position_pub;
00043 position_pub=nh.advertise<geometry_msgs::TwistStamped>(topic,1);
00044
00045 ros::Rate r(25);
00046 while (ros::ok()) {
00047 geometry_msgs::TwistStamped twist;
00048
00049 twist.twist.linear.x=x;
00050 twist.twist.linear.y=y;
00051 twist.twist.linear.z=z;
00052 twist.twist.angular.x=roll;
00053 twist.twist.angular.y=pitch;
00054 twist.twist.angular.z=yaw;
00055
00056 position_pub.publish(twist);
00057
00058 ros::spinOnce();
00059 r.sleep();
00060 }
00061
00062 return 0;
00063 }