In setup()
...
bool good = SD.begin(SD_CS);
if (!good) {
Serial.print(F("cannot start SD"));
while (1);
}
showBMP("logo.bmp", 0, 0);
delay(3000);
}
void loop()
{
// replace with your application code
}
There are programs on your PC to convert logo.jpg tp logo.bmp
Your logo is monochrome. You could save it as a monochrome bitmap. You could put this in an array in PROGMEM. And show on your screen with Adafruit_GFX method:
drawBitmap(int16_t x, int16_t y, const uint8_t bitmap[],
int16_t w, int16_t h, uint16_t color, uint16_t bg),
David.