how can i increased the font size?
I need a Font size, that is twice as big as FONT_SIZE_XLAGE.
can anyone help me?
Bigger Font
Re: Bigger Font
I am very interesredd in the solution
Please help
Thanks
Please help
Thanks
Re: Bigger Font
I'm haven't tried it but what about going to MultiLCD.h and adding a new size like
typedef enum {
FONT_SIZE_SMALL = 0,
FONT_SIZE_MEDIUM,
FONT_SIZE_LARGE,
FONT_SIZE_XLARGE,
FONT_SIZE_XXLARGE
}
Then replacing the usage of FONT_SIZE_XLARGE with FONT_SIZE_XXLARGE. But I guess you'll need to arrange the data for the new font size.
typedef enum {
FONT_SIZE_SMALL = 0,
FONT_SIZE_MEDIUM,
FONT_SIZE_LARGE,
FONT_SIZE_XLARGE,
FONT_SIZE_XXLARGE
}
Then replacing the usage of FONT_SIZE_XLARGE with FONT_SIZE_XXLARGE. But I guess you'll need to arrange the data for the new font size.