Implement sound module to handle audio alerts

This commit is contained in:
2023-05-16 14:02:32 +01:00
parent f50525a2a6
commit 82334be492
7 changed files with 173 additions and 2 deletions

View File

@@ -6,6 +6,7 @@
#include "console.h"
#include "display.h"
#include "settings.h"
#include "sound.h"
#include "time_manager.h"
#include "wifi.h"
@@ -16,4 +17,5 @@ void app_main(void)
display_init();
wifi_init();
time_manager_init();
sound_init();
}