Mikroelektronika MIKROE-742 데이터 시트

다운로드
페이지 532
T6963C_GrFill
T6963C_TxtFill
T6963C_Cursor_Height
465
MIKROELEKTRONIKA
- SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroPASCAL PRO for AVR
CHAPTER 6
Prototype
procedure T6963C_GrFill(v : byte);
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
procedure T6963C_TxtFill(v : byte);
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);
Prototype
procedure T6963C_Cursor_Height(n : byte);
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);