This code shows how to takeoff, control in velocity and land with a drone equipped with a Pixhawk connected to a Jetson TX2 that runs this test using ViSP. The drone is localized thanks to Qualisys Mocap. Communication between the Jetson and the Pixhawk is based on Mavlink using MAVSDK 3rd party.
#include <iostream>
#include <visp3/core/vpConfig.h>
#if defined(VISP_HAVE_MAVSDK) && ((__cplusplus >= 201703L) || (defined(_MSVC_LANG) && (_MSVC_LANG >= 201703L))) \
&& defined(VISP_HAVE_THREADS)
#include <thread>
#include <visp3/robot/vpRobotMavsdk.h>
using std::chrono::seconds;
using std::this_thread::sleep_for;
void usage(const std::string &bin_name)
{
std::cerr << "Usage : " << bin_name << " <connection information>\n"
<< "Connection URL format should be :\n"
<< " - For TCP : tcp://[server_host][:server_port]\n"
<< " - For UDP : udp://[bind_host][:bind_port]\n"
<< " - For Serial : serial:///path/to/serial/dev[:baudrate]\n"
<< "For example, to connect to the simulator use URL: udp://:14540\n";
}
int main(int argc, char **argv)
{
#ifdef ENABLE_VISP_NAMESPACE
#endif
if (argc != 2) {
usage(argv[0]);
return EXIT_SUCCESS;
}
auto drone = vpRobotMavsdk(argv[1]);
drone.setTakeOffAlt(.5);
if (!drone.takeOff()) {
std::cout << "Takeoff failed" << std::endl;
return EXIT_FAILURE;
}
drone.setForwardSpeed(0.3);
std::cout << "Set forward speed of 0.3 m/s for 4 sec" << std::endl;
sleep_for(seconds(4));
drone.setForwardSpeed(-0.3);
std::cout << "Set forward speed of -0.3 m/s for 4 sec" << std::endl;
sleep_for(seconds(4));
drone.stopMoving();
std::cout << "Stop moving for 4 sec" << std::endl;
sleep_for(seconds(4));
std::cout << "Land now..." << std::endl;
drone.land();
return EXIT_SUCCESS;
}
#else
int main()
{
#ifndef VISP_HAVE_MAVSDK
std::cout << "\nThis example requires mavsdk library. You should install it, configure and rebuid ViSP.\n"
<< std::endl;
#endif
#if !((__cplusplus >= 201703L) || (defined(_MSVC_LANG) && (_MSVC_LANG >= 201703L)))
std::cout
<< "\nThis example requires at least cxx17. You should enable cxx17 during ViSP configuration with cmake and "
"rebuild ViSP.\n"
<< std::endl;
#endif
return EXIT_SUCCESS;
}
#endif
Implementation of column vector and the associated operations.