8af2198684
* Move structs to header * roll mbedtls into loclass * Picopass with scene for reading card * Picopass: fix memory leak * Lib: return mbedtls back * Picopass: rename symbols to match naming guide Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
56 lines
1.7 KiB
C
56 lines
1.7 KiB
C
#include "../picopass_i.h"
|
|
#include <dolphin/dolphin.h>
|
|
|
|
void picopass_read_card_worker_callback(PicopassWorkerEvent event, void* context) {
|
|
UNUSED(event);
|
|
Picopass* picopass = context;
|
|
view_dispatcher_send_custom_event(picopass->view_dispatcher, PicopassCustomEventWorkerExit);
|
|
}
|
|
|
|
void picopass_scene_read_card_on_enter(void* context) {
|
|
Picopass* picopass = context;
|
|
DOLPHIN_DEED(DolphinDeedNfcRead);
|
|
|
|
// Setup view
|
|
Popup* popup = picopass->popup;
|
|
popup_set_header(popup, "Detecting\npicopass card", 70, 34, AlignLeft, AlignTop);
|
|
popup_set_icon(popup, 0, 3, &I_RFIDDolphinReceive_97x61);
|
|
|
|
// Start worker
|
|
view_dispatcher_switch_to_view(picopass->view_dispatcher, PicopassViewPopup);
|
|
picopass_worker_start(
|
|
picopass->worker,
|
|
PicopassWorkerStateDetect,
|
|
&picopass->dev->dev_data,
|
|
picopass_read_card_worker_callback,
|
|
picopass);
|
|
|
|
picopass_blink_start(picopass);
|
|
}
|
|
|
|
bool picopass_scene_read_card_on_event(void* context, SceneManagerEvent event) {
|
|
Picopass* picopass = context;
|
|
bool consumed = false;
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
if(event.event == PicopassCustomEventWorkerExit) {
|
|
scene_manager_next_scene(picopass->scene_manager, PicopassSceneReadCardSuccess);
|
|
consumed = true;
|
|
}
|
|
} else if(event.type == SceneManagerEventTypeTick) {
|
|
consumed = true;
|
|
}
|
|
return consumed;
|
|
}
|
|
|
|
void picopass_scene_read_card_on_exit(void* context) {
|
|
Picopass* picopass = context;
|
|
|
|
// Stop worker
|
|
picopass_worker_stop(picopass->worker);
|
|
// Clear view
|
|
popup_reset(picopass->popup);
|
|
|
|
picopass_blink_stop(picopass);
|
|
}
|