eepty
Full Member level 2
- Joined
- Oct 21, 2005
- Messages
- 143
- Helped
- 2
- Reputation
- 4
- Reaction score
- 2
- Trophy points
- 1,298
- Activity points
- 2,611
I am writing the software in C and I have managed to display English sentence in a 32x122 dots LCD. I written a LCD driver and imported a font table generated from the "Font and Bitmap Generator". Therefore the code to display a sentence is like
As the compiler know 'A' is equal to 0x41, so my driver will find index 0x41 in the English font table and set the corresponding dots.
However how can I display a German sentence? First, is there any font file for German like the <Arial> in English so that I can import to something like the "Font and Bitmap Generator" to generate a font table.
Second, as I do not know German, is that each letter in German can refer to a letter in English? Therefore I still can type
to display it in German?
Thank you
Code C - [expand] 1 2 3 char *font_type; font_type = font_english; display("A sentence", font_type );
As the compiler know 'A' is equal to 0x41, so my driver will find index 0x41 in the English font table and set the corresponding dots.
However how can I display a German sentence? First, is there any font file for German like the <Arial> in English so that I can import to something like the "Font and Bitmap Generator" to generate a font table.
Second, as I do not know German, is that each letter in German can refer to a letter in English? Therefore I still can type
Code C - [expand] 1 2 font_type = font_german; display("A sentence", font_type );
Thank you
Last edited by a moderator: