48#include <visp3/core/vpConfig.h>
50#if defined(VISP_HAVE_MAVSDK) && (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_17)
52#include <visp3/robot/vpRobotMavsdk.h>
54void usage(
const std::string &bin_name)
56 std::cerr <<
"Usage : " << bin_name <<
" <connection information>\n"
57 <<
"Connection URL format should be :\n"
58 <<
" - For TCP : tcp://[server_host][:server_port]\n"
59 <<
" - For UDP : udp://[bind_host][:bind_port]\n"
60 <<
" - For Serial : serial:///path/to/serial/dev[:baudrate]\n"
61 <<
"For example, to connect to the simulator use URL: udp://:14540\n";
64int main(
int argc,
char **argv)
72 drone.setAutoLand(
true);
73 drone.setTakeOffAlt(1.0);
74 drone.setVerbose(
true);
76 if (!drone.takeOff()) {
77 std::cout <<
"Takeoff failed" << std::endl;
84 float ned_north, ned_east, ned_down, ned_yaw;
85 drone.getPosition(ned_north, ned_east, ned_down, ned_yaw);
86 std::cout <<
"Vehicle position in NED frame: " << ned_north <<
" " << ned_east <<
" " << ned_down <<
" [m] and "
90 drone.getPosition(ned_M_frd);
96 drone.setPositioningIncertitude(0.10,
vpMath::rad(5.));
98 drone.setPositionRelative(0.0, 1.0, 0.0, 0.0);
99 drone.setPositionRelative(1.0, 0.0, 0.0, 0.0);
100 drone.setPositionRelative(0.0, -1.0, 0.0, 0.0);
101 drone.setPositionRelative(-1.0, 0.0, 0.0, 0.0);
111#ifndef VISP_HAVE_MAVSDK
112 std::cout <<
"\nThis example requires mavsdk library. You should install it, configure and rebuid ViSP.\n"
115#if !(VISP_CXX_STANDARD >= VISP_CXX_STANDARD_17)
117 <<
"\nThis example requires at least cxx17. You should enable cxx17 during ViSP configuration with cmake and "
Implementation of an homogeneous matrix and operations on such kind of matrices.
vpRotationMatrix getRotationMatrix() const
vpTranslationVector getTranslationVector() const
static double rad(double deg)
static double deg(double rad)
Implementation of a rotation vector as Euler angle minimal representation.