unleashed-firmware/applications/main/lfrfid/scenes/lfrfid_scene_select_raw_key.c
2023-04-23 19:03:23 +03:00

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);
}