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
This commit is contained in:
Bo Herrmannsen 2015-01-09 15:44:47 +01:00
parent 9b6c1cfda6
commit cd33b5b062

View File

@ -121,14 +121,13 @@ static void lcd_implementation_init()
u8g.firstPage();
do {
// RepRap init bmp
u8g.drawBitmapP(0,0,START_BMPBYTEWIDTH,START_BMPHEIGHT,start_bmp);
u8g.drawBitmapP(9,9,START_BMPBYTEWIDTH,START_BMPHEIGHT,start_bmp);
// Welcome message
u8g.setFont(u8g_font_6x10_marlin);
u8g.drawStr(64,28," MARLIN");
u8g.setFont(u8g_font_5x8);
u8g.drawStr(64,48," V1.0.2");
u8g.drawStr(49,50," V1.0.2");
} while( u8g.nextPage() );
}