From 0b320f75e9ac335389ac8ccf64ae34c7173e51b3 Mon Sep 17 00:00:00 2001 From: Dirk Eichel Date: Tue, 19 Mar 2013 20:29:25 +0100 Subject: [PATCH] Removed debug code, add some comments --- Marlin/dogm_lcd_implementation.h | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Marlin/dogm_lcd_implementation.h b/Marlin/dogm_lcd_implementation.h index 7a702bd4e3..100ee0abbb 100644 --- a/Marlin/dogm_lcd_implementation.h +++ b/Marlin/dogm_lcd_implementation.h @@ -67,8 +67,8 @@ U8GLIB_DOGM128 u8g(DOGLCD_CS, DOGLCD_A0); // HW-SPI Com: CS, A0 static void lcd_implementation_init() { // Uncomment this if you have the first generation (V1.10) of STBs board - pinMode(17, OUTPUT); // Enable LCD backlight - digitalWrite(17, HIGH); + // pinMode(17, OUTPUT); // Enable LCD backlight + // digitalWrite(17, HIGH); u8g.firstPage(); do { @@ -79,15 +79,15 @@ static void lcd_implementation_init() } while( u8g.nextPage() ); #ifdef LCD_SCREEN_ROT_90 - u8g.setRot90(); // Rotate screen by 90° + u8g.setRot90(); // Rotate screen by 90° #endif #ifdef LCD_SCREEN_ROT_180; - u8g.setRot180(); // Rotate screen by 180° + u8g.setRot180(); // Rotate screen by 180° #endif #ifdef LCD_SCREEN_ROT_270; - u8g.setRot270(); // Rotate screen by 270° + u8g.setRot270(); // Rotate screen by 270° #endif @@ -115,7 +115,6 @@ static void lcd_implementation_init() static void lcd_implementation_clear() { - //u8g.setRot180(); u8g.firstPage(); do { u8g.setColorIndex(0); @@ -142,7 +141,7 @@ static void lcd_implementation_status_screen() u8g.setColorIndex(1); // black on white - // Symbols menu graphics + // Symbols menu graphics, animated fan if ((blink % 2) && fanSpeed ) u8g.drawBitmapP(9,1,STATUS_SCREENBYTEWIDTH,STATUS_SCREENHEIGHT,status_screen0_bmp); else u8g.drawBitmapP(9,1,STATUS_SCREENBYTEWIDTH,STATUS_SCREENHEIGHT,status_screen1_bmp); @@ -160,12 +159,11 @@ static void lcd_implementation_status_screen() if (IS_SD_PRINTING) { - // u8g.print(itostr3(card.percentDone())); // Progress bar u8g.drawBox(55,50, (unsigned int)( (71 * card.percentDone())/100) ,2); } else { - // + // do nothing } u8g.setPrintPos(80,47);