Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
886 | killagreg | 1 | #ifndef _MENU_H |
2 | #define _MENU_H |
||
1 | ingob | 3 | |
886 | killagreg | 4 | #include <inttypes.h> |
5 | |||
6 | #define DISPLAYBUFFSIZE 80 |
||
7 | |||
8 | extern void LCD_PrintMenu(void); |
||
9 | extern void LCD_Clear(void); |
||
10 | extern int8_t DisplayBuff[DISPLAYBUFFSIZE]; |
||
11 | extern uint8_t DispPtr; |
||
1078 | killagreg | 12 | extern uint8_t MenuItem; |
13 | extern uint8_t MaxMenuItem; |
||
14 | extern uint8_t RemoteKeys; |
||
886 | killagreg | 15 | #endif //_MENU_H |
16 | |||
17 |