This commit is contained in:
Willy-JL
2023-11-19 23:42:25 +00:00
parent 2b71789692
commit 91368a4538
7 changed files with 126 additions and 114 deletions

View File

@@ -5,19 +5,18 @@
void hex_viewer_play_input_sound(void* context) {
HexViewer* app = context;
if (app->speaker != 1) {
if(app->speaker != 1) {
return;
}
float volume = 1.0f;
if(furi_hal_speaker_is_mine() || furi_hal_speaker_acquire(30)) {
furi_hal_speaker_start(NOTE_INPUT, volume);
}
}
void hex_viewer_stop_all_sound(void* context) {
HexViewer* app = context;
if (app->speaker != 1) {
if(app->speaker != 1) {
return;
}
if(furi_hal_speaker_is_mine()) {