mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-01-02 02:05:05 +03:00
f4cc9e5de7
if author want their plugin to be removed - create issue, thanks
41 lines
1.4 KiB
C++
41 lines
1.4 KiB
C++
#include "hid_analyzer_app_scene_read.h"
|
|
#include <dolphin/dolphin.h>
|
|
|
|
void HIDAppSceneRead::on_enter(HIDApp* app, bool /* need_restore */) {
|
|
auto popup = app->view_controller.get<PopupVM>();
|
|
|
|
DOLPHIN_DEED(DolphinDeedRfidRead);
|
|
popup->set_header("Searching for\nLF HID RFID", 89, 34, AlignCenter, AlignTop);
|
|
popup->set_icon(0, 3, &I_RFIDDolphinReceive_97x61);
|
|
|
|
app->view_controller.switch_to<PopupVM>();
|
|
app->worker.start_read();
|
|
}
|
|
|
|
bool HIDAppSceneRead::on_event(HIDApp* app, HIDApp::Event* event) {
|
|
bool consumed = false;
|
|
|
|
if(event->type == HIDApp::EventType::Tick) {
|
|
if(app->worker.read()) {
|
|
DOLPHIN_DEED(DolphinDeedRfidReadSuccess);
|
|
notification_message(app->notification, &sequence_success);
|
|
app->scene_controller.switch_to_next_scene(HIDApp::SceneType::ReadSuccess);
|
|
} else {
|
|
if(app->worker.any_read()) {
|
|
notification_message(app->notification, &sequence_blink_green_10);
|
|
} else if(app->worker.detect()) {
|
|
notification_message(app->notification, &sequence_blink_cyan_10);
|
|
} else {
|
|
notification_message(app->notification, &sequence_blink_cyan_10);
|
|
}
|
|
}
|
|
}
|
|
|
|
return consumed;
|
|
}
|
|
|
|
void HIDAppSceneRead::on_exit(HIDApp* app) {
|
|
app->view_controller.get<PopupVM>()->clean();
|
|
app->worker.stop_read();
|
|
}
|