20 lines
298 B
C
20 lines
298 B
C
|
#ifndef _structsAndDefines_h_
|
||
|
#define _structsAndDefines_h_
|
||
|
|
||
|
typedef struct {
|
||
|
byte use; //0-3 || 0-1
|
||
|
char text[29]; //Text
|
||
|
}ChannelDesc;
|
||
|
|
||
|
#define BUTTONunused 0
|
||
|
#define BUTTONbutton 1
|
||
|
#define BUTTONseeminglySwitch 2
|
||
|
#define BUTTONswitch 3
|
||
|
|
||
|
#define ANALOGunused 0
|
||
|
#define ANALOGused 1
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|