mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-19 19:31:50 +03:00
69530cd50f
Made by Dan Caprita <dan@caprita.ro> https://forum.flipperzero.one/t/electra-intercom/6368/43
24 lines
579 B
C
24 lines
579 B
C
#include "../lfrfid_i.h"
|
|
|
|
void lfrfid_scene_select_raw_key_on_enter(void* context) {
|
|
LfRfid* app = context;
|
|
|
|
if(lfrfid_load_raw_key_from_file_select(app)) {
|
|
scene_manager_next_scene(app->scene_manager, LfRfidSceneRawEmulate);
|
|
|
|
} else {
|
|
scene_manager_previous_scene(app->scene_manager);
|
|
}
|
|
}
|
|
|
|
bool lfrfid_scene_select_raw_key_on_event(void* context, SceneManagerEvent event) {
|
|
UNUSED(context);
|
|
UNUSED(event);
|
|
bool consumed = false;
|
|
return consumed;
|
|
}
|
|
|
|
void lfrfid_scene_select_raw_key_on_exit(void* context) {
|
|
UNUSED(context);
|
|
}
|