Extremely large fonts #10701
-
I have a project that I'm working on that uses a Waveshare 4.2" epaper display with a Pi Pico. The goal for this project is for me to be able to read a few bits of info from across the screen, but since I'm very new to Micropython (and Python itself, if I'm honest) I'm having some trouble figuring out how to get the text large enough. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
The fonts produced by font_to_py are optimised for freezing: if you freeze them, their memory usage is minimal because they are stored in Flash. I suggest you learn the technique. |
Beta Was this translation helpful? Give feedback.
-
I have sizable font: https://github.com/rami6711/fb_plus |
Beta Was this translation helpful? Give feedback.
The fonts produced by font_to_py are optimised for freezing: if you freeze them, their memory usage is minimal because they are stored in Flash. I suggest you learn the technique.