Display Simple Graphics library  v0.5
Library containing shape, text, and bitmap drawing functions called by various display drivers
Functions | Variables
drawChar.c File Reference
#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 []
 

Function Documentation

◆ drawCharLarge()

void drawCharLarge ( screen_t dev,
unsigned char  c 
)

Low-level helper function for printing single characters to the screen in the large (17x23) font.

Parameters
devPointer to the display's device structure returned by the initialization function.
cASCII-encoded character to draw.

◆ drawCharMedium()

void drawCharMedium ( screen_t dev,
unsigned char  c 
)

Low-level helper function for printing single characters to the screen in the medium (11x15) font.

Parameters
devPointer to the display's device structure returned by the initialization function.
cASCII-encoded character to draw.

◆ drawCharSmall()

void drawCharSmall ( screen_t dev,
unsigned char  c 
)

Low-level helper function for printing single characters to the screen in the small (5x7) font.

Parameters
devPointer to the display's device structure returned by the initialization function.
cASCII-encoded character to draw.

Variable Documentation

◆ gfxFontSmall

const char gfxFontSmall[]