mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-14 12:58:36 -07:00
Restored Infrared and RFID CLI
This commit is contained in:
@@ -8,7 +8,7 @@ App(
|
||||
"gui",
|
||||
"dialogs",
|
||||
],
|
||||
provides=["infrared_start"],
|
||||
# provides=["infrared_start"],
|
||||
# icon="A_Infrared_14",
|
||||
stack_size=3 * 1024,
|
||||
order=40,
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
|
||||
#include "infrared.h"
|
||||
#include "infrared_remote.h"
|
||||
#include "infrared_brute_force.h"
|
||||
#include "../../services/infraredsrv/infrared_brute_force.h"
|
||||
#include "infrared_custom_event.h"
|
||||
|
||||
#include "scenes/infrared_scene.h"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include "infrared_signal.h"
|
||||
#include "../../services/infraredsrv/infrared_signal.h"
|
||||
|
||||
typedef struct InfraredRemoteButton InfraredRemoteButton;
|
||||
|
||||
|
||||
@@ -8,9 +8,7 @@ App(
|
||||
"gui",
|
||||
"dialogs",
|
||||
],
|
||||
provides=[
|
||||
"lfrfid_start",
|
||||
],
|
||||
# provides=[ "lfrfid_start", ],
|
||||
# icon="A_125khz_14",
|
||||
stack_size=2 * 1024,
|
||||
order=20,
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
#include <gui/view.h>
|
||||
#include <gui/view_dispatcher.h>
|
||||
#include <gui/scene_manager.h>
|
||||
#include <cli/cli.h>
|
||||
#include <notification/notification_messages.h>
|
||||
|
||||
#include <gui/modules/submenu.h>
|
||||
|
||||
@@ -10,6 +10,8 @@ App(
|
||||
"loader",
|
||||
"power",
|
||||
"ibuttonsrv",
|
||||
"infraredsrv",
|
||||
"lfrfidsrv",
|
||||
"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