-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathKlipperScreen.conf
450 lines (376 loc) · 9.81 KB
/
KlipperScreen.conf
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
#[main]
#moonraker_host: 127.0.0.1
#moonraker_port: 7125
#service: KlipperScreen
########################################
# Override the default preheats
########################################
[preheat PLA]
bed = 60
extruder = 150
gcode: G90
G1 X125 Y125 Z30
LED_HEATING
[preheat ABS]
bed = 110
extruder = 150
gcode: PREHEAT FAN=1
G90
G1 X125 Y125 Z30
LED_HEATING
[preheat PETG]
bed = 80
extruder = 150
gcode: PREHEAT FAN=0
G90
G1 X125 Y125 Z30
LED_HEATING
[preheat TPU]
bed = 40
extruder = 150
gcode: PREHEAT FAN=0
G90
G1 X125 Y125 Z30
LED_HEATING
[preheat NYLON]
bed = 40
extruder = 150
gcode: PREHEAT FAN=0
G90
G1 X125 Y125 Z30
LED_HEATING
########################################
# Full base menu
########################################
[menu __main]
name: {{ gettext('Main Menu') }}
[menu __main homing]
name: {{ gettext('Homing') }}
icon: home
[menu __main temperature]
name: {{ gettext('Temperature') }}
icon: heat-up
panel: temperature
enable: {{ printer.temperature_devices.count > 0 }}
[menu __main actions]
name: {{ gettext('Actions') }}
icon: move
[menu __main config]
name: {{ gettext('Configuration') }}
icon: settings
[menu __main print]
name: {{ gettext('Print') }}
icon: print
panel: print
########## Homing Panel ##########
[menu __main homing homeall]
name: {{ gettext('Home All') }}
icon: home
method: printer.gcode.script
params: {"script":"G28"}
[menu __main homing homex]
name: {{ gettext('Home X') }}
icon: home-x
method: printer.gcode.script
params: {"script":"G28 X"}
[menu __main homing homey]
name: {{ gettext('Home Y') }}
icon: home-y
method: printer.gcode.script
params: {"script":"G28 Y"}
[menu __main homing homez]
name: {{ gettext('Home Z') }}
icon: home-z
method: printer.gcode.script
params: {"script":"G28 Z"}
[menu __main homing homexy]
name: {{ gettext('Home XY') }}
icon: home
method: printer.gcode.script
params: {"script":"G28 X Y"}
[menu __main homing quad_gantry_level]
name: {{ gettext('Quad Gantry Level') }}
icon: home-z
method: printer.gcode.script
params: {"script":"QUAD_GANTRY_LEVEL"}
enable: {{ printer.quad_gantry_level is defined }}
[menu __main homing Z-Tilt]
name: {{ gettext('Z Tilt') }}
icon: z-tilt
method: printer.gcode.script
params: {"script":"Z_TILT_ADJUST"}
enable: {{ printer.z_tilt is defined }}
########################################
# [menu __main homing attach]
# name: {{ gettext('Attach Probe') }}
# icon: arrow-down
# method: printer.gcode.script
# params: {"script":"ATTACH_PROBE"}
# [menu __main homing dock]
# name: {{ gettext('Dock Probe') }}
# icon: arrow-up
# method: printer.gcode.script
# params: {"script":"DOCK_PROBE"}
########################################
########## Actions Panel ##########
[menu __main actions move]
name: {{ gettext('Move') }}
icon: move
panel: move
[menu __main actions extrude]
name: {{ gettext('Extrude') }}
icon: filament
panel: extrude
enable: {{ printer.extruders.count > 0 }}
[menu __main actions fan]
name: {{ gettext('Fan') }}
icon: fan
panel: fan
enable: {{ printer.fans.count > 0 }}
[menu __main actions macros]
name: {{ gettext('Macros') }}
icon: custom-script
panel: gcode_macros
enable: {{ printer.gcode_macros.count > 0 }}
[menu __main actions power]
name: {{ gettext('Power') }}
icon: shutdown
panel: power
enable: {{ printer.power_devices.count > 0 }}
[menu __main actions disablemotors]
name: {{ gettext('Disable Motors') }}
icon: motor-off
method: printer.gcode.script
params: {"script":"M18"}
[menu __main actions console]
name: {{ gettext('Console') }}
icon: console
panel: console
########################################
# Add Filament menu
########################################
[menu __main actions filament]
name: {{ gettext('Filament') }}
icon: filament-spool
########################################
####### Filament Panel (custom) ########
[menu __main actions filament clean]
name: {{ gettext('Clean Nozzle') }}
icon: extruder
method: printer.gcode.script
params: {"script":"clean_nozzle"}
[menu __main actions filament load]
name: {{ gettext('Load Filament') }}
icon: extrude
method: printer.gcode.script
params: {"script":"load_filament"}
[menu __main actions filament unload]
name: {{ gettext('Unoad Filament') }}
icon: retract
method: printer.gcode.script
params: {"script":"unload_filament"}
[menu __main actions filament setabs]
name: {{ gettext('Set Filament ABS') }}
icon: filament-abs
method: printer.gcode.script
params: {"script":"set_filament index=0"}
[menu __main actions filament setpla]
name: {{ gettext('Set Filament PLA') }}
icon: filament-pla
method: printer.gcode.script
params: {"script":"set_filament index=1"}
[menu __main actions filament settpu]
name: {{ gettext('Set Filament TPU') }}
icon: filament-tpu
method: printer.gcode.script
params: {"script":"set_filament index=2"}
[menu __main actions filament setpetg]
name: {{ gettext('Set Filament PETG') }}
icon: filament-petg
method: printer.gcode.script
params: {"script":"set_filament index=3"}
[menu __main actions filament setnylon]
name: {{ gettext('Set Filament NYLON') }}
icon: filament-nylon
method: printer.gcode.script
params: {"script":"set_filament index=4"}
########################################
# Add Park menu
########################################
[menu __main actions park]
name: {{ gettext('Park') }}
icon: park
########################################
######### Park Panel (custom) ##########
[menu __main actions park bed]
name: {{ gettext('Park Bed') }}
icon: park
method: printer.gcode.script
params: {"script":"park P=bed"}
[menu __main actions park center]
name: {{ gettext('Park Center') }}
icon: park
method: printer.gcode.script
params: {"script":"park P=center"}
[menu __main actions park front]
name: {{ gettext('Park Front') }}
icon: park
method: printer.gcode.script
params: {"script":"park P=front"}
[menu __main actions park frontlow]
name: {{ gettext('Park Front Low') }}
icon: park
method: printer.gcode.script
params: {"script":"park P=frontlow"}
[menu __main actions park rear]
name: {{ gettext('Park Rear') }}
icon: park
method: printer.gcode.script
params: {"script":"park P=rear"}
########## Config Panel ##########
[menu __main config bedlevel]
name: {{ gettext('Bed Level') }}
icon: bed-level
panel: bed_level
[menu __main config bedmesh]
name: {{ gettext('Bed Mesh') }}
icon: bed-level
panel: bed_mesh
enable: {{ printer.bed_mesh is defined }}
[menu __main config zoffset]
name: {{ gettext('Z Calibrate') }}
icon: z-farther
panel: zcalibrate
[menu __main config limits]
name: {{ gettext('Limits') }}
icon: fine-tune
panel: limits
[menu __main config network]
name: {{ gettext('Network') }}
icon: network
panel: network
[menu __main config system]
name: {{ gettext('System') }}
icon: info
panel: system
[menu __main config save]
name: {{ gettext('Save Config') }}
icon: complete
method: printer.gcode.script
params: {"script":"SAVE_CONFIG"}
confirm:
{{ gettext('Save configuration') }}
{{ gettext('Klipper will reboot') }}
[menu __main config settings]
name: {{ gettext('Settings') }}
icon: settings
panel: settings
# ########## Filament Panel (custom) ##########
# [menu __main filament clean]
# name: {{ gettext('Clean Nozzle') }}
# icon: extruder
# method: printer.gcode.script
# params: {"script":"clean_nozzle"}
# [menu __main filament setabs]
# name: {{ gettext('Set Filament ABS') }}
# icon: extruder-0
# method: printer.gcode.script
# params: {"script":"set_filament index=0"}
# [menu __main filament setpla]
# name: {{ gettext('Set Filament PLA') }}
# icon: extruder-1
# method: printer.gcode.script
# params: {"script":"set_filament index=1"}
# [menu __main filament settpu]
# name: {{ gettext('Set Filament TPU') }}
# icon: extruder-2
# method: printer.gcode.script
# params: {"script":"set_filament index=2"}
# [menu __main filament setpetg]
# name: {{ gettext('Set Filament PETG') }}
# icon: extruder-3
# method: printer.gcode.script
# params: {"script":"set_filament index=3"}
# [menu __main filament setnylon]
# name: {{ gettext('Set Filament NYLON') }}
# icon: extruder-4
# method: printer.gcode.script
# params: {"script":"set_filament index=4"}
########## Print Panel ##########
[menu __print]
name: {{ gettext('Print Control') }}
[menu __print temperature]
name: {{ gettext('Temperature') }}
icon: heat-up
panel: temperature
enable: {{ printer.temperature_devices.count > 0 }}
[menu __print fan]
name: {{ gettext('Fan') }}
icon: fan
panel: fan
enable: {{ printer.fans.count > 0 }}
[menu __print extrude]
name: {{ gettext('Extrude') }}
icon: filament
panel: extrude
enable: {{ (printer.pause_resume.is_paused == True) and (printer.extruders.count > 0) }}
[menu __print power]
name: {{ gettext('Power') }}
icon: shutdown
panel: power
enable: {{ printer.power_devices.count > 0 }}
[menu __print macros]
name: {{ gettext('Macros') }}
icon: custom-script
panel: gcode_macros
enable: {{ printer.gcode_macros.count > 0 }}
[menu __print console]
name: {{ gettext('Console') }}
icon: console
panel: console
[menu __print limits]
name: {{ gettext('Limits') }}
icon: fine-tune
panel: limits
[menu __print network]
name: {{ gettext('Network') }}
icon: network
panel: network
[menu __print system]
name: {{ gettext('System') }}
icon: info
panel: system
[menu __print settings]
name: {{ gettext('Settings') }}
icon: settings
panel: settings
########## Splashscreen (?) ##########
[menu __splashscreen]
name: {{ gettext('Menu') }}
[menu __splashscreen power]
name: {{ gettext('Power') }}
icon: shutdown
panel: power
enable: {{ printer.power_devices.count > 0 }}
[menu __splashscreen network]
name: {{ gettext('Network') }}
icon: network
panel: network
[menu __splashscreen system]
name: {{ gettext('System') }}
icon: info
panel: system
[menu __splashscreen settings]
name: {{ gettext('Settings') }}
icon: settings
panel: settings
#~# --- Do not edit below this line. This section is auto generated --- #~#
#~#
#~# [main]
#~# theme = BlueTrident
#~# confirm_estop = True
#~#
#~# [graph Printer]
#~# heater_bed = False
#~# temperature_fan chamber = False
#~#