Hello
I use a 128x32 OLED Display by Adafruit and also use the Adafruit_SSD1306 library and the Adafruit_GFX library for easy bitmap drawing.
This is the Information inside the Adafruit_GFX.cpp source
// Draw a 1-bit color bitmap at the specified x, y position from the
// provided bitmap buffer (must be PROGMEM memory) using color as the
// foreground color and bg as the background color.
void Adafruit_GFX::drawBitmap(...)
I was able to draw my bitmap data with ease. But now I'm already at 80% memory usage because of all the images and I still need more images.
I wonder if there is a way to extend the PROGMEM on a Arduino Pro Micro ATMega32u4 somehow.
Alternatively I would like to know if there is a better SSD1306 Library other than that from adafruit, to draw bitmap data from an external EEPROM, as the Adafruit library demands the bitmapdata to be inside the PROGMEM.
Any ideas?
Thank you
Indy