Mikroelektronika MIKROE-742 데이터 시트

다운로드
페이지 532
T6963C_Set_Cursor
T6963C_DisplayGrPanel
T6963C_DisplayTxtPanel
463
MIKROELEKTRONIKA
- SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroPASCAL PRO for AVR
CHAPTER 6
Prototype
procedure T6963C_Set_Cursor(x, y : byte);
Returns
Nothing.
Description
Sets cursor to row x and column y.
Parameters : 
x
: cursor position row number 
y
: cursor position column number
Requires
Toshiba Glcd module needs to be initialized. See the T6963C_Init routine.
Example
T6963C_Set_Cursor(cposx, cposy);
Prototype
procedure T6963C_DisplayGrPanel(n : byte);
Returns
Nothing.
Description
Display selected graphic panel.
Parameters : 
n
: graphic panel number. Valid values: 0 and 1. 
Requires
Toshiba Glcd module needs to be initialized. See the T6963C_Init routine.
Example
// display graphic panel 1
T6963C_DisplayGrPanel(1);
Prototype
procedure T6963C_DisplayTxtPanel(n : byte);
Returns
Nothing.
Description
Display selected text panel.
Parameters : 
n
: text panel number. Valid values: 0 and 1. 
Requires
Toshiba Glcd module needs to be initialized. See the T6963C_Init routine.
Example
// display text panel 1
T6963C_DisplayTxtPanel(1);