Just a fonction to draw 115 symbols on a screen !
The only thing you need to know is how to use the commands and there is just a simple fonction named write_string().
So you have only 6 very easy parameters :
- Obviously, you start with the text you want to write on your screen.
- Next you provide the coordinates the X and Y values which will position the text on the screen.
- After that, you can define the color of the character you are going to write with the background's color of your choice.
- Finally, if you want to, you can adjust the size by multiplying it by a number.
That is all you have to know about this very simple program !
And, just in case, you can draw all these symbols :
- The entire alphabet, in lowercase and uppercase
- The 10 numbers > 0123456789
- These 37 specials caracters > '",:.!?()%_+-*/=[]{}<>;π√~^∞→|°±@#&$\
- These 16 more popular accented letters > àâäéèêëîïôöùûüÿç
- And...the space. Of course ! But if the character is unknown in my database it will draw a ▯.
This program is coded in micropython just for Numwoks calculator but it must works on a computer if you change the module to adapt with Pyhton.
It was coded on a Numworks calculator in Micropython.
The project has been created the November 20 of 2023.