main.cpp
Go to the documentation of this file.
00001 #include <ros/ros.h>
00002 #include "teleop.h"
00003 
00004 int main(int argc, char** argv)
00005 {
00006   ros::init(argc, argv, "universal_teleop");
00007 
00008   universal_teleop::Teleop t;
00009 
00010   ros::Rate r(20);
00011   while(ros::ok()) {
00012     ros::spinOnce();
00013     t.control();
00014     r.sleep();
00015   }
00016 }


universal_teleop
Author(s):
autogenerated on Thu Aug 27 2015 15:32:46