User manual

581
mikoPascal PRO for dsPIC30/33 and PIC24
MikroElektronika
T6963C_grFill
T6963C_txtFill
T6963C_cursor_height
Prototype
procedure T6963C_grFill(v: word);
Description Fill current graphic panel with appropriate value (0 to clear).
Parameters - v: value to ll graphic panel with.
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See the T6963C_init routine.
Example
// clear current graphic panel
T6963C_grFill(0);
Notes None.
Prototype
procedure T6963C_txtFill(v : word);
Description Fill current text panel with appropriate value (0 to clear).
Parameters - v: this value increased by 32 will be used to ll text panel.
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See the T6963C_init routine.
Example
// clear current text panel
T6963C_txtFill(0);
Notes None.
Prototype
procedure T6963C_cursor_height(n: word);
Description Set cursor size.
Parameters - n: cursor height. Valid values: 0..7.
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See the T6963C_init routine.
Example
T6963C_Cursor_Height(7);
Notes None.