2021-05-04 13:21:16 +00:00
|
|
|
#include "lf-rfid-scene-emulate-hid.h"
|
|
|
|
|
|
|
|
#include "../lf-rfid-app.h"
|
|
|
|
#include "../lf-rfid-view-manager.h"
|
|
|
|
#include "../lf-rfid-event.h"
|
|
|
|
#include "../helpers/key-info.h"
|
|
|
|
|
|
|
|
void LfrfidSceneEmulateHID::on_enter(LfrfidApp* app) {
|
|
|
|
LfrfidAppViewManager* view_manager = app->get_view_manager();
|
|
|
|
|
|
|
|
Popup* popup = view_manager->get_popup();
|
|
|
|
popup_set_header(popup, "LF-RFID", 64, 16, AlignCenter, AlignBottom);
|
2021-05-06 08:45:52 +00:00
|
|
|
app->set_text_store("HID H10301 emulation");
|
2021-05-04 13:21:16 +00:00
|
|
|
popup_set_text(popup, app->get_text_store(), 64, 22, AlignCenter, AlignTop);
|
|
|
|
|
|
|
|
view_manager->switch_to(LfrfidAppViewManager::ViewType::Popup);
|
2021-05-06 08:45:52 +00:00
|
|
|
app->get_emulator()->start(RfidTimerEmulator::Type::HID_H10301);
|
2021-05-04 13:21:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool LfrfidSceneEmulateHID::on_event(LfrfidApp* app, LfrfidEvent* event) {
|
|
|
|
bool consumed = false;
|
|
|
|
|
|
|
|
return consumed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LfrfidSceneEmulateHID::on_exit(LfrfidApp* app) {
|
|
|
|
LfrfidAppViewManager* view_manager = app->get_view_manager();
|
|
|
|
|
|
|
|
Popup* popup = view_manager->get_popup();
|
|
|
|
popup_set_header(popup, NULL, 0, 0, AlignCenter, AlignBottom);
|
|
|
|
popup_set_text(popup, NULL, 0, 0, AlignCenter, AlignTop);
|
|
|
|
|
|
|
|
app->get_emulator()->stop();
|
|
|
|
}
|