Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
LibertyMachine
in reply to: mailZWX5Y

That's because I took a shortcut when I shouldn't have :disappointed_face:

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.