flipperzero-firmware/firmware/targets/furi_hal_include/furi_hal_speaker.h

22 lines
305 B
C
Raw Normal View History

/**
* @file furi_hal_speaker.h
* Speaker HAL
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
void furi_hal_speaker_init();
void furi_hal_speaker_start(float frequency, float volume);
void furi_hal_speaker_set_volume(float volume);
void furi_hal_speaker_stop();
#ifdef __cplusplus
}
#endif