-
TeamFDM.com is an UNOFFICIAL companion site for the DIY Voron 3D printer community. For official docs and final source of truth, visit the Official Voron Discord or the Voron Github
- 0
TeamFDM.com is an UNOFFICIAL companion site for the DIY Voron 3D printer community. For official docs and final source of truth, visit the Official Voron Discord or the Voron Github
Question
sisyphus
Voron 0.2 Z woes
I have got x and y working perfectly with sensorless homing.
Z also works perfectly.
My problem is I am not able to get the bed at proper print height.
Starts printing when Z is at 30. whereas is should be at 119.11.
Here are the relevant (I think) configs.
#####################################################################
# Z STEPPER SETTINGS
#####################################################################
[stepper_z]
step_pin: gpio19
dir_pin: gpio28 # Remove the ! before gpio28 if motor direction is inverted.
enable_pin: !gpio2
rotation_distance: 8 # For T8x8 integrated lead screw
microsteps: 16
endstop_pin: ^gpio25
position_endstop:0
position_max: 119.11
position_min: -5.0
homing_speed: 10
second_homing_speed: 3.0
homing_retract_dist: 3.0
#homing_positive_dir: false
#####################################################################
# Z TMC2209 SETTINGS
#####################################################################
[tmc2209 stepper_z]
uart_pin: gpio9
tx_pin: gpio8
uart_address: 1
interpolate: False
run_current: 0.37
sense_resistor: 0.110
stealthchop_threshold: 1
#####################################################################
# HOME Z
#####################################################################
[gcode_macro _HOME_Z]
gcode:
G90
G28 Z
G1 Z30 F1800
#####################################################################
# HOMING OVERRIDE
#####################################################################
[idle_timeout]
timeout: 1800
[homing_override]
axes: xyz
set_position_z: 0
gcode:
G90
G0 Z-5 F1200
{% set home_all = 'X' not in params and 'Y' not in params and 'Z' not in params %}
{% if home_all or 'X' in params %}
_HOME_X
{% endif %}
{% if home_all or 'Y' in params %}
_HOME_Y
{% endif %}
{% if home_all or 'Z' in params %}
_HOME_Z
{% endif %}
typo errors
Link to comment
Share on other sites
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.