Files
Momentum-Firmware/applications/plugins/sam/sam_app.cpp
2022-10-18 02:07:29 -04:00

13 lines
356 B
C++

#include <furi.h>
#include "stm32_sam.h"
// WOULD BE COOL IF SOMEONE MADE A TEXT ENTRY SCREEN TO HAVE IT READ WHAT IS ENTERED TO TEXT
STM32SAM voice;
extern "C" int32_t sam_app(void* p) {
UNUSED(p);
voice.begin();
voice.say("All your base are belong to us. You have no chance to survive make your time. ha ha ha. goodbye. ");
return 0;
}