run_beginner_back.cpp

00001 /*
00002   後進する場合
00003   Satofumi KAMIMURA
00004   $Id$
00005 */
00006 
00007 #include <mRunCtrl.h>
00008 #include <vutils.h>
00009 #include <stdio.h>
00010 
00011 using namespace VXV;
00012 
00013 
00014 int main(int argc, char *argv[]) {
00015   try {
00016     mRunCtrl run;
00017     if (initConnection(&run, argc, argv) < 0) {
00018       exit(1);
00019     }
00020     vmonitor::show();
00021 
00022     // 並進速度を負の値にしてから経路追従コマンドを発行
00023     run.setStraightRefVel(-300);
00024     run.followLine(VXV::Position(0, 0, deg(0)));
00025     VXV::Delay(3000);
00026 
00027     run.stop();
00028     VXV::Delay(1000);
00029 
00030   } catch (std::exception& e) {
00031     printf("exception: %s\n", e.what());
00032   }
00033   return 0;
00034 }
00035 

Generated on Mon Apr 13 22:52:01 2009 by  doxygen 1.5.7.1