You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using pervasive display 2.7 inch thermo_270.ino for EPD_231_G2 I get following error is:
`Sketch uses 15382 bytes (6%) of program storage space. Maximum is 253952 bytes.
Global variables use 12138 bytes (148%) of dynamic memory, leaving -3946 bytes for local variables. Maximum is 8192 bytes.
Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size for tips on reducing your footprint.
Error compiling for board Arduino/Genuino Mega or Mega 2560.`
how do I resolve this?
The text was updated successfully, but these errors were encountered:
It would take significant code changes, and the addition of an external SPI RAM for the graphics buffer to use this in graphics mode.
The alternative would be to have a character based frame buffer + a fixed width bitmap font and do the lookup as the image is being transferred, this would not use the graphics library but would directly render the bitmap to the panel. The disadvantage would be that only a single size of font would be possible, it would basically be an emulation of an old style tty display.
I am using pervasive display 2.7 inch thermo_270.ino for EPD_231_G2 I get following error is:
`Sketch uses 15382 bytes (6%) of program storage space. Maximum is 253952 bytes.
Global variables use 12138 bytes (148%) of dynamic memory, leaving -3946 bytes for local variables. Maximum is 8192 bytes.
Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size for tips on reducing your footprint.
Error compiling for board Arduino/Genuino Mega or Mega 2560.`
how do I resolve this?
The text was updated successfully, but these errors were encountered: