User manual

Table Of Contents
mikroC PRO for PIC32
MikroElektronika
553
T6963C_graphics
T6963C_text
T6963C_cursor
Prototype
void T6963C_graphics(unsigned int n);
Description Enable/disable graphic displaying.
Parameters - n: graphic enable/disable parameter. Valid values: 0 (disable graphic dispaying) and 1 (enable
graphic displaying).
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See the T6963C_init routine.
Example
// enable graphic displaying
T6963C_graphics(1);
Notes None.
Prototype
void T6963C_text(unsigned int n);
Description Enable/disable text displaying.
Parameters - n: on/off parameter. Valid values: 0 (disable text displaying) and 1 (enable text displaying).
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See the T6963C_init routine.
Example
// enable text displaying
T6963C_text(1);
Notes None.
Prototype
void T6963C_cursor(unsigned int n);
Description Set cursor on/off.
Parameters - n: on/off parameter. Valid values: 0 (set cursor off) and 1 (set cursor on).
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See the T6963C_init routine.
Example
// set cursor on
T6963C_cursor(1);
Notes None.