@fusedeep said in Nearly there! Temp and bounce (Board not borked):
@fcwilt
; homeall.g
; called to home all axes
;
; generated by RepRapFirmware Configuration Tool v3.3.10 on Wed Apr 20 2022 11:07:59 GMT+0100 (British Summer Time)
G91 ; relative positioning
G1 H2 Z5 F6000 ; lift Z relative to current position
G1 H1 X-205 Y-255 F1800 ; move quickly to X and Y axis endstops and stop there (first pass)
G1 H2 X5 Y5 F6000 ; go back a few mm
G1 H1 X-205 Y-255 F360 ; move slowly to X and Y axis endstops once more (second pass)
G1 H1 Z-190 F360 ; move Z down stopping at the endstop
G90 ; absolute positioning
G92 Z0 ; set Z position to axis minimum (you may want to adjust this)
; Uncomment the following lines to lift Z after probing
;G91 ; relative positioning
;G1 Z5 F100 ; lift Z relative to current position
;G90 ; absolute positioning
When you home with a Z probe the homing order is typically X > Y > Z
When you home with a Z endstop the homing order is typically Z > X > Y
So you should move the commands here that home Z before the commands that home X and Y.
See my other post regards the G1 H2 Z5 F6000 and the G92 Z0.
Frederick