We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 603dd8e commit d4e2e66Copy full SHA for d4e2e66
src/lcd.rs
@@ -54,16 +54,11 @@ pub async fn lcd_task(
54
55
_ = lcd_driver.print(
56
0,
57
- &alloc::format!("ID: {:X}", crate::utils::get_efuse_u32()),
58
- PrintAlign::Left,
59
- true,
60
- );
61
- _ = lcd_driver.print(
62
- 1,
63
- &alloc::format!("VER: {}", crate::version::VERSION),
+ &alloc::format!("{:X}", crate::utils::get_efuse_u32()),
64
PrintAlign::Left,
65
true,
66
);
+ _ = lcd_driver.print(1, crate::version::VERSION, PrintAlign::Center, true);
67
lcd_driver.display_on_lcd(&mut lcd).await;
68
69
0 commit comments