apa102 1.0
apa102 driver library
Loading...
Searching...
No Matches
color.h
Go to the documentation of this file.
1
18
19#ifndef GFX_COLOR_H_
20#define GFX_COLOR_H_
21
30 {
31 unsigned char red;
32 unsigned char green;
33 unsigned char blue;
34 };
35
40
49 {
50 unsigned char red;
51 unsigned char green;
52 unsigned char blue;
53 unsigned char alpha;
54 };
55
60
61#endif /* GFX_COLOR_H_ */
struct GFX_RGBA_Color_t GFX_RGBA_Color
Definition color.h:59
struct GFX_RGB_Color_t GFX_RGB_Color
Definition color.h:39
Represents the data structure for color and intensity data.
Definition color.h:49
unsigned char red
Definition color.h:50
unsigned char green
Definition color.h:51
unsigned char blue
Definition color.h:52
unsigned char alpha
Definition color.h:53
Represents the data structure for color data.
Definition color.h:30
unsigned char red
Definition color.h:31
unsigned char green
Definition color.h:32
unsigned char blue
Definition color.h:33