Datasheet

Load the BreakoutSSD1351 example sketch
Select "Examples->Adafruit_ImageReader_Library-
>BreakoutSSD1351" to load it into your editor.
In the example, find the following section of code:
On the line with reader.drawBMP() change "/rgbwheel.bmp" to "/lily128.bmp" .
After that, upload it to your Arduino and when the Arduino restarts, you should see the flower as below!
To make new bitmaps, make sure they are less than 128 by 128 pixels and save them in 24-bit BMP format! They must
be in 24-bit format, even if they are not 24-bit color as that is the easiest format for the Arduino to decode. You can
// Load full-screen BMP file 'rgbwheel.bmp' at position (0,0) (top left).
// Notice the 'reader' object performs this, with 'tft' as an argument.
Serial.print(F("Loading rgbwheel.bmp to screen..."));
stat = reader.drawBMP("/rgbwheel.bmp", tft, 0, 0);
reader.printStatus(stat); // How'd we do?
© Adafruit Industries https://learn.adafruit.com/adafruit-1-5-color-oled-breakout-board Page 16 of 18