I recently acquired a few Sharp Memory LCDs, 2.7 inch version and I was wondering how difficult it would be to adapt the Adafruit Sharp Memory Display Library to work with these. I know in its current state it is designed for the 96 x 96 pixel version and I would be stepping up to 400 x 240 pixels increasing the buffer size from 1152 to 12000 necessitating the use of an Arduino Zero or similar. When my Zero comes in I will take a crack at it but in the mean time does anyone know if it would be as simple as changing the values in...
Adafruit_SharpMem.h
#define SHARPMEM_LCDWIDTH (96)
#define SHARPMEM_LCDHEIGHT (96)
to
#define SHARPMEM_LCDWIDTH (400)
#define SHARPMEM_LCDHEIGHT (240)
???
Does anyone have experience in this? This is an amazing little screen and with the increase in ram for the current generation Arduinos I am excited to start making some super low power fun projects.
Thanks all in advance!
Paul