Datasheet

T6963C_PanelFill
T6963C_GrFill
T6963C_TxtFill
522
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroC PRO for AVR
CHAPTER 6
Prototype
void T6963C_PanelFill(unsigned char v);
Returns Nothing.
Description
Fill current panel in full (graphic+text) with appropriate value (0 to clear).
Parameters :
- v: value to fill panel with.
Requires Toshiba GLCD module needs to be initialized. See the T6963C_Init routine.
Example
clear current panel
T6963C_PanelFill(0);
Prototype
void T6963C_GrFill(unsigned char v);
Returns Nothing.
Description
Fill current graphic panel with appropriate value (0 to clear).
Parameters :
-
v: value to fill graphic panel with.
Requires Toshiba GLCD module needs to be initialized. See the T6963C_Init routine.
Example
// clear current graphic panel
T6963C_GrFill(0);
Prototype
void 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 the T6963C_Init routine.
Example
// clear current text panel
T6963C_TxtFill(0);