Files
Momentum-Firmware/applications/plugins/mousejacker/application.fam
VerstreuteSeele c02ce79f8c Application Galore
2022-12-20 06:28:52 +01:00

25 lines
503 B
Plaintext

App(
appid="NRF24_Mouse_Jacker",
name="[NRF24] Mouse Jacker",
apptype=FlipperAppType.EXTERNAL,
entry_point="mousejacker_app",
cdefines=["APP_MOUSEJACKER"],
requires=[
"gui",
"dialogs",
],
stack_size=2 * 1024,
order=50,
fap_icon="mouse_10px.png",
fap_category="GPIO",
fap_icon_assets="images",
fap_private_libs=[
Lib(
name="nrf24",
sources=[
"nrf24.c",
],
),
],
)