Hey,
I'd like to have the coolant command come on when the tool reaches the Clearance height, not as soon as the tool is changed.
I'd also like it to turn off in the same manner. I attached my post.
thanks
Hey,
I'd like to have the coolant command come on when the tool reaches the Clearance height, not as soon as the tool is changed.
I'd also like it to turn off in the same manner. I attached my post.
thanks
Hi @programming2C78B ,
To move your coolant around like you suggest, you would want to move your lines 1588 and 1589
// set coolant after we have positioned at Z
setCoolant(tool.coolant);
to line 1668. This moves the coolant on to right after the first Z move down.
Next, to move the coolant off, move lines 1441 through 1445
if (properties.fastToolChange && !isProbeOperation()) {
currentCoolantMode = COOLANT_OFF;
} else if (!operationNeedsSafeToolCall) { // no coolant off command if safe
start operation
onCommand(COMMAND_COOLANT_OFF);
}
to line 1388. Hope that helps.
Thanks.
Hi @programming2C78B ,
To move your coolant around like you suggest, you would want to move your lines 1588 and 1589
// set coolant after we have positioned at Z
setCoolant(tool.coolant);
to line 1668. This moves the coolant on to right after the first Z move down.
Next, to move the coolant off, move lines 1441 through 1445
if (properties.fastToolChange && !isProbeOperation()) {
currentCoolantMode = COOLANT_OFF;
} else if (!operationNeedsSafeToolCall) { // no coolant off command if safe
start operation
onCommand(COMMAND_COOLANT_OFF);
}
to line 1388. Hope that helps.
Thanks.
Can't find what you're looking for? Ask the community or share your knowledge.