hollyhock
|
Functions for interacting with the LCD and VRAM. More...
#include <stdint.h>
Go to the source code of this file.
Macros | |
#define | RGB_TO_RGB565(r, g, b) |
#define | RGB565_TO_R(rgb565) ((rgb565 >> 11) & 0x1F) |
#define | RGB565_TO_G(rgb565) ((rgb565 >> 5) & 0x3F) |
#define | RGB565_TO_B(rgb565) (rgb565 & 0x1F) |
Functions | |
void | LCD_ClearScreen () |
uint16_t | LCD_GetPixel (int x, int y) |
void | LCD_GetSize (int *width, int *height) |
uint16_t * | LCD_GetVRAMAddress () |
void | LCD_Refresh () |
void | LCD_SetPixel (int x, int y, uint16_t color) |
void | LCD_SetPixelFromPalette (int x, int y, uint8_t index) |
void | LCD_VRAMBackup () |
void | LCD_VRAMRestore () |
Functions for interacting with the LCD and VRAM.
Different levels of indirection are availiable to write to VRAM (direct memory access, getter/setters and palette-based drawing). The contents of VRAM are not automatically drawn to the LCD, and must be rendered with LCD_Refresh.
Example: drawing a 30x50 rectangle at 10, 20 in purple
#define RGB565_TO_B | ( | rgb565 | ) | (rgb565 & 0x1F) |
Extracts the blue component from an RGB565 value.
rgb565 | The RGB565 value. |
#define RGB565_TO_G | ( | rgb565 | ) | ((rgb565 >> 5) & 0x3F) |
Extracts the green component from an RGB565 value.
rgb565 | The RGB565 value. |
#define RGB565_TO_R | ( | rgb565 | ) | ((rgb565 >> 11) & 0x1F) |
Extracts the red component from an RGB565 value.
rgb565 | The RGB565 value. |
#define RGB_TO_RGB565 | ( | r, | |
g, | |||
b | |||
) |
Converts three RGB values into one RGB565 value.
r | The red component, between 0 and 31 (0x1F) inclusive. |
g | The green component, between 0 and 63 (0x3F) inclusive. |
b | The blue component, between 0 and 31 (0x1F) inclusive. |
void LCD_ClearScreen | ( | ) |
Clears the LCD. Fills VRAM with white, but does not refresh the LCD.
uint16_t LCD_GetPixel | ( | int | x, |
int | y | ||
) |
Returns the color of a pixel. This is not necessarily the color which is being displayed on the LCD, but instead is the color specified for the pixel in the VRAM buffer. Color is in RGB565 format.
x,y | The coordinates of the pixel. |
void LCD_GetSize | ( | int * | width, |
int * | height | ||
) |
Retrieves the size, in pixels, of the LCD.
[out] | width,height | The LCD's size. |
uint16_t * LCD_GetVRAMAddress | ( | ) |
Returns a pointer to the video RAM. Video RAM is composed of width * height
16-bit integers (in row-major order) representing the color at each pixel, in RGB565 format.
void LCD_Refresh | ( | ) |
Pushes the content of the VRAM to the LCD.
void LCD_SetPixel | ( | int | x, |
int | y, | ||
uint16_t | color | ||
) |
Sets the color of a pixel. The result of this operation will not be visible until LCD_Refresh is called. Color is in RGB565 format.
x,y | The coordinate of the pixel. |
color | The color to set the pixel, in RGB565 format. |
void LCD_SetPixelFromPalette | ( | int | x, |
int | y, | ||
uint8_t | index | ||
) |
Sets the color of a pixel, from a pre-defined palette. Result is not visible until LCD_Refresh is called. See Palette Colors.
x,y | The coordinate of the pixel. |
index | The index of the color in the palette to use. |
void LCD_VRAMBackup | ( | ) |
Backs up the current contents of VRAM.
Should be used to prevent display corruption when writing directly to VRAM.
Used in conjunction with LCD_VRAMRestore.
void LCD_VRAMRestore | ( | ) |
Restores the backed up contents of VRAM. The restored content is not displayed until LCD_Refresh is called.
Used in conjunction with LCD_VRAMBackup.