From af070af554cc7f922f30408dd7cc92d2b723e007 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Tue, 1 Apr 2025 15:50:24 +1300 Subject: [PATCH] show please wait message on companion boot --- examples/companion_radio/main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/companion_radio/main.cpp b/examples/companion_radio/main.cpp index d6a6e9907..4672e6e68 100644 --- a/examples/companion_radio/main.cpp +++ b/examples/companion_radio/main.cpp @@ -1442,7 +1442,9 @@ void setup() { #ifdef DISPLAY_CLASS if (display.begin()) { disp = &display; - disp->clear(); + disp->startFrame(); + disp->print("Please wait..."); + disp->endFrame(); } #endif #endif