ardupilot/libraries/AP_OpticalFlow/AP_OpticalFlow_HIL.h
Mathieu OTHACEHE 152edf7189 Global: remove mode line from headers
Using a global .dir-locals.el file is a better alternative than
reincluding the same emacs header in every file of the project.
2016-10-24 09:42:01 -02:00

17 lines
328 B
C++

#pragma once
#include "OpticalFlow.h"
class AP_OpticalFlow_HIL : public OpticalFlow_backend
{
public:
/// constructor
AP_OpticalFlow_HIL(OpticalFlow &_frontend);
// init - initialise the sensor
void init();
// update - read latest values from sensor and fill in x,y and totals.
void update(void);
};