Datasheet
T6963C_Cursor_Height
T6963C_Graphics
T6963C_Text
523
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroC PRO for AVR
CHAPTER 6
Prototype
void 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 the T6963C_Init routine.
Example
T6963C_Cursor_Height(7);
Prototype
void T6963C_Graphics(char n);
Returns Nothing.
Description
Enable/disable graphic displaying.
Parameters :
- n: on/off parameter. Valid values: 0 (disable graphic displaying) and 1
(enable graphic displaying).
Requires Toshiba GLCD module needs to be initialized. See the T6963C_Init routine.
Example
// enable graphic displaying
T6963C_Graphics(1);
Prototype
void T6963C_Text(char n);
Returns Nothing.
Description
Enable/disable text displaying.
Parameters :
-
n: on/off parameter. Valid values: 0 (disable text displaying) and 1
(enable text displaying).
Requires Toshiba GLCD module needs to be initialized. See the T6963C_Init routine.
Example
// enable text displaying
T6963C_Text(1);