Project

General

Profile

Statistics
| Branch: | Revision:

root / mikrokopter / src / nav_lib.h @ bc4b408e

History | View | Annotate | Download (396 Bytes)

1
#include "ros/ros.h"
2
#include "mikrokopter/Control.h"
3

    
4
class MikrokopterControl {
5
public:
6
    MikrokopterControl();
7
    void velocity_control(int forward_speed, int lateral_speed);
8
    void forward();
9
    void backward();
10
    void left();
11
    void right();
12
    void level();
13
    void set_thrust(int thrust);
14
    void publish_on(ros::Publisher& pub);
15
private:
16
    mikrokopter::Control control;
17
};