Fix some LCD/serial strings
This commit is contained in:
		
							parent
							
								
									7f7c27be30
								
							
						
					
					
						commit
						90f647b6be
					
				@ -700,7 +700,7 @@ void MarlinUI::draw_status_screen() {
 | 
			
		||||
  uint8_t len = elapsed.toDigital(buffer);
 | 
			
		||||
 | 
			
		||||
  lcd.setCursor((LCD_WIDTH - 1) - len, 1);
 | 
			
		||||
  lcd.write(0x07); lcd.print(buffer); // LCD_CLOCK_CHAR
 | 
			
		||||
  lcd.write(LCD_STR_CLOCK[0]); lcd.print(buffer);
 | 
			
		||||
 | 
			
		||||
  //
 | 
			
		||||
  // Line 3 - progressbar
 | 
			
		||||
@ -807,13 +807,13 @@ void MarlinUI::draw_status_screen() {
 | 
			
		||||
    void MarlinUI::draw_hotend_status(const uint8_t row, const uint8_t extruder) {
 | 
			
		||||
      if (!PanelDetected) return;
 | 
			
		||||
      lcd.setCursor((LCD_WIDTH - 14) / 2, row + 1);
 | 
			
		||||
      lcd.write(0x02);  lcd_put_u8str_P(" E"); lcd.write('1' + extruder); lcd.write(' ');
 | 
			
		||||
      lcd.print(i16tostr3rj(thermalManager.degHotend(extruder))); lcd.write(0x01);  lcd.write('/');
 | 
			
		||||
      lcd.print(i16tostr3rj(thermalManager.degTargetHotend(extruder)));  lcd.write(0x01);
 | 
			
		||||
      lcd.write(LCD_STR_THERMOMETER[0]); lcd_put_u8str_P(PSTR(" E")); lcd.write('1' + extruder); lcd.write(' ');
 | 
			
		||||
      lcd.print(i16tostr3rj(thermalManager.degHotend(extruder)));       lcd.write(LCD_STR_DEGREE[0]); lcd.write('/');
 | 
			
		||||
      lcd.print(i16tostr3rj(thermalManager.degTargetHotend(extruder))); lcd.write(LCD_STR_DEGREE[0]);
 | 
			
		||||
      lcd.print_line();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
  #endif // ADVANCED_PAUSE_FEATURE
 | 
			
		||||
  #endif
 | 
			
		||||
 | 
			
		||||
  // Draw a static item with no left-right margin required. Centered by default.
 | 
			
		||||
  void MenuItem_static::draw(const uint8_t row, PGM_P const pstr, const uint8_t style/*=SS_DEFAULT*/, const char * const valstr/*=nullptr*/) {
 | 
			
		||||
 | 
			
		||||
@ -364,7 +364,7 @@ namespace Anycubic {
 | 
			
		||||
      faultDuration++;
 | 
			
		||||
      if (faultDuration >= AC_HEATER_FAULT_VALIDATION_TIME) {
 | 
			
		||||
        SendtoTFTLN(AC_msg_nozzle_temp_abnormal);
 | 
			
		||||
        SERIAL_ECHOLNPAIR_P("Bed temp abnormal! : ", temp);
 | 
			
		||||
        SERIAL_ECHOLNPAIR("Bed temp abnormal! : ", temp);
 | 
			
		||||
        break;
 | 
			
		||||
      }
 | 
			
		||||
      delay_ms(500);
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user