mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
20 lines
256 B
C
20 lines
256 B
C
|
/**
|
||
|
* @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_stop();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|