init commit

This commit is contained in:
forbelief 2016-04-15 17:08:43 +08:00
commit 91399c2e8f
119 changed files with 27396 additions and 0 deletions

View file

@ -0,0 +1,37 @@
/*
* input.h
*
*/
#ifndef INPUT_H
#define INPUT_H
typedef struct InData_
{
uint8_t isWifiOn : 1;
uint8_t isPlanMode : 1;
uint8_t isRedL : 1;
uint8_t isBlueL : 1;
uint8_t isUvbL : 1;
uint8_t knobV;
} InData;
void InitInput(void);
void
#endif // INPUT_H