Datasheet

SPI_T6963C_TxtFill
SPI_T6963C_Cursor_Height
SPI_T6963C_Graphics
498
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroC PRO for AVR
CHAPTER 6
Prototype
void SPI_T6963C_TxtFill(unsigned char v);
Returns Nothing.
Description
Fill current text panel with appropriate value (0 to clear).
Parameters :
- v: this value increased by 32 will be used to fill text panel.
Requires Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.
Example
// clear current text panel
SPI_T6963C_TxtFill(0);
Prototype
void SPI_T6963C_Cursor_Height(unsigned char n);
Returns Nothing.
Description
Set cursor size.
Parameters :
- n: cursor height. Valid values: 0..7.
Requires Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.
Example
SPI_T6963C_Cursor_Height(7);
Prototype
void SPI_T6963C_Graphics(char n);
Returns Nothing.
Description
Enable/disable graphic displaying.
Parameters :
- n: graphic enable/disable parameter. Valid values: 0 (disable graphic
dispaying) and 1 (enable graphic displaying).
Requires Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.
Example
// enable graphic displaying
SPI_T6963C_Graphics(1);