Home Y not reading all lines of code
-
Hi All,
I hope you can help,
Trying to work out my homing issues. for my Y axis It doesn't seem to be reading the H1 code. It seems to be jumping straight to the move a few mm line. can some help?
G91 ; relative positioning
G1 H2 Z-5 F6000 ; lift Z relative to current position
G1 H1 Y235 F1800 ; move quickly to Y axis endstop and stop there (first pass)
G1 H2 Y-5 F6000 ; go back a few mm
G1 H1 Y235 F360 ; move slowly to Y axis endstop once more (second pass)
G1 H2 Z-5 F6000 ; lower Z again
G90 ; absolute positioningThis is my homey.G
-
@prior123 I suggest checking your endstops are working as intended using M119
-
@jay_s_uk said in Home Y not reading all lines of code:
M119
Hey, so you were right the Y end stop was properly connected (facepalm) however it that is now fixed but is still giving me the same outcome
-
That behavior suggests that the endstop is triggered when it should not be.
So the first move never happens because a G1 H1 stops when the endstop is triggered.
The second move happens because it is not a G1 H1 move.
The third move never happens because a G1 H1 stops when the endstop is triggered.
Frederick