What's new
VORON Design

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members!

Question Where do I set the z endstop location in Klipper?

Broken3Dprinter

New member
I haven't been successful in using btt eddy as an endstop, so I'm going to the mechanical z endstop.
Where in Klipper do I indicate the x y location of the probe? When I read the Voron documentation, it seems like it ought to be something I'm already aware of, but I'm not.
Thanks
 
You'll find mine on line 9 & 38.
More importantly, in the stepper_x and stepper_y sections of your config.
Hope that helps.
Python:
[stepper_x]
##    Connected to X-MOT (B Motor)
step_pin: PF13#PE6
dir_pin: !PF12#PC13
enable_pin: !PF14#!PE5
rotation_distance: 40
microsteps: 16
full_steps_per_rotation:200  #set to 400 for 0.9 degree stepper
endstop_pin: EBB:gpio13
position_min: 0

##    Uncomment for 350mm build
position_endstop: 350
position_max: 350

##--------------------------------------------------------------------
homing_speed: 25   #Max 100
homing_retract_dist: 5
homing_positive_dir: true

##    Make sure to update below for your relevant driver (2208 or 2209)
[tmc2209 stepper_x]
uart_pin: PC4
interpolate: True
run_current: 1.1
hold_current: 0.5
sense_resistor: 0.110
stealthchop_threshold: 0

[stepper_y]
##    Connected to Y-MOT (A Motor)
step_pin: PG0
dir_pin: !PG1
enable_pin: !PF15
rotation_distance: 40
microsteps: 16
full_steps_per_rotation:200  #set to 400 for 0.9 degree stepper
endstop_pin: ^PG9
position_min: 0

##    Uncomment for 350mm build
position_endstop: 357
position_max: 357

##--------------------------------------------------------------------
homing_speed: 25  #Max 100
homing_retract_dist: 5
homing_positive_dir: true

##    Make sure to update below for your relevant driver (2208 or 2209)
[tmc2209 stepper_y]
uart_pin: PD11
interpolate: True
run_current: 1.1
hold_current: 0.5
sense_resistor: 0.110
stealthchop_threshold: 0
 
Top