Datasheet

Glcd_Write_Text
294
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroC PRO for AVR
CHAPTER 6
Prototype
void Glcd_Write_Text(char *text, unsigned short x_pos, unsigned
short page_num, unsigned short color);
Returns Nothing.
Description
Prints text on Glcd.
Parameters :
-
text: text to be written
-
x_pos: text starting position on x-axis.
-
page_num: the number of the page on which text will be written. Valid
values: 0..7
- color: color parameter. Valid values: 0..2
The parameter color determines the color of the text: 0 white, 1 black, and 2
inverts each dot.
Note: For x axis and page layout explanation see schematic at the bottom of
this page.
Requires
Glcd needs to be initialized, see Glcd_Init routine. Use Glcd_Set_Font to specify
the font for display; if no font is specified, then default 5x8 font supplied with the
library will be used.
Example
// Write text "Hello world!" on the position 10 inside the page
2:
Glcd_Write_Text("Hello world!", 10, 2, 1);