This repository has been archived by the owner on Oct 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathadvi3pp_pages.h
79 lines (74 loc) · 2.51 KB
/
advi3pp_pages.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/**
* Marlin 3D Printer Firmware For Wanhao Duplicator i3 Plus (ADVi3++)
*
* Copyright (C) 2017-2019 Sebastien Andrivet [https://github.com/andrivet/]
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef ADV_I3_PLUS_PLUS_PAGES_H
#define ADV_I3_PLUS_PLUS_PAGES_H
namespace advi3pp {
enum class Page: uint8_t
{
None = 0,
Boot = 1,
Main = 22,
Controls = 24,
Tuning = 26,
Settings = 28,
LoadUnload = 30,
WaitBack = 32,
WaitBackContinue = 34,
Preheat = 36,
Move = 38,
SdCard = 40,
Print = 42,
Sponsors = 44,
Waiting = 46,
ManualLeveling = 48,
ExtruderTuningTemp = 50,
WaitContinue = 52,
ExtruderTuningMeasure = 54,
Leveling = 56,
PidTuning = 58,
MotorsSettings = 62,
PidSettings = 64,
FactoryReset = 66,
Statistics = 68,
Versions = 70,
StepsSettings = 72,
FeedrateSettings = 74,
AccelerationSettings = 76,
JerkSettings = 78,
PrintSettings = 80,
ThermalRunawayError = 82,
VersionsMismatch = 84,
Temperature = 86,
Infos = 88,
Firmware = 90,
NoSensor = 92,
SensorSettings = 94,
LCD = 96,
Copyrights = 98,
SensorTuning = 100,
SensorGrid = 102,
EEPROMMismatch = 104,
ZHeightTuning = 106,
LinearAdvanceTuning = 108,
LinearAdvanceSettings = 110,
Diagnosis = 112
};
}
#endif //ADV_I3_PLUS_PLUS_PAGES_H