29 lines
600 B
C
Executable File
29 lines
600 B
C
Executable File
#ifndef _SHIFTLIGHTSDATA_H
|
|
#define _SHIFTLIGHTSDATA_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
typedef struct
|
|
{
|
|
uint32_t litleds;
|
|
//unsigned char color_1_red;
|
|
//unsigned char color_1_green;
|
|
//unsigned char color_1_blue;
|
|
//unsigned char color_2_red;
|
|
//unsigned char color_2_green;
|
|
//unsigned char color_2_blue;
|
|
//unsigned char color_3_red;
|
|
//unsigned char color_3_green;
|
|
//unsigned char color_3_blue;
|
|
//unsigned char space_1;
|
|
//unsigned char space_2;
|
|
//unsigned char space_3;
|
|
//uint32_t maxrpm;
|
|
//uint32_t rpm;
|
|
}
|
|
ShiftLightsData;
|
|
|
|
|
|
#endif
|