Datasheet

T6963C_Cursor
T6963C_Cursor_Blink
524
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroC PRO for AVR
CHAPTER 6
Prototype
void T6963C_Cursor(char n);
Returns Nothing.
Description
Set cursor on/off.
Parameters :
- n: on/off parameter. Valid values: 0 (set cursor off) and 1 (set cursor on).
Requires Toshiba GLCD module needs to be initialized. See the T6963C_Init routine.
Example
// set cursor on
T6963C_Cursor(1);
Prototype
void T6963C_Cursor_Blink(char n);
Returns Nothing.
Description
Enable/disable cursor blinking.
Parameters :
- n: on/off parameter. Valid values: 0 (disable cursor blinking) and 1
(enable cursor blinking).
Requires Toshiba GLCD module needs to be initialized. See the T6963C_Init routine.
Example
// enable cursor blinking
T6963C_Cursor_Blink(1);