-
Notifications
You must be signed in to change notification settings - Fork 1
/
traj.cpp
167 lines (108 loc) · 4.17 KB
/
traj.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#include <ros/ros.h>
#include <geometry_msgs/PoseStamped.h>
#include <mavros_msgs/CommandBool.h>
#include <mavros_msgs/SetMode.h>
#include <mavros_msgs/State.h>
#include <vector>
#define n 70
//definisco una struttura che definisce i punti della mia traiettoria
struct trajectory{
std::vector<float> position;
double time;
} point[n];
//Callback che salva lo stato attuale del mio autopilota
geometry_msgs::PoseStamped pose;
mavros_msgs::State current_state;
void state_cb(const mavros_msgs::State::ConstPtr& msg){
current_state = *msg;
}
void pose_cb(const geometry_msgs::PoseStamped::ConstPtr& msg){
pose = *msg;
}
int main(int argc, char **argv)
{
std::cout << "Sono nel main" << std::endl;
//Definisco i 3 waypoints e le distanze tra i 3 punti
int T=0.1;
int v=1;
std::vector<float> pf={0,0,0};
std::vector<float> ps={0,0,5};
std::vector<float> pt={2,0,5};
point[0].position=pf;
point[49].position=ps;
point[69].position=pt;
std::cout << "Sono dopo le posizioni" << std::endl;
ros::init(argc, argv, "traj_node");
ros::NodeHandle nh;
ROS_INFO("Test_info");
ros::Subscriber state_sub = nh.subscribe<mavros_msgs::State>
("mavros/state", 10, state_cb);
ros::Subscriber pose_sub = nh.subscribe<geometry_msgs::PoseStamped>
("mavros/setpoint_position/local", 10, pose_cb);
ros::Publisher local_pos_pub = nh.advertise<geometry_msgs::PoseStamped>
("mavros/setpoint_position/local", 10);
ros::ServiceClient arming_client = nh.serviceClient<mavros_msgs::CommandBool>
("mavros/cmd/arming");
ros::ServiceClient set_mode_client = nh.serviceClient<mavros_msgs::SetMode>
("mavros/set_mode");
//the setpoint publishing rate MUST be faster than 2Hz
ros::Rate rate(20.0);
//wait for FCU connection
while(ros::ok() && current_state.connected){
ros::spinOnce();
rate.sleep();
ROS_INFO("State Connected");
}
//geometry_msgs::PoseStamped pose;
//send a few setpoints before starting
for(int i = 100; ros::ok() && i > 0; --i){
local_pos_pub.publish(pose);
ros::spinOnce();
rate.sleep();
ROS_INFO("%d...",i);
}
ROS_INFO("Position Selected");
mavros_msgs::SetMode offb_set_mode;
offb_set_mode.request.custom_mode = "OFFBOARD";
mavros_msgs::CommandBool arm_cmd;
arm_cmd.request.value = true;
ros::Time last_request = ros::Time::now();
std::cout << "Prima for" << std::endl;
while(ros::ok()){
if( current_state.mode != "OFFBOARD" &&
(ros::Time::now() - last_request > ros::Duration(5.0))){
if( set_mode_client.call(offb_set_mode) &&
offb_set_mode.response.success){
ROS_INFO("Offboard enabled");
}
last_request = ros::Time::now();
} else {
if( !current_state.armed &&
(ros::Time::now() - last_request > ros::Duration(5.0))){
if( arming_client.call(arm_cmd) &&
arm_cmd.response.success){
ROS_INFO("Vehicle armed");
}
last_request = ros::Time::now();
}
}
double secs =last_request.toSec();
for(int i=1;i<n;i++) {
point[i].position[0]=point[i-1].position[0]+v*T;
point[i].position[1]=point[i-1].position[1]+v*T;
point[i].position[2]=point[i-1].position[2]+v*T;
std::cout << " Stampo la mia posizione " << std::endl;
pose.pose.position.x =point[i].position[0];
pose.pose.position.y =point[i].position[1];
pose.pose.position.z =point[i].position[2];
std::cout << "pos x"<<"\n"<< point[i].position[0] << "\n" << " pos y"<< "\n"<< point[i].position[1]<<"\n"<< "pos z"<<"\n"<< point[i].position[2] << std::endl;
std::cout << "Sono prima del while " << std::endl;
local_pos_pub.publish(pose);
std::cout << "Sono dopo aver pubblicato le cose" << std::endl;
ros::spinOnce();
rate.sleep();
std::cout << "Sono dopo lo sleep" << std::endl;
}
}
return 0;
}