GLCD Library
A C Library for Embedded Applications
 All Data Structures Files Functions Variables Enumerations Enumerator Macros Groups Pages
glcd_text_tiny.h File Reference

GLCD Library - Tiny Text functions. More...

Go to the source code of this file.

Macros

#define GLCD_TEXT_INIT()   glcd_tiny_set_font(Font5x7,5,7,32,127);
 Initialise 5x7 text. More...
 
#define GLCD_WRITE(str)   glcd_tiny_draw_string_ammend(str)
 Write string to bottom-most line after scrolling everything else up. More...
 
#define GLCD_WRITE_P(str)   glcd_tiny_draw_string_ammend_P(str)
 Write string from program memory to bottom-most line after scrolling everything else up. More...
 

Functions

void glcd_tiny_draw_char (uint8_t x, uint8_t line, char c)
 Write character to LCD in tiny 5x7 font. More...
 
void glcd_tiny_draw_char_xy (uint8_t x, uint8_t y, char c)
 Write character to LCD in tiny 5x7 font to specified X, Y location. More...
 
void glcd_tiny_draw_string (uint8_t x, uint8_t line, char *str)
 Write string to display buffer in tiny 5x7 font. More...
 
void glcd_tiny_draw_string_ammend (char *str)
 Write string to bottom row of display. More...
 
void glcd_tiny_draw_string_ammend_P (const char *str)
 Write string from flash memory to bottom row of display. More...
 
void glcd_tiny_draw_string_P (uint8_t x, uint8_t line, const char *str)
 Write flash string to display buffer in tiny 5x7 font. More...
 
void glcd_tiny_invert_line (uint8_t line)
 Invert all contents of line number. More...
 
void glcd_tiny_set_font (const char *font_table, uint8_t width, uint8_t height, char start_char, char end_char)
 Set font to be used from now on. More...
 

Detailed Description

GLCD Library - Tiny Text functions.

Author
Andy Gock

Definition in file glcd_text_tiny.h.