From a0a74fe5d347b16c37b805b653e21a0ec028fb52 Mon Sep 17 00:00:00 2001 From: Jakub <106778416+MarekZegare4@users.noreply.github.com> Date: Sat, 23 May 2026 10:14:05 +0200 Subject: [PATCH] fix(eink): replace mute bitmap icon with text letter M Co-Authored-By: Claude Sonnet 4.6 --- examples/companion_radio/ui-new/UITask.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/companion_radio/ui-new/UITask.cpp b/examples/companion_radio/ui-new/UITask.cpp index 20a617a0..aa9d7c9f 100644 --- a/examples/companion_radio/ui-new/UITask.cpp +++ b/examples/companion_radio/ui-new/UITask.cpp @@ -303,7 +303,11 @@ class HomeScreen : public UIScreen { #ifdef PIN_BUZZER if (_task->isBuzzerQuiet()) { display.setColor(DisplayDriver::LIGHT); - display.drawXbm(battLeftX - 9, 0, muted_icon, 8, 8); + display.fillRect(battLeftX - 9, 0, 7, 7); + display.setColor(DisplayDriver::DARK); + display.setCursor(battLeftX - 9, 0); + display.print("M"); + display.setColor(DisplayDriver::LIGHT); } #endif