forked from K-Tett/Klipper-FastSQV
-
Notifications
You must be signed in to change notification settings - Fork 4
/
menu_fast_infill.cfg
59 lines (54 loc) · 1.85 KB
/
menu_fast_infill.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
[menu __main __tune __square_corner_velocity]
type: input
name: SQV: {menu.input}
input: {printer.toolhead.square_corner_velocity}
input_step: 1
input_min: 1
input_max: 100
gcode:
SET_VELOCITY_LIMIT SQUARE_CORNER_VELOCITY={menu.input}
[menu __main __tune __square_corner_velocity_infill]
type: input
name: In SQV: {menu.input}
input: {printer.save_variables.variables.infill_sqv | default(printer.configfile.settings.printer.square_corner_velocity, true) }
input_step: 1
input_min: 1
input_max: 100
gcode:
SET_INFILL_SQV SQV={menu.input}
[menu __main __tune __square_corner_velocity_solid]
type: input
name: Solid SQV: {menu.input}
input: {printer.save_variables.variables.solid_infill_sqv | default(printer.configfile.settings.printer.square_corner_velocity, true) }
input_step: 1
input_min: 1
input_max: 100
gcode:
SET_SOLID_INFILL_SQV SQV={menu.input}
[menu __main __tune __square_corner_velocity_top_solid]
type: input
name: Top Solid SQV: {menu.input}
input: {printer.save_variables.variables.top_solid_infill_sqv | default(printer.configfile.settings.printer.square_corner_velocity, true) }
input_step: 1
input_min: 1
input_max: 100
gcode:
SET_TOP_SOLID_INFILL_SQV SQV={menu.input}
[menu __main __tune __square_corner_velocity_internal_perimeter]
type: input
name: Int. Perimeter SQV: {menu.input}
input: {printer.save_variables.variables.internal_perimeter_sqv | default(printer.configfile.settings.printer.square_corner_velocity, true) }
input_step: 1
input_min: 1
input_max: 100
gcode:
SET_INTERNAL_PERIMETER_SQV SQV={menu.input}
[menu __main __tune __square_corner_velocity_internal_bridge]
type: input
name: Int. Bridge SQV: {menu.input}
input: {printer.save_variables.variables.internal_perimeter_sqv | default(printer.configfile.settings.printer.square_corner_velocity, true) }
input_step: 1
input_min: 1
input_max: 100
gcode:
SET_INTERNAL_BRIDGE_SQV SQV={menu.input}