User manual

332
mikoPascal PRO for dsPIC30/33 and PIC24
MikroElektronika
S1D13700_Box
Prototype
procedure S1D13700_Box(x0, y0, x1, y1 : word; pcolor : byte);
Returns Nothing.
Description Draws a 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.
- pcolor: color parameter. Valid values:
Requires Glcd module needs to be initialized. See the S1D13700_Init routine.
Example
S1D13700_Box(0, 119, 239, 127, S1D13700_WHITE);
Value Description
S1D13700_BLACK
Black color.
S1D13700_WHITE
White color.
S1D13700_Rectangle_Round_Edges
Prototype
procedure S1D13700_Rectangle_Round_Edges(x_upper_left : word; y_upper_left
: word; x_bottom_right : word; y_bottom_right : word; round_radius : word;
color : byte);
Returns Nothing.
Description Draws a rounded edge rectangle on Glcd.
Parameters:
- x_upper_left: x coordinate of the upper left rectangle corner.
- y_upper_left: y coordinate of the upper left rectangle corner.
- x_bottom_right: x coordinate of the lower right rectangle corner.
- y_bottom_right: y coordinate of the lower right rectangle corner.
- round_radius: radius of the rounded edge.
- pcolor: color parameter. Valid values:
Requires Glcd module needs to be initialized. See the S1D13700_Init routine.
Example
S1D13700_Rectangle_Round_Edges(20, 20, 219, 107, 12, S1D13700_WHITE);
Value Description
S1D13700_BLACK
Black color.
S1D13700_WHITE
White color.