| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #include "../nfc_magic_app_i.h"
- void nfc_magic_check_worker_callback(NfcMagicScannerEvent event, void* context) {
- furi_assert(context);
- NfcMagicApp* instance = context;
- if(event.type == NfcMagicScannerEventTypeDetected) {
- instance->protocol = event.data.protocol;
- view_dispatcher_send_custom_event(
- instance->view_dispatcher, NfcMagicCustomEventWorkerSuccess);
- } else if(event.type == NfcMagicScannerEventTypeDetectedNotMagic) {
- view_dispatcher_send_custom_event(
- instance->view_dispatcher, NfcMagicCustomEventWorkerFail);
- }
- }
- void nfc_magic_scene_check_on_enter(void* context) {
- NfcMagicApp* instance = context;
- popup_set_icon(instance->popup, 0, 8, &I_NFC_manual_60x50);
- popup_set_text(instance->popup, "Apply card to\nthe back", 128, 32, AlignRight, AlignCenter);
- nfc_magic_app_blink_start(instance);
- nfc_magic_scanner_start(instance->scanner, nfc_magic_check_worker_callback, instance);
- view_dispatcher_switch_to_view(instance->view_dispatcher, NfcMagicAppViewPopup);
- }
- bool nfc_magic_scene_check_on_event(void* context, SceneManagerEvent event) {
- NfcMagicApp* instance = context;
- bool consumed = false;
- if(event.type == SceneManagerEventTypeCustom) {
- if(event.event == NfcMagicCustomEventWorkerSuccess) {
- scene_manager_next_scene(instance->scene_manager, NfcMagicSceneMagicInfo);
- consumed = true;
- } else if(event.event == NfcMagicCustomEventWorkerFail) {
- scene_manager_next_scene(instance->scene_manager, NfcMagicSceneNotMagic);
- consumed = true;
- }
- }
- return consumed;
- }
- void nfc_magic_scene_check_on_exit(void* context) {
- NfcMagicApp* instance = context;
- nfc_magic_scanner_stop(instance->scanner);
- popup_reset(instance->popup);
- nfc_magic_app_blink_stop(instance);
- }
|