-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to Change Fonts? #5
Comments
Hello Guys.. Please Reply.. I need Help.. |
Hard core - Example user font |
Thanks avk013 , |
@jay6621 For my the |
I am having the same issue. I have created my own font too, but I am having trouble trying to figure out the syntax of SetFont();. I have looked at the documentation but I can't seem to figure out what do some things mean. The built-in MD_Parola example is very confusing because of the way it's coded. If someone has figured out an easy solution to this, or has this little piece of code in it's project somewhere that is giving us so many headaches, please, share it. |
Use https://pjrp.github.io/MDParolaFontEditor #include <MD_MAX72xx.h>
#include <MD_Parola.h>
MD_MAX72XX::fontType_t newFont[] PROGMEM =
{
...
}; (don't forget the ";" at the end) void setup() {
P.begin();
P.setFont(newFont);
} |
Thank you so much for this lovely library.
What if I want to use other font ?
I included font file from font folder, then
I have tried calling matrix.setfont(address of font), but it didn't displayed correctly(no characters at all),
when passed NULL value in setfont then it works perfectly.
Please Reply.
The text was updated successfully, but these errors were encountered: