mirror of https://github.com/ArduPilot/ardupilot
13 lines
269 B
C
13 lines
269 B
C
|
#pragma once
|
||
|
|
||
|
#include "AP_RangeFinder_Benewake.h"
|
||
|
|
||
|
class AP_RangeFinder_Benewake_TFMini : public AP_RangeFinder_Benewake
|
||
|
{
|
||
|
public:
|
||
|
using AP_RangeFinder_Benewake::AP_RangeFinder_Benewake;
|
||
|
|
||
|
protected:
|
||
|
float model_dist_max_cm() const override { return 1200; }
|
||
|
};
|