forked from OskarLundgren/WeatherStation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTemp_Module.h
58 lines (33 loc) · 857 Bytes
/
Temp_Module.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#ifndef INCLUDE_TEMP_MODULE_H
#define INCLUDE_TEMP_MODULE_H
extern float temp;
extern int oneMinute;
extern int tempLogPosition;
extern float tempLog[1440];
extern char converted[4];
extern int currentMenu;
extern int nSample;
typedef struct day{
float minValue;
float maxValue;
float avgValue;
} Day;
extern Day weekBuffer[7];
void Init_Temp(void);
void Temp_Measure(void);
void TC0_Handler(void);
void Update_Temp(void);
void Clear_Temp(void);
void Print_Temperature(void);
void Timer_Setup(void);
void TC3_Handler(void);
void Log_Temp(void);
int Size_Of_TempLog();
void Add_Values(void);
void Reset_TempLog(void);
float Find_Max();
float Find_Min();
float Find_Average();
void Convert_Day_To_Char(Day* theDay, int requestedValue);
void Temp_Alarm(void);
#endif