mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
13 lines
214 B
C++
13 lines
214 B
C++
#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;
|
|
} |