Nano 33 IoT (SAMD21) smooth fonts question #1427
-
First thank you for your amazing library! Q: what is the best way for my board (Arduino Nano-33-Iot > SAMD21) to use smooth fonts? Sorry for my lack of knowledge, I just managed to get some characters displayed using platformio with all the settings involved. Checking size .pio/build/nano_33_iot/firmware.elf |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
FLASH arrays are slightly faster normally as there is no filing system overhead. But less convenient as the vlw files have to be converted to an array. You need to be careful as you only have 32kbytes of RAM and so use small fonts and or use very few characters in a font as when it is loaded with loadFont(..) a copy of the font parameters/metrics is stored in RAM for faster access. |
Beta Was this translation helpful? Give feedback.
FLASH arrays are slightly faster normally as there is no filing system overhead. But less convenient as the vlw files have to be converted to an array. You need to be careful as you only have 32kbytes of RAM and so use small fonts and or use very few characters in a font as when it is loaded with loadFont(..) a copy of the font parameters/metrics is stored in RAM for faster access.