Visual Servoing Platform  version 3.3.0 under development (2020-02-17)
tutorial-pioneer-robot.cpp
#include <iostream>
#include <visp3/robot/vpRobotPioneer.h>
int main()
{
#ifdef VISP_HAVE_PIONEER
try {
ArArgumentBuilder args;
args.add("-rp");
#if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__))) // UNIX
args.add("/dev/ttyUSB0");
#else
args.add("COM3");
#endif
ArSimpleConnector conn(&args);
if (!conn.connectRobot(&robot))
return -1;
robot.useSonar(false);
vpTime::wait(2000);
v = 0;
v[0] = 0.10; // Translational velocity in m/s
vpTime::wait(1000);
std::cout << "Measured vel: " << v_mes.t() << std::endl;
vpTime::wait(1000);
robot.stopRunning();
robot.waitForRunExit();
} catch (const vpException &e) {
std::cout << "Catch an exception: " << e << std::endl;
}
#endif
}