From 323dd992d96e83cae0a8a9db94ad2649c0eb50a4 Mon Sep 17 00:00:00 2001 From: lewisxhe Date: Tue, 2 Sep 2025 15:11:34 +0800 Subject: [PATCH] Update t3 factory --- examples/T3S3Factory/T3S3Factory.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/T3S3Factory/T3S3Factory.ino b/examples/T3S3Factory/T3S3Factory.ino index 790f198..149b76f 100644 --- a/examples/T3S3Factory/T3S3Factory.ino +++ b/examples/T3S3Factory/T3S3Factory.ino @@ -655,7 +655,7 @@ void hwInfo(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t display->setFont(ArialMT_Plain_10); display->setTextAlignment(TEXT_ALIGN_LEFT); display->drawString(0 + x, 10 + y, "Radio "); - display->drawString(50 + x, 10 + y, isRadioOnline & 1 ? "+" : "NA"); + display->drawString(50 + x, 10 + y, isRadioOnline & 1 ? RADIO_TYPE_STR : "NA"); display->drawString(0 + x, 20 + y, "SD "); display->drawString(50 + x, 20 + y, SD.cardSize() != 0 ? "+" : "NA"); display->drawString(0 + x, 30 + y, "BAT ");