To jump in here, is it suitable to use Progmem to store arrays, such like the ones for storing characters for LCD fonts.
like the below:
char bn1[]={1,2,1, 3,1,4, 2,2,1, 2,2,1, 1,4,1, 1,2,2, 1,2,2, 2,2,1, 1,2,1, 1,2,1};
char bn2[]={1,4,1, 4,1,4, 7,6,5, 6,6,1, 5,6,1, 5,6,7, 1,6,7, 4,4,1, 1,6,1, 5,6,1};
char bn3[]={1,3,1, 3,1,3, 1,3,3, 3,3,1, 4,4,1, 3,3,1, 1,3,1, 4,4,1, 1,3,1, 3,3,1};
And can this be done from inside a library, if my arrays (like the above) are in the library itself?
I am defining a few fonts you see...
Thanks, and sorry to hijack.