mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-14 13:28:36 -07:00
Restored Infrared and RFID CLI
This commit is contained in:
@@ -8,7 +8,7 @@ App(
|
|||||||
"gui",
|
"gui",
|
||||||
"dialogs",
|
"dialogs",
|
||||||
],
|
],
|
||||||
provides=["infrared_start"],
|
# provides=["infrared_start"],
|
||||||
# icon="A_Infrared_14",
|
# icon="A_Infrared_14",
|
||||||
stack_size=3 * 1024,
|
stack_size=3 * 1024,
|
||||||
order=40,
|
order=40,
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
#include "infrared.h"
|
#include "infrared.h"
|
||||||
#include "infrared_remote.h"
|
#include "infrared_remote.h"
|
||||||
#include "infrared_brute_force.h"
|
#include "../../services/infraredsrv/infrared_brute_force.h"
|
||||||
#include "infrared_custom_event.h"
|
#include "infrared_custom_event.h"
|
||||||
|
|
||||||
#include "scenes/infrared_scene.h"
|
#include "scenes/infrared_scene.h"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "infrared_signal.h"
|
#include "../../services/infraredsrv/infrared_signal.h"
|
||||||
|
|
||||||
typedef struct InfraredRemoteButton InfraredRemoteButton;
|
typedef struct InfraredRemoteButton InfraredRemoteButton;
|
||||||
|
|
||||||
|
|||||||
@@ -8,9 +8,7 @@ App(
|
|||||||
"gui",
|
"gui",
|
||||||
"dialogs",
|
"dialogs",
|
||||||
],
|
],
|
||||||
provides=[
|
# provides=[ "lfrfid_start", ],
|
||||||
"lfrfid_start",
|
|
||||||
],
|
|
||||||
# icon="A_125khz_14",
|
# icon="A_125khz_14",
|
||||||
stack_size=2 * 1024,
|
stack_size=2 * 1024,
|
||||||
order=20,
|
order=20,
|
||||||
|
|||||||
@@ -7,7 +7,6 @@
|
|||||||
#include <gui/view.h>
|
#include <gui/view.h>
|
||||||
#include <gui/view_dispatcher.h>
|
#include <gui/view_dispatcher.h>
|
||||||
#include <gui/scene_manager.h>
|
#include <gui/scene_manager.h>
|
||||||
#include <cli/cli.h>
|
|
||||||
#include <notification/notification_messages.h>
|
#include <notification/notification_messages.h>
|
||||||
|
|
||||||
#include <gui/modules/submenu.h>
|
#include <gui/modules/submenu.h>
|
||||||
|
|||||||
@@ -10,6 +10,8 @@ App(
|
|||||||
"loader",
|
"loader",
|
||||||
"power",
|
"power",
|
||||||
"ibuttonsrv",
|
"ibuttonsrv",
|
||||||
|
"infraredsrv",
|
||||||
|
"lfrfidsrv",
|
||||||
"namechangersrv",
|
"namechangersrv",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|||||||
7
applications/services/infraredsrv/application.fam
Normal file
7
applications/services/infraredsrv/application.fam
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
App(
|
||||||
|
appid="infraredsrv",
|
||||||
|
apptype=FlipperAppType.STARTUP,
|
||||||
|
entry_point="infrared_on_system_start",
|
||||||
|
requires=["infrared"],
|
||||||
|
order=20,
|
||||||
|
)
|
||||||
7
applications/services/lfrfidsrv/application.fam
Normal file
7
applications/services/lfrfidsrv/application.fam
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
App(
|
||||||
|
appid="lfrfidsrv",
|
||||||
|
apptype=FlipperAppType.STARTUP,
|
||||||
|
entry_point="lfrfid_on_system_start",
|
||||||
|
requires=["lfrfid"],
|
||||||
|
order=50,
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user