I am currently working on the p10 dot matrix displays with the DMD2 library but the font file are available for English but i want to generate the fonts in my native language which is HINDI[ in devnagari] . Can anyone please guide me how to generate fonts in the native language or any tool available for generation of fonts …. Any information will be helpful. Thanks
You can convert a font from a ready-made TTF using the font_convert utility from Adafruit. However, just creating a font is not enough, most libraries that work with DMD matrices cannot work with characters outside the standard ASCII table. You will need a library that can handle Unicode.
See this thread
If you want to display non-scrolling characters and words, the LedControl library enables you to make any LED in your matrix turn on or off with a simple command,
lc.setLed(panel, x, y, state):
With this, you can make your own "font" of characters.
There is nothing specific in LedControl library, any DMD -like library can do this by command
dmd.drawPixel(x,y, color);
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.