ToneAlarm_SF.h 207 B

1234567891011
  1. #pragma once
  2. #include "AP_HAL_SITL.h"
  3. namespace HALSITL {
  4. class ToneAlarm_SF {
  5. public:
  6. void set_buzzer_tone(float frequency, float volume, float duration_ms);
  7. bool init();
  8. };
  9. }