From b5efac59ca2ec7764268ed1c11fe4287d09b328f Mon Sep 17 00:00:00 2001 From: _Luc_ Date: Wed, 6 May 2015 20:02:55 +0200 Subject: [PATCH] Avec add c'est mieux --- src/commande.cpp | 100 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 src/commande.cpp diff --git a/src/commande.cpp b/src/commande.cpp new file mode 100644 index 0000000..beb35db --- /dev/null +++ b/src/commande.cpp @@ -0,0 +1,100 @@ +#include +#include +#include + +#include +#include + +#include + +#include + +#include + +class Run +{ + private: + float z_previous; + ros::Time t_previous; + ros::Time t_current; + ros::Rate loop_rate; + float dz; + float xx; + float yy; + float zz; + float x_speed; + float y_speed; + float z_speed_max; + + float precision; + + public: + Run() : + x_speed(0.2), + y_speed(0.2), + z_speed_max(0.5), + loop_rate(30) + { + //Sensibilité du drône + precision = 0.1; + } + + + void operator()(const hand_control::Plan::ConstPtr& msg) + { + t_current = msg->header.stamp; + + dz = (msg->normal.z - z_previous)/(t_current.sec - t_previous.sec); + + xx = msg->normal.x ; + yy = msg->normal.y ; + //zz = msg->normal.z ; + + t_previous = msg->header.stamp; + z_previous = msg->normal.z; + }; + + void run(){ + //pour initialiser mvt (twist) + geometry_msgs::Twist::Ptr mvt_init(new geometry_msgs::Twist()); + mvt_init->linear.x = mvt_init->linear.y = mvt_init->linear.z = + mvt_init->angular.x = mvt_init->angular.y = mvt_init->angular.z = 0.; + + + while(ros::ok()){ + + geometry_msgs::Twist::Ptr mvt(new geometry_msgs::Twist()); + mvt = mvt_init; + + //mouvement selon z + if (dz < z_speed_max){ //pour éviter un soulèvement trop prompt du drône + mvt->linear.z = dz *0.1 ; + } + + //mouvement selon x ou y + if (fabs(xx) > precision && fabs(yy) > precision ) + { + mvt->linear.x = x_speed ; + mvt->linear.y = y_speed ; + } + + ros::spinOnce(); + loop_rate.sleep(); + }//end while + }//end run + +}; //class Callback + +int main(int argc, char** argv) +{ + + + + ros::init(argc, argv, "commande"); + + Run run; + run.run(); + + + return 0; +}