IR Remote Loader

This commit is contained in:
RogueMaster
2022-12-26 16:31:56 -05:00
parent c0388432ac
commit 5b7ee8baf0
3 changed files with 24 additions and 0 deletions
+1
View File
@@ -10,6 +10,7 @@ App(
"ibutton_loader",
# "infrared",
"infrared_loader",
"infrared_rem_loader",
"lfrfid",
# "lfrfid_loader",
"nfc",
@@ -0,0 +1,14 @@
App(
appid="infrared_rem_loader",
name="IR Remote",
apptype=FlipperAppType.APP,
entry_point="infrared_rem_loader_app",
requires=[
"gui",
"dialogs",
],
stack_size=int(2 * 1024),
icon="A_Infrared_14",
order=41,
link="/ext/apps/Tools/IR_Remote.fap",
)
@@ -0,0 +1,9 @@
#include <applications/services/loader/loader_i.h>
#define TAG "infrared_rem_loader_app"
int32_t infrared_rem_loader_app(void* p) {
UNUSED(p);
return 0;
}