Datasheet
T6963C_Set_Cursor
T6963C_ClearBit
518
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroC PRO for AVR
CHAPTER 6
Prototype
void T6963C_Set_Cursor(unsigned char x, unsigned char y);
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
void T6963C_ClearBit(char b);
Returns Nothing.
Description
Clears control port bit(s).
Parameters :
- b: bit mask. The function will clear bit x on control port if bit x in bit
mask is set to 1.
Requires Toshiba GLCD module needs to be initialized. See the T6963C_Init routine.
Example
// clear bits 0 and 1 on control port
T6963C_ClearBit(0x03);