mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
12 lines
207 B
C++
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();
|
|
};
|
|
}
|