ezLCD+103 Driver  0.1
Driver code for the ezLCD+103
 All Files Functions Typedefs Enumerations Groups Pages
ezLCD_103_text.h
Go to the documentation of this file.
1 
39 #ifndef EZLCD_TEXT_H
40 #define EZLCD_TEXT_H
41 /*----------------------------------------------------------------------------*/
42 /* INCLUDES */
43 /*----------------------------------------------------------------------------*/
44 #include "ezLCD_103_common.h"
45 
46 /*----------------------------------------------------------------------------*/
47 /* FUNCTIONS */
48 /*----------------------------------------------------------------------------*/
49 
71 void ezLCD_set_bitmap_font(uint8_t font_number);
72 
73 
99 void ezLCD_set_true_type_font(uint8_t font_number,
100  uint8_t height,
101  uint8_t width);
102 
153  uint16_t y,
154  uint16_t width,
155  uint16_t height,
156  uint8_t bezel_width,
157  uint8_t bezel_height,
158  uint8_t font_width,
159  uint8_t font_height,
160  uint8_t tb_red,
161  uint8_t tb_green,
162  uint8_t tb_blue,
163  uint8_t text_red,
164  uint8_t text_green,
165  uint8_t text_blue);
166 
183 void ezLCD_putchar(char c);
184 
202 void ezLCD_putchar_bg(char c);
203 
204 
229 int putchar(int c);
230 
284 
285 #endif /* EZLCD_TEXT_H */ /* ezLCD_103_text */
unsigned int uint16_t
Definition: ezLCD_103_common.h:92
void ezLCD_set_bitmap_font(uint8_t font_number)
Definition: ezLCD_103_text.c:23
unsigned char uint8_t
Definition: ezLCD_103_common.h:90
void ezLCD_set_true_type_font(uint8_t font_number, uint8_t height, uint8_t width)
Definition: ezLCD_103_text.c:30
void ezLCD_putchar_bg(char c)
Definition: ezLCD_103_text.c:129
void ezLCD_set_ttf_unicode_base(uint16_t base)
Definition: ezLCD_103_text.c:40
Common header file needed by all child headers in this library.
void ezLCD_putchar(char c)
Definition: ezLCD_103_text.c:123
int putchar(int c)
Definition: ezLCD_103_text.c:135
void ezLCD_init_putchar(uint16_t x, uint16_t y, uint16_t width, uint16_t height, uint8_t bezel_width, uint8_t bezel_height, uint8_t font_width, uint8_t font_height, uint8_t tb_red, uint8_t tb_green, uint8_t tb_blue, uint8_t text_red, uint8_t text_green, uint8_t text_blue)
Definition: ezLCD_103_text.c:68