-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmenu_mods.cfg
194 lines (158 loc) · 3.58 KB
/
menu_mods.cfg
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
######################################
## LCD Menu mods #####################
######################################
# disable octoprint LCD menu
[menu __main __octoprint]
type: disabled
# Temperature menu overrides
# gcode macros located in macros/preheat.cfg
# Cooldown mod
[menu __main __temp __cooldown_mod]
type: command
enable: {(printer['extruder'].target>0) or (printer['heater_bed'].target>0)} # only show if on
name: Cooldown
gcode:
COOLDOWN
#Preheat PLA mod
[menu __main __temp __preheat_pla_mod]
type: command
name: Preheat PLA
gcode:
PREHEAT_PLA
# Preheat ABS mod
# [menu __main __temp __preheat_abs_mod]
# type: command
# name: Preheat ABS
# gcode:
# PREHEAT_ABS
# Preheat Nylon
[menu __main __temp __preheat_nylon]
type: command
name: Preheat Nylon
gcode:
PREHEAT_NYLON
# Preheat PC
[menu __main __temp __preheat_pc]
type: command
name: Preheat PC
gcode:
PREHEAT_PC
# Preheat TPU
[menu __main __temp __preheat_tpu]
type: command
name: Preheat TPU
gcode:
PREHEAT_TPU
# Preheat PETG
[menu __main __temp __preheat_petg]
type: command
name: Preheat PETG
gcode:
PREHEAT_PETG
# disable standard menu items
[menu __main __temp __cooldown]
type: disabled
[menu __main __temp __preheat_abs]
type: disabled
[menu __main __temp __preheat_pla]
type: disabled
# disable delta calibration
[menu __main __setup __calib __delta_calib_auto]
type: disabled
[menu __main __setup __calib __delta_calib_man]
type: disabled
######################################
[menu __main __prepare]
type: list
enable: {not printer.idle_timeout.state == "Printing"}
name: Prepare
[menu __main __prepare bedScrews]
type: list
enable: {not printer.idle_timeout.state == "Printing"}
name: Bed Screws Adjust
[menu __main __prepare bedScrews start]
type: command
name: Start
gcode:
G28
BED_SCREWS_ADJUST
[menu __main __prepare bedScrews accept]
type: command
name: Accept
gcode: ACCEPT
[menu __main __prepare bedScrews adjusted]
type: command
name: Adjusted
gcode: ADJUSTED
[menu __main __prepare bedScrews abort]
type: command
name: Abort
gcode: ABORT
[menu __main __prepare calProbeZ]
type: list
enable: {not printer.idle_timeout.state == "Printing"}
name: Cal Probe Z Offset
[menu __main __prepare calProbeZ start]
type: command
name: Start
gcode:
G28
PROBE_CALIBRATE
[menu __main __prepare calProbeZ zposition]
type: input
name: Z Pos: {'%+05.3f' % menu.input}
input: {printer.gcode_move.gcode_position.z}
input_min: 0
input_max: 200
input_step: 0.2
[menu __main __prepare calProbeZ zMoveDown]
type: command
name: Move Down 1mm
gcode: TESTZ Z=-1.0
[menu __main __prepare calProbeZ zNudgeUp]
type: command
name: Nudge Up
gcode: TESTZ Z=0.02
[menu __main __prepare calProbeZ zNudgeDown]
type: command
name: Nudge Down
gcode: TESTZ Z=-0.02
[menu __main __prepare calProbeZ save]
type: command
name: Save & Restart
gcode:
ACCEPT
SAVE_CONFIG
[menu __main __prepare meshBed]
type: list
enable: {not printer.idle_timeout.state == "Printing"}
name: Mesh Bed Level
[menu __main __prepare meshBed start]
type: command
name: Start Calibration
gcode:
G28
BED_MESH_CALIBRATE
[menu __main __prepare meshBed abort]
type: command
name: Abort
gcode: ABORT
[menu __main __prepare meshBed zposition]
type: input
name: Z Pos: {'%+05.3f' % menu.input}
input: {printer.gcode_move.gcode_position.z}
input_min: -0.20
input_max: 5.0
input_step: 0.4
[menu __main __prepare meshBed zNudgeUp]
type: command
name: Nudge Up
gcode: TESTZ Z=0.025
[menu __main __prepare meshBed zNudgeDown]
type: command
name: Nudge Down
gcode: TESTZ Z=-0.025
[menu __main __prepare meshBed save]
type: command
name: Save & Restart
gcode: SAVE_CONFIG