移動しながら自己位置を表示する
#include <iostream>
using namespace hrk;
using namespace std;
int main(int argc, char *argv[])
{
static_cast<void>(argc);
static_cast<void>(argv);
if (!robot.
open(
"/dev/ttyUSB0")) {
cerr << FILE_POSITION() << robot.
what() << endl;
return 1;
}
const double Print_period_sec = 2.0;
const double first_sec = ticks_sec();
while ((ticks_sec() - first_sec) < Print_period_sec) {
delay_sec(0.1);
}
wait_stable(robot, 0.1);
return 0;
}