- added a pause and message/warning to do a rough zero for the Z axis, in case of Toolchange_Probe_MACH3 postprocessor file

This commit is contained in:
Marius Stanciu 2019-02-10 23:04:37 +02:00 committed by Marius S
parent e8b9555a94
commit 8cedc0cad9
2 changed files with 4 additions and 0 deletions

View File

@ -18,6 +18,7 @@ CAD program, and create G-Code for Isolation routing.
- adjusted the Toolchange Manual postprocessor file to have more descriptive messages on the toolchange event
- added a strong focus to the object_name entry in the Selected tab
- the keypad keyPressed are now detected correctly
- added a pause and message/warning to do a rough zero for the Z axis, in case of Toolchange_Probe_MACH3 postprocessor file
9.02.2019

View File

@ -60,6 +60,9 @@ class Toolchange_Probe_MACH3(FlatCAMPostProc):
gcode += 'G90\n'
gcode += 'G17\n'
gcode += 'G94\n'
gcode += '(MSG, WARNING: Make sure you do zero on all axis. ' \
'For Z axis, since it will be probed, make a rough estimate and do a zero.)'
gcode += 'M0'
return gcode