-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdisplay_module.ino
97 lines (59 loc) · 1003 Bytes
/
display_module.ino
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
* display_module.ino
*
* Created on: 05.07.2021
* Author: PC
*/
#ifdef __CDT_PARSER__
#include <cdt.h>
#endif
#if defined DISPLAY_ENABLED || defined DISPLAY_FROM_STATUS_ENABLED
void Display_Test()
{
}
void Display_MenuInit(void)
{
}
void Display_DisplayMessage(void)
{
}
void Display_ShowClear(void)
{
}
void Display_ShowValueInt(const char *caption, int value)
{
}
void Display_ShowValueFloat(const char *caption, float value)
{
}
void Display_ShowValueFloatArr(const char *caption, float value, uint8_t idx)
{
}
void Display_ShowValueIntArr(const char *caption, int value, uint8_t idx)
{
}
void Display_MenuShow(int curSel, bool marked)
{
}
void Display_SetLine(int i, char *text)
{
}
void Display_Test1(void)
{
}
void Display_SetSize(int size)
{
}
void Display_ClearWhite()
{
}
void Disaypl_ShowNumber(const char *par, int number, int line)
{
}
void Disaypl_ShowText(const char *par, const char *text, int line)
{
}
void Display_Redraw()
{
}
#endif