46#include <visp3/core/vpConfig.h>
49#if defined(VISP_HAVE_MAVSDK) && ((__cplusplus >= 201703L) || (defined(_MSVC_LANG) && (_MSVC_LANG >= 201703L)))
51#include <visp3/robot/vpRobotMavsdk.h>
53void usage(
const std::string &bin_name)
55 std::cerr <<
"Usage : " << bin_name <<
" <connection information>\n"
56 <<
"Connection information format should be :\n"
57 <<
" - For TCP: tcp://[server_host][:server_port]\n"
58 <<
" - For UDP: udp://[bind_host][:bind_port]\n"
59 <<
" - For Serial: serial:///path/to/serial/dev[:baudrate]\n"
60 <<
"For example, to connect to the simulator use URL: udp://:14540\n";
63int main(
int argc,
char **argv)
65#ifdef ENABLE_VISP_NAMESPACE
75 drone.setTakeOffAlt(1.);
76 drone.setVerbose(
true);
80 if (!drone.takeOff()) {
81 std::cout <<
"Takeoff failed" << std::endl;
86 float ned_north, ned_east, ned_down, ned_yaw;
87 drone.getPosition(ned_north, ned_east, ned_down, ned_yaw);
88 std::cout <<
"Vehicle position in NED frame: " << ned_north <<
" " << ned_east <<
" " << ned_down <<
" [m] and " <<
vpMath::deg(ned_yaw) <<
" [deg]" << std::endl;
91 drone.getPosition(ned_M_frd);
93 std::cout <<
"Vehicle position in NED frame: "
97 std::cout <<
"Hold position for 4 sec" << std::endl;
111#ifndef VISP_HAVE_MAVSDK
112 std::cout <<
"\nThis example requires mavsdk library. You should install it, configure and rebuild ViSP.\n"
115#if !((__cplusplus >= 201703L) || (defined(_MSVC_LANG) && (_MSVC_LANG >= 201703L)))
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 deg(double rad)
Implementation of a rotation vector as Euler angle minimal representation.
VISP_EXPORT int wait(double t0, double t)