V0.99
This commit is contained in:
parent
8eb06c8eab
commit
7abafe7c8c
3 changed files with 98 additions and 96 deletions
10
App/Pixel.h
10
App/Pixel.h
|
@ -24,4 +24,14 @@ typedef struct {
|
|||
}
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
struct Pixel : public Pixel_t {
|
||||
Pixel(uint8_t _r, uint8_t _g, uint8_t _b) {
|
||||
g =_g;
|
||||
r = _r;
|
||||
b = _b;
|
||||
}
|
||||
};
|
||||
#endif
|
||||
|
||||
#endif /* PIXEL_H_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue