ezLCD+103 Driver  0.1
Driver code for the ezLCD+103
 All Files Functions Typedefs Enumerations Groups Pages
ezLCD_103_colors.h
Go to the documentation of this file.
1 
46 #ifndef EZLCD_COLORS_H
47 #define EZLCD_COLORS_H
48 /*----------------------------------------------------------------------------*/
49 /* INCLUDES */
50 /*----------------------------------------------------------------------------*/
51 #include "ezLCD_103_common.h"
52 
53 /*----------------------------------------------------------------------------*/
54 /* FUNCTIONS */
55 /*----------------------------------------------------------------------------*/
57 #define EZLCD_WHITE 0xFF, 0xFF, 0xFF
58 
59 #define EZLCD_BLACK 0x00, 0x00, 0x00
60 
61 #define EZLCD_BLUE 0x00, 0x00, 0xFF
62 
63 #define EZLCD_RED 0xFF, 0x00, 0x00
64 
65 #define EZLCD_GREEN 0x00, 0xFF, 0x00
66 
67 #define EZLCD_YELLOW 0xFF, 0xFF, 0x00
68 
69 #define EZLCD_ORANGE 0xFF, 0xA5, 0x00
70 
71 #define EZLCD_DARK_BLUE 0x00, 0x00, 0x8B
72 
73 #define EZLCD_VIOLET 0xEE, 0x82, 0xEE
74 
75 
97 void ezLCD_set_color_rgb(uint8_t red, uint8_t green, uint8_t blue);
98 
119 void ezLCD_set_alpha(uint8_t alpha);
120 
156 void ezLCD_set__tr_color_rgb(uint8_t red, uint8_t green, uint8_t blue);
157 
175 void ezLCD_tr_color_none(void);
176 
208 void ezLCD_set_background_color(uint8_t red, uint8_t green, uint8_t blue);
209 
231 void ezLCD_replace_color(uint8_t o_red, uint8_t o_green, uint8_t o_blue,
232  uint8_t n_red, uint8_t n_green, uint8_t n_blue);
233 
234 #endif /* EZLCD_COLORS_H */ /* ezLCD_103_colors */
void ezLCD_set__tr_color_rgb(uint8_t red, uint8_t green, uint8_t blue)
Definition: ezLCD_103_colors.c:36
void ezLCD_set_background_color(uint8_t red, uint8_t green, uint8_t blue)
Definition: ezLCD_103_colors.c:49
unsigned char uint8_t
Definition: ezLCD_103_common.h:90
Common header file needed by all child headers in this library.
void ezLCD_replace_color(uint8_t o_red, uint8_t o_green, uint8_t o_blue, uint8_t n_red, uint8_t n_green, uint8_t n_blue)
Definition: ezLCD_103_colors.c:57
void ezLCD_set_color_rgb(uint8_t red, uint8_t green, uint8_t blue)
Definition: ezLCD_103_colors.c:22
void ezLCD_set_alpha(uint8_t alpha)
Definition: ezLCD_103_colors.c:30
void ezLCD_tr_color_none(void)
Definition: ezLCD_103_colors.c:44