furi_hal_speaker.h 256 B

12345678910111213141516171819
  1. /**
  2. * @file furi_hal_speaker.h
  3. * Speaker HAL
  4. */
  5. #pragma once
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. void furi_hal_speaker_init();
  10. void furi_hal_speaker_start(float frequency, float volume);
  11. void furi_hal_speaker_stop();
  12. #ifdef __cplusplus
  13. }
  14. #endif