From 43c3105bf1d0fc8c0682960352bf0f3aedb64af1 Mon Sep 17 00:00:00 2001 From: taco Date: Wed, 3 Sep 2025 08:31:38 +1000 Subject: [PATCH] wake screen on double and triple clicks --- examples/companion_radio/ui-new/UITask.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/companion_radio/ui-new/UITask.cpp b/examples/companion_radio/ui-new/UITask.cpp index d3fc5bad..1c565a8a 100644 --- a/examples/companion_radio/ui-new/UITask.cpp +++ b/examples/companion_radio/ui-new/UITask.cpp @@ -610,12 +610,14 @@ char UITask::handleLongPress(char c) { char UITask::handleDoubleClick(char c) { MESH_DEBUG_PRINTLN("UITask: double click triggered"); + checkDisplayOn(c); c = 0; return c; } char UITask::handleTripleClick(char c) { MESH_DEBUG_PRINTLN("UITask: triple click triggered"); + checkDisplayOn(c); toggleBuzzer(); c = 0; return c;