@phaedrux Thanks, I think I got it.
What didn't work:
homeall.g
G92 Z-1.4 ; set Z position to axis minimum (you may want to adjust this)
If I changed G92 Z1.4 as a positive number it would respect that in the console. Displaying Z1.4
But I needed a negative number. G92 Z-1.4 was not respected. and would show it as Z0 in the console.
What worked was adding:
G1 Z1.4 F100
G92 Z0 ; set Z position to axis minimum (you may want to adjust this)
I am printing now and by triggering the endstop then Raising the Z Then G92 Z0. worked.
I really like how RRF can be adjusted so easily. I'm not going to miss going into Platform.io and recompiling Marlin everytime I have change a little thing.
Next stop the BL touch. But I know now how to adjust the Z for different bed heights.
Thanks.