yes after homing X and Y the buttons get blue
i copied the files from the /sys folder on the SD
; homeall.g
; called to home all axes
; Relative positioning
G91
; Lift Z
G1 Z5 F6000 S2
; Course home X and Y
G1 X-200 Y-210 F1800 S1
; Move away from the endstops
G1 X5 Y5 F6000
; Fine home X and Y
G1 X-200 Y-210 F360 S1
; Absolute positioning
G90
; Go to first bed probe point and home Z
G1 X0 Y0 F6000 S2
G30
; homey.g
; called to home the Y axis
;
; Lift Z relative to current position
G91
G1 Z5 F6000 S2
G90
; Move quickly to Y axis endstop and stop there (first pass)
G1 Y-210 F1800 S1
; Go back a few mm
G91
G1 Y5 F6000
G90
; Move slowly to X axis endstop once more (second pass)
G1 Y-210 F360 S1
; Lower Z again
G91
G1 Z-5 F6000 S2
G90
; homex.g
; called to home the X axis
; Lift Z relative to current position
G91
G1 Z5 F6000 S2
G90
; Move quickly to X axis endstop and stop there (first pass)
G1 X-200 F1800 S1
; Go back a few mm
G91
G1 X5 F6000
G90
; Move slowly to X axis endstop once more (second pass)
G1 X-200 F360 S1
; Lower Z again
G91
G1 Z-5 F6000 S2
G90
; homez.g
; called to home the Z axis
; Lift Z relatively to current position
G91
G1 Z5 F6000 S2
; Back to absolute positioning
G90
; Go to first bed probe point and home the Z axis
;G1 X0 Y0 F6000 S2
G30