Datasheet
Lcd_Chr
Lcd_Chr_Cp
243
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroBasic PRO for AVR
CHAPTER 6
Prototype
sub procedure Lcd_Chr(dim row as byte, dim column as byte, dim
out_char as 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
sub procedure Lcd_Chr_Cp(dim out_char as 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')