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.
14 lines
326 B
14 lines
326 B
5 years ago
|
#pragma once
|
||
|
|
||
|
#include "AP_RangeFinder_Benewake.h"
|
||
|
|
||
|
class AP_RangeFinder_Benewake_TF02 : public AP_RangeFinder_Benewake
|
||
|
{
|
||
|
public:
|
||
|
using AP_RangeFinder_Benewake::AP_RangeFinder_Benewake;
|
||
|
|
||
|
protected:
|
||
|
float model_dist_max_cm() const override { return 2200; }
|
||
|
bool has_signal_byte() const override { return true; }
|
||
|
};
|