You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#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:
|
|
|
|
AP_RangeFinder_MaxsonarXL();
|
|
|
|
int convert_raw_to_distance(int raw_value) { return raw_value; } // read value from analog port and return distance in cm
|
|
|
|
};
|
|
|
|
#endif
|