This commit is contained in:
RogueMaster
2022-10-16 19:43:50 -04:00
parent caa73ef28a
commit 3380d5c1c1
4 changed files with 5827 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#include <furi.h>
#include "stm32_sam.h"
STM32SAM voice;
extern "C" int32_t sam_app(void* p) {
UNUSED(p);
voice.begin();
voice.say("Hello world. I am FLIPPER SAM, automated voice!");
return 0;
}