For static text, try to use keyword PROGMEM, this since RAM is more or less full as it is. (when all is set to true, as it will be when #define has changed to program variables.
(If you don't need to modify the strings or data while your sketch is running, you can store them in flash (program) memory instead of SRAM; to do this, use the PROGMEM keyword.)
For static text, try to use keyword PROGMEM, this since RAM is more or less full as it is. (when all is set to true, as it will be when #define has changed to program variables.
(If you don't need to modify the strings or data while your sketch is running, you can store them in flash (program) memory instead of SRAM; to do this, use the PROGMEM keyword.)