|
Last edited by ytliu In 2019-4-28 07:57 Editor
Ver:2019-04-28-108 Description:
1. Increase homing instruction support, M105/M106/M107/M108 are used for X/Y/Z/A homing operation respectively;
Note: If these instructions appear on the first line of G-code, the software will skip it and will not execute it. To avoid this, you can add a line of instructions before it, such as G04P0.
if you need the homing when the program start,you can write this:
G04P0
M107;Z-axis Homing
M105;X-axis Homing
M106;Y-axis Homing
...;Your G-code
|
|