![]() |
Display Simple Graphics library
v0.5
Library containing shape, text, and bitmap drawing functions called by various display drivers
|
#include "simplegfx.h"Functions | |
| void | drawCharSmall (screen_t *dev, unsigned char c) |
| Low-level helper function for printing single characters to the screen in the small (5x7) font. More... | |
| void | drawCharMedium (screen_t *dev, unsigned char c) |
| Low-level helper function for printing single characters to the screen in the medium (11x15) font. More... | |
| void | drawCharLarge (screen_t *dev, unsigned char c) |
| Low-level helper function for printing single characters to the screen in the large (17x23) font. More... | |
Variables | |
| const char | gfxFontSmall [] |
| void drawCharLarge | ( | screen_t * | dev, |
| unsigned char | c | ||
| ) |
Low-level helper function for printing single characters to the screen in the large (17x23) font.
| dev | Pointer to the display's device structure returned by the initialization function. |
| c | ASCII-encoded character to draw. |
| void drawCharMedium | ( | screen_t * | dev, |
| unsigned char | c | ||
| ) |
Low-level helper function for printing single characters to the screen in the medium (11x15) font.
| dev | Pointer to the display's device structure returned by the initialization function. |
| c | ASCII-encoded character to draw. |
| void drawCharSmall | ( | screen_t * | dev, |
| unsigned char | c | ||
| ) |
Low-level helper function for printing single characters to the screen in the small (5x7) font.
| dev | Pointer to the display's device structure returned by the initialization function. |
| c | ASCII-encoded character to draw. |
| const char gfxFontSmall[] |
1.8.14