mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
25 lines
542 B
Plaintext
25 lines
542 B
Plaintext
App(
|
|
appid="hid_usb",
|
|
name="USB Remote",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="hid_usb_app",
|
|
stack_size=1 * 1024,
|
|
fap_category="Tools",
|
|
fap_icon="hid_usb_10px.png",
|
|
fap_icon_assets="assets",
|
|
fap_icon_assets_symbol="hid",
|
|
)
|
|
|
|
|
|
App(
|
|
appid="hid_ble",
|
|
name="Bluetooth Remote",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="hid_ble_app",
|
|
stack_size=1 * 1024,
|
|
fap_category="Tools",
|
|
fap_icon="hid_ble_10px.png",
|
|
fap_icon_assets="assets",
|
|
fap_icon_assets_symbol="hid",
|
|
)
|