forked from rkolbi/voron2.4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprinter_size_350.cfg
41 lines (37 loc) · 1.24 KB
/
printer_size_350.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
#Setup the marked lines to your System
[probe]
pin: #PG11 # #<----------- Adapt to yours
x_offset: 0 #
y_offset: 25 #
z_offset: #10.00 # #<----------- Adapt to yours
speed: 4.0
lift_speed: 10.0
samples: 5
samples_result: median
sample_retract_dist: 1.5
samples_tolerance: 0.0075
samples_tolerance_retries: 5
# If you don't have defined the [bed_mesh] already, please activate this block and adapt it to your Printer.
#
#[bed_mesh]
#speed: 50
#horizontal_move_z: 15
#mesh_min: 40, 40
#mesh_max: 310,310
#fade_start: 0.6
#fade_end: 10.0
#probe_count: 11,11
#algorithm: bicubic
#relative_reference_index: 60
[safe_z_home]
home_xy_position: #232,353 # #<----------- Adapt to yours
speed:100
z_hop:15
[gcode_macro PARKCENTER]
gcode:
{% set Z = params.Z|default(40)|float %}
SAVE_GCODE_STATE NAME=PARKCENTER_state
{% if printer.toolhead.homed_axes != "xyz" %} G28 {% endif %} ; Home if not already homed
G90 ; absolute positioning
G0 X175 Y175 Z{Z} F12000 ; move to center
RESTORE_GCODE_STATE NAME=PARKCENTER_state