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:
parent
9b6c1cfda6
commit
cd33b5b062
1 changed files with 3 additions and 4 deletions
|
@ -121,14 +121,13 @@ static void lcd_implementation_init()
|
||||||
u8g.firstPage();
|
u8g.firstPage();
|
||||||
do {
|
do {
|
||||||
// RepRap init bmp
|
// 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
|
// Welcome message
|
||||||
|
|
||||||
u8g.setFont(u8g_font_6x10_marlin);
|
|
||||||
u8g.drawStr(64,28," MARLIN");
|
|
||||||
|
|
||||||
u8g.setFont(u8g_font_5x8);
|
u8g.setFont(u8g_font_5x8);
|
||||||
u8g.drawStr(64,48," V1.0.2");
|
u8g.drawStr(49,50," V1.0.2");
|
||||||
|
|
||||||
} while( u8g.nextPage() );
|
} while( u8g.nextPage() );
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue