Datasheet

257
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroPASCAL PRO for AVR
CHAPTER 6
Lcd_Chr
Lcd_Chr_Cp
Prototype
procedure Lcd_Chr(row: byte; column: byte; out_char: byte);
Returns Nothing.
Description
Prints character on Lcd at specified position. Both variables and literals can be
passed as a character.
Parameters :
-
row: writing position row number
- column: writing position column number
- out_char: character to be written
Requires The Lcd module needs to be initialized. See Lcd_Init routine.
Example
// Write character "i" at row 2, column 3:
Lcd_Chr(2, 3, 'i');
Prototype
procedure Lcd_Chr_Cp(out_char: byte);
Returns Nothing.
Description
Prints character on Lcd at current cursor position. Both variables and literals
can be passed as a character.
Parameters :
-
out_char: character to be written
Requires The Lcd module needs to be initialized. See Lcd_Init routine.
Example
// Write character "e" at current cursor position:
Lcd_Chr_Cp('e');