Hi! I know there is a lot of discussion about the Z and bed leveling. I tried to read them all, but not find the straight instructions on how to configure the FW.
So, my HW configuration is Prusa I3 with Induction sensor attached to print head. It is connected to Zmin and here is how it was configured in Marlin:
1. With G28 the X home 0 (or in my case -20) Y home 0, then move to center of my bed and Z home.
2. With G29 it did the auto bed leveling in a grid (By the way, I really like the Grid leveling)
As I understand in Repetier it is not suggested to use same sensor for Z home and bed leveling?
But If i do, can I do the following:
The both X_MIN_PIN and Z_PROBE_PIN = "Z min endstop"
In startup code:
G28 XY ; Home X and Y
G0 X100 Y90 ; Move to the center of the bed
G28 Z ; Home Z
G32 S0
To find the Z_PROBE_HEIGHT I will move to X100 and Y90, Home Z and measure the distance from nozzle to bed.
Or can I do the following:
Set Homing order: "Z up, X, Y preheat Z"
set ZHOME_X_POS/ZHOME_Y_POS X100 Y90
In startup code:
G28 ; home X,Y then preheat and home Z at X100 Y90
G32 S0 ; Bed auto leveling
Will it work? Is there some better suggestion?
BR, Martins