byte OutImage2[95][64][3] = {
95 * 64 * 3 = 18,240 bytes. Variables are put in RAM by default, and you're running out.
Google for "AVR PROGMEM".
byte OutImage2[95][64][3] = {
95 * 64 * 3 = 18,240 bytes. Variables are put in RAM by default, and you're running out.
Google for "AVR PROGMEM".