Datasheet
Glcd_Box
Glcd_Circle
227
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroBasic PRO for AVR
CHAPTER 6
Prototype
sub procedure Glcd_Box(dim x_upper_left as byte, dim y_upper_left
as byte, dim x_bottom_right as byte, dim y_bottom_right as byte,
dim color as byte)
Returns Nothing.
Description
Draws a box on Glcd.
Parameters :
-
x_upper_left: x coordinate of the upper left box corner. Valid values: 0..127
-
y_upper_left: y coordinate of the upper left box corner. Valid values: 0..63
- x_bottom_right: x coordinate of the lower right box corner. Valid values: 0..127
- y_bottom_right: y coordinate of the lower right box corner. Valid values: 0..63
-
color: color parameter. Valid values: 0..2
The parameter color determines the color of the box fill: 0 white, 1 black, and 2
inverts each dot.
Requires Glcd needs to be initialized, see Glcd_Init routine.
Example
' Draw a box between dots (5,15) and (20,40)
Glcd_Box(5, 15, 20, 40, 1)
Prototype
sub procedure Glcd_Circle(dim x_center as integer, dim y_center
as integer, dim radius as integer, dim color as byte)
Returns Nothing.
Description
Draws a circle on Glcd.
Parameters :
-
x_center: x coordinate of the circle center. Valid values: 0..127
- y_center: y coordinate of the circle center. Valid values: 0..63
-
radius: radius size
- color: color parameter. Valid values: 0..2
The parameter color determines the color of the circle line: 0 white, 1 black,
and 2 inverts each dot.
Requires Glcd needs to be initialized, see Glcd_Init routine.
Example
' Draw a circle with center in (50,50) and radius=10
Glcd_Circle(50, 50, 10, 1)