User manual
mikroPascal PRO for dsPIC30/33 and PIC24
MikroElektronika
594
TFT_Write_Char
TFT_Write_Text
Prototype
procedure TFT_Write_Char(ch, x, y : word);
Returns Nothing.
Description Writes a char on the TFT at coordinates (x, y).
- c: char to be written.
- x: char position on x-axis.
- y: char position on y-axis.
Requires TFT module needs to be initialized. See the TFT_Init routine.
Example
TFT_Write_Char(“A”,22,23);
Prototype
procedure TFT_Write_Text(var text : string; x, y : word);
Returns Nothing.
Description Writes text on the TFT at coordinates (x, y).
Parameters:
- text: text to be written.
- x: text position on x-axis.
- y: text position on y-axis.
Requires TFT module needs to be initialized. See the TFT_Init routine.
Example
TFT_Write_Text(‘TFT LIBRARY DEMO, WELCOME !’, 0, 0);