Project

General

Profile

Statistics
| Branch: | Revision:

root / mikrokopter / src / mikrokopter_node.cpp @ e5af41b0

History | View | Annotate | Download (606 Bytes)

1 07ec0a21 Chris Burchhardt
 /*!
2
  *  \file    mikrokopter_node.cpp
3
  *  \brief   Instantiates the MikrokopterInterface class
4
  *  \author  Andrew Chambers <achamber@andrew.cmu.edu>
5
  *  \author  Justin Haines   <jhaines@andrew.cmu.edu>
6
  *  \author  Sebastian Scherer <basti@andrew.cmu.edu>
7
  *  \date    2011 October 25
8
  *  \details This program is a ROS wrapper for the MikrokopterInterface
9
  */
10
11
#include <ros/ros.h>
12
#include <mikrokopter/interface.h>
13
14
using namespace CA;
15
16
int main(int argc, char **argv)
17
{
18
   ros::init(argc, argv, "mikrokopter");
19
   ros::NodeHandle n;
20
 
21
   MikrokopterInterface interface(n);
22
   ros::spin();
23
}