Mikroelektronika MIKROE-738 Datenbogen

Seite von 682
332
mikoC PRO for PIC32
MikroElektronika
Glcd_Rectangle
Glcd_Rectangle_Round_Edges
Prototype
void  Glcd_Rectangle(unsigned  short  x_upper_left,  unsigned  short  y_upper_
left, unsigned short x_bottom_right, unsigned short y_bottom_right, unsigned 
short color);
Description Draws a rectangle on Glcd.
Parameters 
x_upper_left
: x coordinate of the upper left rectangle corner. Valid values: 0..127 
y_upper_left
: y coordinate of the upper left rectangle corner. Valid values: 0..63 
x_bottom_right
: x coordinate of the lower right rectangle corner. Valid values: 0..127 
y_bottom_right
: y coordinate of the lower right rectangle corner. Valid values: 0..63 
color
: color parameter. Valid values: 0..2 
The parameter 
color
 determines the color of the rectangle border: 0 white, 1 black, and 2 inverts 
each dot.
Returns
Nothing.
Requires
Glcd needs to be initialized, see Glcd_Init routine.
Example
// Draw a rectangle between dots (5,5) and (40,40)
Glcd_Rectangle(5, 5, 40, 40, 1);
Notes
None.
Prototype
void Glcd_Rectangle_Round_Edges(unsigned short x_upper_left, unsigned short 
y_upper_left, unsigned short x_bottom_right, unsigned short y_bottom_right, 
unsigned short round_radius, unsigned short color);
Description Draws a rounded edge rectangle on Glcd.
Parameters 
x_upper_left
: x coordinate of the upper left rectangle corner. Valid values: 0..127 
y_upper_left
: y coordinate of the upper left rectangle corner. Valid values: 0..63 
x_bottom_right
: x coordinate of the lower right rectangle corner. Valid values: 0..127 
y_bottom_right
: y coordinate of the lower right rectangle corner. Valid values: 0..63 
round_radius
: radius of the rounded edge. 
color
: color parameter. Valid values: 0..2 
The parameter 
color
 determines the color of the rectangle border: 0 white, 1 black, and 2 inverts 
each dot.
Returns
Nothing.
Requires
Glcd needs to be initialized, see Glcd_Init routine.
Example
// Draw a rounded edge rectangle between dots (5,5) and (40,40) with the 
radius of 12
Glcd_Rectangle_Round_Edges(5, 5, 40, 40, 12, 1);
Notes
None.