User manual

Table Of Contents
320
mikoC PRO for PIC32
MikroElektronika
S1D13700_Circle_Fill
S1D13700_Image
Prototype
void S1D13700_Circle_Fill(unsigned int x_center, unsigned int y_center,
unsigned int radius, unsigned short color);
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
void S1D13700_Image(const code char *pic);
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.