run_beginner_back.cpp
00001
00002
00003
00004
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