V1.5: OLED欢迎页按产品模式显示标题(带秤=智能水产投料机/无秤=继电器控制终端)

This commit is contained in:
helei 2026-08-15 07:43:26 +08:00
parent 0c2020ddfb
commit 30e0b6fa95
1 changed files with 2 additions and 1 deletions

View File

@ -101,7 +101,8 @@ void app_init(void)
/* OLED 屏幕128x64 + GB2312 字库 IC */
oled_init();
oled_locate(1, 1); oled_print("继电器控制终端");
if (g_feed_scale_on) { oled_locate(1, 1); oled_print("智能水产投料机"); }
else { oled_locate(1, 1); oled_print("继电器控制终端"); }
oled_locate(2, 2); oled_print("V" FIRMWARE_VERSION_STR " RTOS");
log_info("> OLED: 初始化完成");