User manual

Table Of Contents
546
mikoC PRO for PIC32
MikroElektronika
T6963C_rectangle_round_edges_ll
T6963C_box
T6963C_circle
Prototype
void T6963C_rectangle_round_edges_ll(int x0, int y0, int x1, int y1, int
round_radius, unsigned char pcolor);
Description Draws a lled rounded edge rectangle on Glcd.
Parameters - x0: x coordinate of the upper left rectangle corner
- y0: y coordinate of the upper left rectangle corner
- x1: x coordinate of the lower right rectangle corner
- y1: y coordinate of the lower right rectangle corner
- round_radius: radius of the rounded edge
- pcolor: color parameter. Valid values: T6963C_BLACK and T6963C_WHITE
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See the T6963C_init routine.
Example
T6963C_rectangle_round_edges_ll(20, 20, 219, 107, 12, T6963C_WHITE);
Notes None.
Prototype
void T6963C_box(int x0, int y0, int x1, int y1, unsigned char pcolor);
Description Draws a box on Glcd
Parameters - x0: x coordinate of the upper left box corner
- y0: y coordinate of the upper left box corner
- x1: x coordinate of the lower right box corner
- y1: y coordinate of the lower right box corner
- pcolor: color parameter. Valid values: T6963C_BLACK and T6963C_WHITE
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See the T6963C_init routine.
Example
T6963C_box(0, 119, 239, 127, T6963C_WHITE);
Notes None.
Prototype
void T6963C_circle(int x, int y, long r, unsigned char pcolor);
Description Draws a circle on Glcd.
Parameters - x: x coordinate of the circle center
- y: y coordinate of the circle center
- r: radius size
- pcolor: color parameter. Valid values: T6963C_BLACK and T6963C_WHITE
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See the T6963C_init routine.
Example
T6963C_circle(120, 64, 110, T6963C_WHITE);
Notes None.