7734fb4018
* Gui module byte-input: changed api * Gui: changed font height in multiline text according to guideline * Apps lrfid, nfc: changed send and receive icon * App lfrfid: fix text, fix scene switсh * Elements: multiline text framed, fix paddings * Gui: remove duplicate definition of elements_multiline_text_framed * App NFC: update byte_input callback signature * App subghz: fix text lines in capture scene * App subghz: position of the text is aligned with the guidelines and other scenes * App subghz: removed mockup Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
32 lines
992 B
C++
32 lines
992 B
C++
#include "lfrfid-app-scene-read.h"
|
|
|
|
void LfRfidAppSceneRead::on_enter(LfRfidApp* app, bool need_restore) {
|
|
auto popup = app->view_controller.get<PopupVM>();
|
|
|
|
popup->set_header("Reading\nLF RFID", 89, 34, AlignCenter, AlignTop);
|
|
popup->set_icon(0, 3, I_RFIDDolphinReceive_97x61);
|
|
|
|
app->view_controller.switch_to<PopupVM>();
|
|
app->worker.start_read();
|
|
}
|
|
|
|
bool LfRfidAppSceneRead::on_event(LfRfidApp* app, LfRfidApp::Event* event) {
|
|
bool consumed = false;
|
|
|
|
if(event->type == LfRfidApp::EventType::Tick) {
|
|
if(app->worker.read()) {
|
|
notification_message(app->notification, &sequence_success);
|
|
app->scene_controller.switch_to_next_scene(LfRfidApp::SceneType::ReadSuccess);
|
|
} else {
|
|
notification_message(app->notification, &sequence_blink_red_10);
|
|
}
|
|
}
|
|
|
|
return consumed;
|
|
}
|
|
|
|
void LfRfidAppSceneRead::on_exit(LfRfidApp* app) {
|
|
app->view_controller.get<PopupVM>()->clean();
|
|
app->worker.stop_read();
|
|
}
|