Merge pull request #3560 from leptun/splash_version

Show firmware version on splash screen
This commit is contained in:
Yuri D'Elia 2022-09-21 14:47:41 +02:00 committed by GitHub
commit 16d1ef8510
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -798,7 +798,7 @@ int uart_putchar(char c, FILE *)
void lcd_splash()
{
lcd_clear(); // clears display and homes screen
lcd_puts_P(PSTR("\n Original Prusa i3\n Prusa Research"));
lcd_printf_P(PSTR("\n Original Prusa i3\n Prusa Research\n%20.20S"), PSTR(FW_VERSION));
}