Merge pull request #346 from ESurge/420

Restored iButton CLI
This commit is contained in:
RogueMaster
2022-09-26 13:12:13 -04:00
committed by GitHub
4 changed files with 8 additions and 9 deletions

View File

@@ -8,18 +8,9 @@ App(
"gui",
"dialogs",
],
provides=["ibutton_start"],
# icon="A_iButton_14",
stack_size=2 * 1024,
order=60,
fap_icon="iBIcon.png",
fap_category="Main",
)
App(
appid="ibutton_start",
apptype=FlipperAppType.STARTUP,
entry_point="ibutton_on_system_start",
requires=["ibutton"],
order=60,
)

View File

@@ -9,5 +9,6 @@ App(
"desktop",
"loader",
"power",
"ibuttonsrv",
],
)

View File

@@ -0,0 +1,7 @@
App(
appid="ibuttonsrv",
apptype=FlipperAppType.STARTUP,
entry_point="ibutton_on_system_start",
requires=["ibutton"],
order=60,
)