User manual
334
mikoPascal PRO for dsPIC30/33 and PIC24
MikroElektronika
S1D13700_Circle_Fill
S1D13700_Image
Prototype
procedure S1D13700_Circle_Fill(x_center: word; y_center: word; radius:
word; color : byte);
Returns Nothing.
Description Draws a î‚¿lled circle on Glcd.
Parameters:
- x_center: x coordinate of the circle center.
- y_center: y coordinate of the circle center.
- radius: radius size.
- color: color parameter. Valid values:
Requires Glcd module needs to be initialized. See the S1D13700_Init routine.
Example
S1D13700_Circle_Fill(120, 64, 110, S1D13700_WHITE);
Prototype
procedure S1D13700_Image(const image : ^byte);
Returns Nothing.
Description Displays bitmap on Glcd.
Parameters:
- image: image to be displayed. Bitmap array is located in code memory.
Note: Image dimension must match the display dimension.
Requires Glcd module needs to be initialized. See the S1D13700_Init routine.
Example
S1D13700_Image(@image);
Value Description
S1D13700_BLACK
Black color.
S1D13700_WHITE
White color.