mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
173afc91d1
git-svn-id: https://arducopter.googlecode.com/svn/trunk@1147 f9c3cf11-9bcb-44bc-f272-b75c42450872
16 lines
392 B
C++
16 lines
392 B
C++
#ifndef AP_RangeFinder_MaxsonarXL_H
|
|
#define AP_RangeFinder_MaxsonarXL_H
|
|
|
|
#include "RangeFinder.h"
|
|
|
|
#define AP_RANGEFINDER_MAXSONARXL_MIN_DISTANCE 20
|
|
#define AP_RANGEFINDER_MAXSONARXL_MAX_DISTANCE 700
|
|
|
|
class AP_RangeFinder_MaxsonarXL : public RangeFinder
|
|
{
|
|
public:
|
|
void init(int analogPort);
|
|
int read(); // read value from analog port and return distance in cm
|
|
};
|
|
#endif
|