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

Hello,

 

Thanks for posting. I assume there was an issue with how it was modified before. The setCoolant function should eliminate duplicate coolant outputs, which could be happening here.

 

If you want the coolant to be turned off before the retract at a tool change, you could change this code:

     // stop spindle before retract during tool change
    if (insertToolCall && !isFirstSection()) {
      onCommand(COMMAND_STOP_SPINDLE);
    }

To this:

    
    // stop spindle before retract during tool change
    if (insertToolCall && !isFirstSection()) {
      onCommand(COMMAND_STOP_SPINDLE);
      onCommand(COMMAND_COOLANT_OFF);
    }

Hope this helps

-

George Roberts

Manufacturing Product manager
If you'd like to provide feedback and discuss how you would like things to be in the future, Email Me and we can arrange a virtual meeting!