-
Notifications
You must be signed in to change notification settings - Fork 9
/
menu_fast_infill.cfg
74 lines (67 loc) · 2.32 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[menu __main tune_fastsqv]
type: list
name: Tune FastSQV
index: 2
[menu __main tune_fastsqv square_corner_velocity]
type: input
name: SQV Std : {'%2d' % (menu.input)}
input: {printer.toolhead.square_corner_velocity}
input_step: 1
input_min: 1
input_max: 99
gcode:
SET_VELOCITY_LIMIT SQUARE_CORNER_VELOCITY={menu.input}
[menu __main tune_fastsqv square_corner_velocity_infill]
type: input
name: Infill : {'%2d' % (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: 99
gcode:
SET_INFILL_SQV SQV={menu.input}
[menu __main tune_fastsqv square_corner_velocity_solid]
type: input
name: Solid : {'%2d' % (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: 99
gcode:
SET_SOLID_INFILL_SQV SQV={menu.input}
[menu __main tune_fastsqv square_corner_velocity_top_solid]
type: input
name: Top Solid : {'%2d' % (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: 99
gcode:
SET_TOP_SOLID_INFILL_SQV SQV={menu.input}
[menu __main tune_fastsqv square_corner_velocity_internal_perimeter]
type: input
name: Int. Peri.: {'%2d' % (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: 99
gcode:
SET_INTERNAL_PERIMETER_SQV SQV={menu.input}
[menu __main tune_fastsqv square_corner_velocity_internal_bridge]
type: input
name: Int. Brid.: {'%2d' % (menu.input)}
input: {printer.save_variables.variables.internal_bridge_sqv | default(printer.configfile.settings.printer.square_corner_velocity, true) }
input_step: 1
input_min: 1
input_max: 99
gcode:
SET_INTERNAL_BRIDGE_SQV SQV={menu.input}
[menu __main tune_fastsqv square_corner_velocity_bridge_infill]
type: input
name: Br. Infill: {'%2d' % (menu.input)}
input: {printer.save_variables.variables.bridge_infill_sqv | default(printer.configfile.settings.printer.square_corner_velocity, true) }
input_step: 1
input_min: 1
input_max: 99
gcode:
SET_BRIDGE_INFILL_SQV SQV={menu.input}