09-12-2016
12:31 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
09-12-2016
12:31 PM
That's because I took a shortcut when I shouldn't have ![]()
Open up your post and search for this line:
case "tapping":
the code currently looks like this:
case "tapping":
if (tool.type === TOOL_TAP_RIGHT_HAND) {
//writeln(" (Tap: " + formatComment(tool.description) + ")");
writeBlock(gMotionModal.format(0), zOutput.format(cycle.retract));
writeBlock(gMotionModal.format(1), zOutput.format(z), feedOutput.format(F));
onDwell(.5);
writeBlock(gMotionModal.format(1), zOutput.format(cycle.retract + 0.75), feedOutput.format(cycle.feedrate * 1.1));
You want to change it to read this:
case "tapping":
if (tool.type === TOOL_TAP_RIGHT_HAND) {
//writeln(" (Tap: " + formatComment(tool.description) + ")");
writeBlock(gMotionModal.format(0), zOutput.format(cycle.retract));
writeBlock(gMotionModal.format(1), zOutput.format(z), feedOutput.format(F));
writeBlock(gFormat.format(4), "P" + secFormat.format(P)); THIS LINE HAS BEEN CHANGED
writeBlock(gMotionModal.format(1), zOutput.format(cycle.retract + 0.75), feedOutput.format(cycle.feedrate * 1.1));
Sorry about that, it was a shortcut and I shouldn't have taken it
Seth Madore
Owner, Liberty Machine, Inc.
Good. Fast. Cheap. Pick two.
Fusion