Good morning,
I thought about my file size problem.
If instead of putting a file in hex in PROGMEM, can you put it in Byte? style:
const uint16_t image[ ] PROGMEM = {
B11111111,
B11011000,
B11111111,
..........} ;
The same file would be much smaller in storage space.
But above all how to...