unleashed-firmware/applications/main/application.fam

38 lines
726 B
Text
Raw Normal View History

App(
appid="main_apps",
name="Basic applications for main menu",
apptype=FlipperAppType.METAPACKAGE,
provides=[
"gpio",
"onewire",
"ibutton",
"infrared",
"lfrfid",
"nfc",
"subghz",
"bad_usb",
"u2f",
"archive",
2022-09-14 21:04:04 +03:00
"clock",
"subghz_remote",
],
)
2023-07-06 01:20:09 +03:00
# Enable apps that you need in DEBUG firmware here:
App(
appid="main_apps_default",
name="Basic applications for main menu",
apptype=FlipperAppType.METAPACKAGE,
provides=[
2023-07-06 01:20:09 +03:00
# "gpio",
# "ibutton",
# "infrared",
"lfrfid",
2023-07-06 01:20:09 +03:00
# "nfc",
"subghz",
2023-07-06 01:20:09 +03:00
# "bad_usb",
# "u2f",
"archive",
],
)