updated logo post and ver info

This commit is contained in:
Bo Herrmannsen 2015-01-09 15:51:15 +01:00
parent cd33b5b062
commit d94109e886

View File

@ -121,13 +121,13 @@ static void lcd_implementation_init()
u8g.firstPage(); u8g.firstPage();
do { do {
// RepRap init bmp // RepRap init bmp
u8g.drawBitmapP(9,9,START_BMPBYTEWIDTH,START_BMPHEIGHT,start_bmp); u8g.drawBitmapP(7,7,START_BMPBYTEWIDTH,START_BMPHEIGHT,start_bmp);
// Welcome message // Welcome message
u8g.setFont(u8g_font_5x8); u8g.setFont(u8g_font_5x8);
u8g.drawStr(49,50," V1.0.2"); u8g.drawStr(7,51,"V1.0.2 - marlin.reprap.org");
} while( u8g.nextPage() ); } while( u8g.nextPage() );
} }