neopixel_f103_mvp/App/Pixel.h
2018-12-16 17:56:48 +01:00

27 lines
287 B
C

/*
* Pixel.h
*
* Created on: Dec 16, 2018
* Author: abody
*/
#ifndef PIXEL_H_
#define PIXEL_H_
#include <inttypes.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
uint8_t g;
uint8_t r;
uint8_t b;
} Pixel_t;
#ifdef __cplusplus
}
#endif
#endif /* PIXEL_H_ */