User manual
334
mikoBasic PRO for dsPIC30/33 and PIC24
MikroElektronika
S1D13700_Box
Prototype
sub procedure S1D13700_Box(dim x0, y0, x1, y1 as word, dim pcolor as 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
sub procedure S1D13700_Rectangle_Round_Edges(dim x_upper_left as word, dim
y_upper_left as word, dim x_bottom_right as word, dim y_bottom_right as
word, dim round_radius as word, dim color as 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.