Mikroelektronika MIKROE-742 데이터 시트

다운로드
페이지 532
SPI_T6963C_GrFill
SPI_T6963C_TxtFill
SPI_T6963C_Cursor_Height
443
MIKROELEKTRONIKA
- SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroPASCAL PRO for AVR
CHAPTER 6
Prototype
procedure SPI_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 SPI_T6963C_Config routine.
Example
// clear current graphic panel
SPI_T6963C_GrFill(0);
Prototype
procedure SPI_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 SPI_T6963C_Config routine.
Example
// clear current text panel
SPI_T6963C_TxtFill(0);
Prototype
procedure SPI_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 SPI_T6963C_Config routine.
Example
SPI_T6963C_Cursor_Height(7);