|
@@ -109,9 +109,13 @@ static void lcd_implementation_init()
|
109
|
109
|
|
110
|
110
|
// Show splashscreen
|
111
|
111
|
int offx = (u8g.getWidth() - START_BMPWIDTH) / 2;
|
112
|
|
- int offy = (u8g.getHeight() - 18 - START_BMPHEIGHT) / 2;
|
113
|
|
- int txtX = (u8g.getWidth() - (sizeof(STRING_SPLASH) - 1)*6) / 2; // 6 is fontwidth in pixel
|
114
|
|
- int txtY = u8g.getHeight() - 10;
|
|
112
|
+ #ifdef START_BMPHIGH
|
|
113
|
+ int offy = 0;
|
|
114
|
+ #else
|
|
115
|
+ int offy = DOG_CHAR_HEIGHT;
|
|
116
|
+ #endif
|
|
117
|
+ int txtX = (u8g.getWidth() - (sizeof(STRING_SPLASH) - 1)*DOG_CHAR_WIDTH) / 2;
|
|
118
|
+ int txtY = u8g.getHeight() - DOG_CHAR_HEIGHT;
|
115
|
119
|
u8g.firstPage();
|
116
|
120
|
do {
|
117
|
121
|
u8g.drawBitmapP(offx, offy, START_BMPBYTEWIDTH, START_BMPHEIGHT, start_bmp);
|