mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2025-02-25 19:57:09 +00:00
hid analyzer won't needed anymore because of new lfrfid system adds support for multiple hid protocols
81 lines
No EOL
1.5 KiB
Text
81 lines
No EOL
1.5 KiB
Text
App(
|
|
appid="basic_services",
|
|
name="Basic services",
|
|
apptype=FlipperAppType.METAPACKAGE,
|
|
provides=[
|
|
"rpc",
|
|
"bt",
|
|
"desktop",
|
|
"loader",
|
|
"power",
|
|
],
|
|
)
|
|
|
|
|
|
App(
|
|
appid="basic_apps",
|
|
name="Basic applications for main menu",
|
|
apptype=FlipperAppType.METAPACKAGE,
|
|
provides=[
|
|
"gpio",
|
|
"ibutton",
|
|
"infrared",
|
|
"lfrfid",
|
|
"nfc",
|
|
"subghz",
|
|
"bad_usb",
|
|
"u2f",
|
|
],
|
|
)
|
|
|
|
|
|
App(
|
|
appid="basic_plugins",
|
|
name="Basic applications for plug-in menu",
|
|
apptype=FlipperAppType.METAPACKAGE,
|
|
provides=[
|
|
"music_player",
|
|
"bt_hid",
|
|
],
|
|
)
|
|
|
|
App(
|
|
appid="custom_games",
|
|
name="Custom applications for games menu",
|
|
apptype=FlipperAppType.METAPACKAGE,
|
|
provides=[
|
|
"snake_game",
|
|
"tetris_game",
|
|
"arkanoid_game",
|
|
"tictactoe_game",
|
|
],
|
|
)
|
|
|
|
App(
|
|
appid="custom_apps",
|
|
name="Custom applications for main menu",
|
|
apptype=FlipperAppType.METAPACKAGE,
|
|
provides=[
|
|
"clock",
|
|
"spectrum_analyzer",
|
|
"unirfremix",
|
|
],
|
|
)
|
|
|
|
App(
|
|
appid="custom_plugins",
|
|
name="Custom applications for plug-in menu",
|
|
apptype=FlipperAppType.METAPACKAGE,
|
|
provides=[
|
|
"picopass",
|
|
"barcode_generator",
|
|
"mouse_jacker",
|
|
"nrf_sniff",
|
|
"sentry_safe",
|
|
"wifi_marauder",
|
|
"esp8266_deauth",
|
|
"wifi_scanner",
|
|
"wav_player",
|
|
"multi_converter",
|
|
],
|
|
) |