2022-09-08 16:40:33 +00:00
|
|
|
#include "../lfrfid_i.h"
|
|
|
|
|
|
|
|
void lfrfid_scene_raw_info_on_enter(void* context) {
|
|
|
|
LfRfid* app = context;
|
|
|
|
Widget* widget = app->widget;
|
|
|
|
|
2024-03-29 03:32:43 +00:00
|
|
|
if(storage_sd_status(app->storage) != FSE_OK) {
|
|
|
|
widget_add_icon_element(widget, 83, 22, &I_WarningDolphinFlip_45x42);
|
|
|
|
widget_add_string_element(
|
|
|
|
widget, 64, 0, AlignCenter, AlignTop, FontPrimary, "No SD Card!");
|
2022-09-08 16:40:33 +00:00
|
|
|
widget_add_string_multiline_element(
|
|
|
|
widget,
|
2024-03-29 03:32:43 +00:00
|
|
|
0,
|
|
|
|
13,
|
|
|
|
AlignLeft,
|
2022-09-08 16:40:33 +00:00
|
|
|
AlignTop,
|
|
|
|
FontSecondary,
|
2024-03-29 03:32:43 +00:00
|
|
|
"Insert an SD card\n"
|
|
|
|
"to use this function");
|
2022-09-08 16:40:33 +00:00
|
|
|
|
|
|
|
} else {
|
2024-03-29 03:32:43 +00:00
|
|
|
widget_add_text_box_element(
|
2022-09-08 16:40:33 +00:00
|
|
|
widget,
|
|
|
|
0,
|
2024-03-29 03:32:43 +00:00
|
|
|
0,
|
|
|
|
128,
|
|
|
|
64,
|
2022-09-08 16:40:33 +00:00
|
|
|
AlignLeft,
|
|
|
|
AlignTop,
|
2024-03-29 03:32:43 +00:00
|
|
|
"\e#RAW RFID Data Reader\e#\n"
|
|
|
|
"1. Hold card next to Flipper\n"
|
|
|
|
"2. Press OK\n"
|
|
|
|
"3. Wait until data is read",
|
|
|
|
false);
|
2022-09-08 16:40:33 +00:00
|
|
|
|
|
|
|
widget_add_button_element(widget, GuiButtonTypeCenter, "OK", lfrfid_widget_callback, app);
|
|
|
|
}
|
|
|
|
|
|
|
|
view_dispatcher_switch_to_view(app->view_dispatcher, LfRfidViewWidget);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool lfrfid_scene_raw_info_on_event(void* context, SceneManagerEvent event) {
|
|
|
|
LfRfid* app = context;
|
|
|
|
SceneManager* scene_manager = app->scene_manager;
|
|
|
|
bool consumed = false;
|
|
|
|
|
|
|
|
if(event.type == SceneManagerEventTypeBack) {
|
|
|
|
consumed = true;
|
|
|
|
scene_manager_search_and_switch_to_previous_scene(scene_manager, LfRfidSceneExtraActions);
|
|
|
|
} else if(event.type == SceneManagerEventTypeCustom) {
|
|
|
|
consumed = true;
|
|
|
|
if(event.event == GuiButtonTypeCenter) {
|
|
|
|
scene_manager_next_scene(scene_manager, LfRfidSceneRawRead);
|
|
|
|
} else if(event.event == GuiButtonTypeLeft) {
|
|
|
|
scene_manager_search_and_switch_to_previous_scene(
|
|
|
|
scene_manager, LfRfidSceneExtraActions);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return consumed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void lfrfid_scene_raw_info_on_exit(void* context) {
|
|
|
|
LfRfid* app = context;
|
|
|
|
widget_reset(app->widget);
|
|
|
|
}
|