Browse Source

changed logo and ver info

logo is now 110 pixels wide and starts 9 pixels in from top left corner and also 9 pixels down from same corner... this will give a 9 pixel border all way round

ver info is placed centered and there is a 9 pixel from bottom of display to ver info
Bo Herrmannsen 9 years ago
parent
commit
cd33b5b062
1 changed files with 3 additions and 4 deletions
  1. 3
    4
      Marlin/dogm_lcd_implementation.h

+ 3
- 4
Marlin/dogm_lcd_implementation.h View File

@@ -121,14 +121,13 @@ static void lcd_implementation_init()
121 121
 	u8g.firstPage();
122 122
 	do {
123 123
 			// RepRap init bmp
124
-			u8g.drawBitmapP(0,0,START_BMPBYTEWIDTH,START_BMPHEIGHT,start_bmp);
124
+			u8g.drawBitmapP(9,9,START_BMPBYTEWIDTH,START_BMPHEIGHT,start_bmp);
125 125
 			// Welcome message
126 126
 			
127
-			u8g.setFont(u8g_font_6x10_marlin);
128
-			u8g.drawStr(64,28,"     MARLIN");
127
+			
129 128
 			
130 129
 			u8g.setFont(u8g_font_5x8);
131
-			u8g.drawStr(64,48,"     V1.0.2");
130
+			u8g.drawStr(49,50,"     V1.0.2");
132 131
 			
133 132
 	   } while( u8g.nextPage() );
134 133
 }

Loading…
Cancel
Save