-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterface.h
38 lines (29 loc) · 786 Bytes
/
interface.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* ========================================
*
* Copyright YOUR COMPANY, THE YEAR
* All Rights Reserved
* UNPUBLISHED, LICENSED SOFTWARE.
*
* CONFIDENTIAL AND PROPRIETARY INFORMATION
* WHICH IS THE PROPERTY OF your company.
*
* ========================================
*/
#ifndef INTERFACE_H
#define INTERFACE_H
#include "project.h"
/*** MACROS ***/
#define SHOW_TEMPERATURE 0
#define SHOW_TIME 1
#define SHOW_PY_STATE 2
#define CONFIRM_UPDATE 0
#define SEND_TIME 1
#define SEND_DATE 2
#define SEND_TEMPERATURE 3
/*** GLOBAL VARIABLE PROTOTYPES ***/
/*** FUNCTION PROTOTYPES ***/
void MenuLCD(uint8);
void MenuUART(uint8);
/*** INTERRUPTION PROTOTYPES ***/
#endif
/* [] END OF FILE */