Habe gerade das gefunden:
Check out these three configs for both your X & Y stepper setting
-
https://www.klipper3d.org/Config_Reference.html
position_min: 0
position_endstop:
position_max:
Now, e.g. If you set
Positon_endstop = 0 for stepper X
Positon_endstop = 0 for stepper Y
Then Mechanical (0,0) is the SAME as GCODE (0,0)
NOW if you set
Positon_endstop = 10 for stepper X
Positon_endstop = 10 for stepper Y
Then Mechanical (10,10) is the SAME as GCODE (0,0)
So now, when you send the GCODE command to Go HOME ( G1 X0 Y0 ) then the toolhead will goto logical home ( i.e. mechanical 10,10 ) because that's what you asked klipper to do.
How you can work to your advantage is to add Posisiton_endstop value based on how much clearance you need for your fan. You will also need to reduce position_max as you don't want the toolhead to run over on the other side.
Besser auf der klipper seite eingestellt oder?