From 8cedc0cad90d57a6e7b42470548cefe066308713 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Sun, 10 Feb 2019 23:04:37 +0200 Subject: [PATCH] - added a pause and message/warning to do a rough zero for the Z axis, in case of Toolchange_Probe_MACH3 postprocessor file --- README.md | 1 + postprocessors/Toolchange_Probe_MACH3.py | 3 +++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 840f3043..3393ea7e 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/postprocessors/Toolchange_Probe_MACH3.py b/postprocessors/Toolchange_Probe_MACH3.py index e77a40f5..bb222781 100644 --- a/postprocessors/Toolchange_Probe_MACH3.py +++ b/postprocessors/Toolchange_Probe_MACH3.py @@ -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