mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
21 lines
572 B
Plaintext
21 lines
572 B
Plaintext
App(
|
|
appid="text2sam",
|
|
name="Text to SAM",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="sam_app",
|
|
cdefines=["APP_SAM"],
|
|
# requires=["gui",],
|
|
requires=[
|
|
"gui",
|
|
"dialogs",
|
|
],
|
|
stack_size=4 * 1024,
|
|
# stack_size=2 * 1024,
|
|
fap_icon="icon.png",
|
|
fap_category="Media",
|
|
fap_author="@Round-Pi & (Fixes by @Willy-JL)",
|
|
fap_weburl="https://github.com/Round-Pi/flipperzero-text2sam",
|
|
fap_version="1.1",
|
|
fap_description="Convert text to speech on your Flipper Zero with SAM (Software Automatic Mouth).",
|
|
)
|