ardupilot/libraries/AP_HAL_SITL/ToneAlarm_SF.h
2019-03-23 07:10:50 +11:00

12 lines
207 B
C++

#pragma once
#include "AP_HAL_SITL.h"
namespace HALSITL {
class ToneAlarm_SF {
public:
void set_buzzer_tone(float frequency, float volume, float duration_ms);
bool init();
};
}