|
@@ -655,16 +655,18 @@ static void lcd_implementation_status_screen()
|
|
|
lcd.print('/');
|
|
|
lcd.print(itostr3left(tTarget));
|
|
|
lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
|
|
|
- lcd.print(" ");
|
|
|
+ lcd_printPGM(PSTR(" "));
|
|
|
|
|
|
//Print the Z coordinates
|
|
|
- // if (custom_message_type != 1) {
|
|
|
- // Not in a bed calibration mode.
|
|
|
lcd.setCursor(LCD_WIDTH - 8-2, 0);
|
|
|
- lcd.print(" Z");
|
|
|
- lcd.print(ftostr32sp(current_position[Z_AXIS] + 0.00001));
|
|
|
- lcd.print(' ');
|
|
|
- //}
|
|
|
+ lcd_printPGM(PSTR(" Z"));
|
|
|
+ if (custom_message_type == 1) {
|
|
|
+ // In a bed calibration mode.
|
|
|
+ lcd_printPGM(PSTR(" --- "));
|
|
|
+ } else {
|
|
|
+ lcd.print(ftostr32sp(current_position[Z_AXIS] + 0.00001));
|
|
|
+ lcd.print(' ');
|
|
|
+ }
|
|
|
|
|
|
//Print the Bedtemperature
|
|
|
lcd.setCursor(0, 1);
|
|
@@ -675,15 +677,15 @@ static void lcd_implementation_status_screen()
|
|
|
lcd.print('/');
|
|
|
lcd.print(itostr3left(tTarget));
|
|
|
lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
|
|
|
- lcd.print(" ");
|
|
|
+ lcd_printPGM(PSTR(" "));
|
|
|
|
|
|
//Print Feedrate
|
|
|
lcd.setCursor(LCD_WIDTH - 8-2, 1);
|
|
|
- lcd.print(" ");
|
|
|
+ lcd_printPGM(PSTR(" "));
|
|
|
lcd.print(LCD_STR_FEEDRATE[0]);
|
|
|
lcd.print(itostr3(feedmultiply));
|
|
|
lcd.print('%');
|
|
|
- lcd.print(" ");
|
|
|
+ lcd_printPGM(PSTR(" "));
|
|
|
|
|
|
|
|
|
|
|
@@ -716,14 +718,14 @@ static void lcd_implementation_status_screen()
|
|
|
}
|
|
|
if (farm_mode)
|
|
|
{
|
|
|
- lcd.print(" F");
|
|
|
+ lcd_printPGM(PSTR(" F"));
|
|
|
lcd.print(farm_no);
|
|
|
- lcd.print(" ");
|
|
|
+ lcd_printPGM(PSTR(" "));
|
|
|
}
|
|
|
|
|
|
//Print time elapsed
|
|
|
lcd.setCursor(LCD_WIDTH - 8 -2, 2);
|
|
|
- lcd.print(" ");
|
|
|
+ lcd_printPGM(PSTR(" "));
|
|
|
lcd.print(LCD_STR_CLOCK[0]);
|
|
|
if(starttime != 0)
|
|
|
{
|
|
@@ -734,7 +736,7 @@ static void lcd_implementation_status_screen()
|
|
|
}else{
|
|
|
lcd_printPGM(PSTR("--:--"));
|
|
|
}
|
|
|
- lcd.print(" ");
|
|
|
+ lcd_printPGM(PSTR(" "));
|
|
|
|
|
|
|
|
|
//Print status line
|
|
@@ -748,7 +750,7 @@ static void lcd_implementation_status_screen()
|
|
|
if(strcmp(longFilenameOLD, card.longFilename) != 0)
|
|
|
{
|
|
|
memset(longFilenameOLD,'\0',strlen(longFilenameOLD));
|
|
|
- sprintf(longFilenameOLD, "%s", card.longFilename);
|
|
|
+ sprintf_P(longFilenameOLD, PSTR("%s"), card.longFilename);
|
|
|
scrollstuff = 0;
|
|
|
}
|
|
|
|
|
@@ -803,7 +805,7 @@ static void lcd_implementation_status_screen()
|
|
|
for (int dots = 0; dots < heating_status_counter; dots++)
|
|
|
{
|
|
|
lcd.setCursor(7 + dots, 3);
|
|
|
- lcd_printPGM(PSTR("."));
|
|
|
+ lcd.print('.');
|
|
|
}
|
|
|
|
|
|
switch (heating_status)
|
|
@@ -840,10 +842,10 @@ static void lcd_implementation_status_screen()
|
|
|
if (custom_message_state > 10)
|
|
|
{
|
|
|
lcd.setCursor(0, 3);
|
|
|
- lcd.print(" ");
|
|
|
+ lcd_printPGM(PSTR(" "));
|
|
|
lcd.setCursor(0, 3);
|
|
|
lcd_printPGM(MSG_HOMEYZ_PROGRESS);
|
|
|
- lcd.print(" : ");
|
|
|
+ lcd_printPGM(PSTR(" : "));
|
|
|
lcd.print(custom_message_state-10);
|
|
|
}
|
|
|
else
|
|
@@ -858,7 +860,7 @@ static void lcd_implementation_status_screen()
|
|
|
if (custom_message_state > 3 && custom_message_state < 10 )
|
|
|
{
|
|
|
lcd.setCursor(0, 3);
|
|
|
- lcd.print(" ");
|
|
|
+ lcd_printPGM(PSTR(" "));
|
|
|
lcd.setCursor(0, 3);
|
|
|
lcd_printPGM(MSG_HOMEYZ_DONE);
|
|
|
custom_message_state--;
|