Datasheet
Lcd_Chr
Lcd_Chr_Cp
309
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroC PRO for AVR
CHAPTER 6
Prototype
void Lcd_Chr(char row, char column, char out_char);
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
void Lcd_Chr_Cp(char out_char);
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');