From 7bfdeaaac3f69f04bdda60412fc1e09f9211df9f Mon Sep 17 00:00:00 2001 From: Leeroy <135471162+LeeroysHub@users.noreply.github.com> Date: Thu, 22 Jan 2026 10:37:45 +1100 Subject: [PATCH] Add CYAN blining LED for Receiver (Like SubGhz App) --- scenes/protopirate_scene_receiver.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scenes/protopirate_scene_receiver.c b/scenes/protopirate_scene_receiver.c index 4a07e1a..b88f66a 100644 --- a/scenes/protopirate_scene_receiver.c +++ b/scenes/protopirate_scene_receiver.c @@ -182,7 +182,7 @@ void protopirate_scene_receiver_on_enter(void* context) { // Update lock state in view protopirate_view_receiver_set_lock(app->protopirate_receiver, app->lock); - + // Switch to receiver view view_dispatcher_switch_to_view(app->view_dispatcher, ProtoPirateViewReceiver); } @@ -252,6 +252,9 @@ bool protopirate_scene_receiver_on_event(void* context, SceneManagerEvent event) FURI_LOG_D(TAG, "RSSI: %.1f dBm (%s)", (double)rssi, is_ext ? "EXT" : "INT"); rssi_log_counter = 0; } + + //Blink the light like the SubGHZ app. + notification_message(app->notifications, &sequence_blink_cyan_10); } consumed = true;