Datasheet

SPI_Lcd8_Chr
SPI_Lcd8_Chr_Cp
479
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroC PRO for AVR
CHAPTER 6
Prototype
void SPI_Lcd8_Chr(unsigned short row, unsigned short column, char
out_char);
Returns Nothing.
Description
Prints character on Lcd at specified position. Both variables and literals can be
passed as character.
Parameters :
-
row: writing position row number
- column: writing position column number
- out_char: character to be written
Requires Lcd needs to be initialized for SPI communication, see SPI_Lcd8_Config routines.
Example
// Write character "i" at row 2, column 3:
SPI_Lcd8_Chr(2, 3, 'i');
Prototype
void SPI_Lcd8_Chr_CP(char out_char);
Returns Nothing.
Description
Prints character on Lcd at current cursor position. Both variables and literals can
be passed as character.
Parameters :
-
out_char: character to be written
Requires Lcd needs to be initialized for SPI communication, see SPI_Lcd8_Config routines.
Example
Print ā€œeā€ at current cursor position:
// Write character "e" at current cursor position:
SPI_Lcd8_Chr_Cp('e');