-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tasks.hpp
54 lines (49 loc) · 1013 Bytes
/
Tasks.hpp
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
#ifndef _TASKS_HPP
#define _TASKS_HPP
#include "variables.hpp"
namespace Tasks
{
//--------------------------------------------------------------------------
namespace Sensor
{
namespace CO2
{
void preheat_Awaiting(void);
void read(void);
void read_Temp(void);
}
namespace BME
{
void read(void);
}
}
//----------------------------------------------------------------------------
namespace Output
{
namespace Print
{
namespace UART
{
void preheating(void);
void mh_z(void);
void bme(void);
}
namespace TFT_display
{
void mh_z(void);
void bme(void);
void preheating(void);
}
}
namespace LED
{
void green_Only(void);
void yellow_Only(void);
void red_Only(void);
void all_Off(void);
void blinking_red(void);
void select(void);
}
}
}
#endif //_TASKS_HPP