-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.cfg
49 lines (45 loc) · 1.11 KB
/
menu.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
[menu __main FWRT]
type: list
name: FW retract
[menu __main FWRT retract_length]
type: input
name: Length= {'%02.2f' % menu.input}
input: {printer.firmware_retraction.retract_length}
input_min: 0.0
input_max: 10
input_step: 0.05
realtime: True
gcode:
SET_RETRACTION RETRACT_LENGTH={'%.3f' % menu.input}
[menu __main FWRT retract_speed]
type: input
name: Speed= {'%2.0f' % menu.input}
input: {printer.firmware_retraction.retract_speed}
input_step: 1
input_min: 1
input_max: 100
input_step: 1.
realtime: True
gcode:
SET_RETRACTION RETRACT_SPEED={'%.3f' % menu.input}
[menu __main FWRT unretract_extra_length]
type: input
name: UR ExLen={'%01.3f' % menu.input}
input: {printer.firmware_retraction.unretract_extra_length}
input_min: 0.0
input_max: 0.1
input_step: 0.001
realtime: True
gcode:
SET_RETRACTION UNRETRACT_EXTRA_LENGTH={'%.4f' % menu.input}
[menu __main FWRT unretract_speed]
type: input
name: Speed= {'%2.0f' % menu.input}
input: {printer.firmware_retraction.unretract_speed}
input_step: 1
input_min: 1
input_max: 100
input_step: 1.
realtime: True
gcode:
SET_RETRACTION UNRETRACT_SPEED={'%.3f' % menu.input}