Skip to content

Commit e445072

Browse files
authored
Added app descriptions (#8)
1 parent 6300982 commit e445072

File tree

11 files changed

+13
-1
lines changed

11 files changed

+13
-1
lines changed

avr_isp_programmer/application.fam

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
App(
22
appid="avr_isp",
33
name="AVR Flasher",
4+
description="Application for flashing AVR microcontrollers",
45
apptype=FlipperAppType.EXTERNAL,
56
entry_point="avr_isp_app",
67
requires=["gui"],

dap_link/application.fam

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
App(
22
appid="dap_link",
33
name="DAP Link",
4+
description="Enables use of Flipper as a debug probe for ARM devices, implements the CMSIS-DAP protocol",
45
apptype=FlipperAppType.EXTERNAL,
56
entry_point="dap_link_app",
67
requires=[

hid_app/application.fam

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
App(
22
appid="hid_usb",
33
name="Remote",
4+
description="Use Flipper as a HID remote control over USB",
45
apptype=FlipperAppType.EXTERNAL,
56
entry_point="hid_usb_app",
67
stack_size=1 * 1024,
@@ -14,6 +15,7 @@ App(
1415
App(
1516
appid="hid_ble",
1617
name="Remote",
18+
description="Use Flipper as a HID remote control over Bluetooth",
1719
apptype=FlipperAppType.EXTERNAL,
1820
entry_point="hid_ble_app",
1921
stack_size=1 * 1024,

mass_storage/application.fam

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ App(
22
appid="mass_storage",
33
name="Mass Storage",
44
apptype=FlipperAppType.EXTERNAL,
5+
description="Implements a mass storage device over USB for disk images",
56
entry_point="mass_storage_app",
67
requires=[
78
"gui",

mfkey32/application.fam

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
App(
22
appid="mfkey32",
33
name="Mfkey32",
4+
description="Mf Classic key finder",
45
apptype=FlipperAppType.EXTERNAL,
56
targets=["f7"],
67
entry_point="mfkey32_main",
@@ -10,7 +11,7 @@ App(
1011
],
1112
stack_size=1 * 1024,
1213
fap_icon="mfkey.png",
13-
fap_category="Nfc",
14+
fap_category="NFC",
1415
fap_author="noproto",
1516
fap_icon_assets="images",
1617
fap_weburl="https://github.com/noproto/FlipperMfkey",

nfc_magic/application.fam

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
App(
22
appid="nfc_magic",
33
name="Nfc Magic",
4+
description="Application for writing to NFC tags with modifiable sector 0",
45
apptype=FlipperAppType.EXTERNAL,
56
targets=["f7"],
67
entry_point="nfc_magic_app",

nfc_rfid_detector/application.fam

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
App(
22
appid="nfc_rfid_detector",
33
name="NFC/RFID detector",
4+
description="Identify the reader type: NFC (12.54 MHz) and/or RFID (125 KHz)",
45
apptype=FlipperAppType.EXTERNAL,
56
targets=["f7"],
67
entry_point="nfc_rfid_detector_app",

picopass/application.fam

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
App(
22
appid="picopass",
33
name="PicoPass",
4+
description="App to communicate with NFC tags using the PicoPass format",
45
apptype=FlipperAppType.EXTERNAL,
56
targets=["f7"],
67
entry_point="picopass_app",

signal_generator/application.fam

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
App(
22
appid="signal_generator",
33
name="Signal Generator",
4+
description="Control GPIO pins to generate digital signals",
45
apptype=FlipperAppType.EXTERNAL,
56
entry_point="signal_gen_app",
67
requires=["gui"],

spi_mem_manager/application.fam

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
App(
22
appid="spi_mem_manager",
33
name="SPI Mem Manager",
4+
description="Application for reading and writing 25-series SPI memory chips",
45
apptype=FlipperAppType.EXTERNAL,
56
entry_point="spi_mem_app",
67
requires=["gui"],

weather_station/application.fam

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
App(
22
appid="weather_station",
33
name="Weather Station",
4+
description="Receive weather data from a wide range of supported Sub-1GHz remote sensor",
45
apptype=FlipperAppType.EXTERNAL,
56
targets=["f7"],
67
entry_point="weather_station_app",

0 commit comments

Comments
 (0)