forked from rkolbi/voron2.4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprinter_size_250.cfg
49 lines (44 loc) · 1.19 KB
/
printer_size_250.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
#Setup the marked lines to your System
[probe]
pin: #^PA3 #<----------- Adapt Probe Pin
x_offset: 0
y_offset: 25
z_offset: #10.15 #<----------- 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: 150
#horizontal_move_z: 15
#mesh_min: 30, 30 #
#mesh_max: 220,220 #
#fade_start: 0.6
#fade_end: 10.0
#probe_count: 5,5
#algorithm: bicubic
#move_check_distance: 3
#split_delta_z: 0.0125
#mesh_pps: 2,2
#relative_reference_index: 12
#
#
gcode:
[safe_z_home]
home_xy_position:#177,253 # <-------------------------------Adapt to your Z Endstop position
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 %}
G90 ; absolute positioning
G0 X125 Y125 Z{Z} F12000 ; move to center
RESTORE_GCODE_STATE NAME=PARKCENTER_state