User manual

Table Of Contents
mikroC PRO for PIC32
MikroElektronika
577
TFT_RGBToColor16bit
TFT_Color16bitToRGB
Prototype
unsigned int TFT_RGBToColor16bit(char rgb_red, char rgb_green, char rgb_
blue);
Returns Returns a color value in the following bit-order : 5 bits red, 6 bits green and 5 bits blue color.
Description Converts 5:6:5 RGB format into true color format.
Parameters:
- rgb_red: red component of the image.
- rgb_green: green component of the image.
- rgb_blue: blue component of the image.
Requires TFT module needs to be initialized. See the TFT_Init routine.
Example
color16 = TFT_Image_Jpeg(150, 193, 65);
Prototype
void TFT_Color16bitToRGB(unsigned int color, char *rgb_red, char *rgb_green,
char *rgb_blue);
Returns Nothing.
Description Converts true color into 5:6:5 RGB format.
Parameters:
- color: true color to be converted.
- rgb_red: red component of the input color.
- rgb_green: green component of the input color.
- rgb_blue: blue component of the input color.
Requires TFT module needs to be initialized. See the TFT_Init routine.
Example
TFT_Color16bitToRGB(start_color, &red_start, &green_start, &blue_start);