5,710
edits
Changes
GRBL
,→Storing Home
https://github.com/grbl/grbl/blob/master/config.h#L194
==Storing Home==
# Home : <presyntaxhighlight lang="bash">$H</presyntaxhighlight># Query position: <presyntaxhighlight lang="bash">?</presyntaxhighlight> response <syntaxhighlight lang="bash"><Idle,MPos:0.000,199.800,0.000,WPos:0.000,0.002,0.000></syntaxhighlight># Store home (using X and Y from query, 0 and 199.8 in the example above): <presyntaxhighlight lang="bash">G10L2P0X0Y199.8</syntaxhighlight># Query again to check that it worked: <syntaxhighlight lang="bash">?</syntaxhighlight> WPos should be 0,0,0 <syntaxhighlight lang="bash"><Idle,MPos:0.000,199.800,0.000,WPos:0.000,0.000,0.000>G10L2P0XOFFSETYOFFSET</presyntaxhighlight>
=GIKFUN wch340 serial=