diff --git a/CHANGELOG.md b/CHANGELOG.md index a0ea760b6..a83f7a68c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ * Archive: Allow folders to be pinned (by @WillyJL) * Apps: Build tag (**21jan2026**) - **Check out more Apps updates and fixes by following** [this link](https://github.com/xMasterX/all-the-plugins/commits/dev) ## Other changes +* NFC: Fix LED not blinking at SLIX unlock (closes issue #945) * SubGHz: Possible Sommer timings fix * SubGHz: Various fixes * SubGHz: Nice Flor S remove extra uint64 variable diff --git a/applications/main/nfc/scenes/nfc_scene_slix_unlock.c b/applications/main/nfc/scenes/nfc_scene_slix_unlock.c index ae725ce67..f6e5a8f50 100644 --- a/applications/main/nfc/scenes/nfc_scene_slix_unlock.c +++ b/applications/main/nfc/scenes/nfc_scene_slix_unlock.c @@ -35,6 +35,8 @@ void nfc_scene_slix_unlock_on_enter(void* context) { instance->popup, "Hold card next\nto Flipper's back", 94, 27, AlignCenter, AlignTop); view_dispatcher_switch_to_view(instance->view_dispatcher, NfcViewPopup); + notification_message(instance->notifications, &sequence_blink_start_cyan); + instance->poller = nfc_poller_alloc(instance->nfc, NfcProtocolSlix); nfc_poller_start(instance->poller, nfc_scene_slix_unlock_worker_callback, instance); } @@ -67,4 +69,7 @@ void nfc_scene_slix_unlock_on_exit(void* context) { nfc_poller_free(instance->poller); popup_reset(instance->popup); + + // Stop notifications + nfc_blink_stop(instance); }