Three digit farm numbers support
This commit is contained in:
parent
241e32e691
commit
c710e80bc5
1 changed files with 7 additions and 3 deletions
|
@ -757,7 +757,7 @@ static void lcd_implementation_status_screen()
|
|||
}
|
||||
}
|
||||
|
||||
// Farm number display
|
||||
// Farm number display
|
||||
if (farm_mode)
|
||||
{
|
||||
lcd_printPGM(PSTR(" F"));
|
||||
|
@ -775,6 +775,10 @@ static void lcd_implementation_status_screen()
|
|||
}
|
||||
|
||||
}
|
||||
else {
|
||||
lcd.setCursor(LCD_WIDTH - 8 - 2, 2);
|
||||
lcd_printPGM(PSTR(" "));
|
||||
}
|
||||
|
||||
#ifdef SNMM
|
||||
lcd_printPGM(PSTR(" E"));
|
||||
|
@ -783,8 +787,8 @@ static void lcd_implementation_status_screen()
|
|||
#endif
|
||||
|
||||
//Print time elapsed
|
||||
lcd.setCursor(LCD_WIDTH - 8 -2, 2);
|
||||
lcd_printPGM(PSTR(" "));
|
||||
lcd.setCursor(LCD_WIDTH - 8 -1, 2);
|
||||
lcd_printPGM(PSTR(" "));
|
||||
lcd.print(LCD_STR_CLOCK[0]);
|
||||
if(starttime != 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue