ardupilot/libraries/AP_RangeFinder/AP_RangeFinder_Lua.h

34 lines
689 B
C
Raw Normal View History

#pragma once
#include "AP_RangeFinder.h"
#include "AP_RangeFinder_Backend.h"
#if AP_SCRIPTING_ENABLED
// Data timeout
#define AP_RANGEFINDER_LUA_TIMEOUT_MS 500
class AP_RangeFinder_Lua : public AP_RangeFinder_Backend
{
public:
// constructor
AP_RangeFinder_Lua(RangeFinder::RangeFinder_State &_state, AP_RangeFinder_Params &_params);
// update state
void update(void) override;
// Get update from Lua script
bool handle_script_msg(float dist_m) override;
MAV_DISTANCE_SENSOR _get_mav_distance_sensor_type() const override {
return MAV_DISTANCE_SENSOR_UNKNOWN;
}
private:
float _distance_m; // stored data from lua script:
};
#endif