tool break control command not working in my post for okuma

tool break control command not working in my post for okuma

jeff2HS8X
Advocate Advocate
237 Views
1 Reply
Message 1 of 2

tool break control command not working in my post for okuma

jeff2HS8X
Advocate
Advocate

I cannot get a tool break command to work in my post for an okuma genos.  all i need is for something to pop up in my post and then i should be able to modify the post from there but its like i do not even have the function enable within my post? any help would be great, 

 

thanks

Jeff

0 Likes
238 Views
1 Reply
Reply (1)
Message 2 of 2

Tomek.G
Autodesk
Autodesk

Hi @jeff2HS8X,

Thanks for posting.
This functionality has indeed not been implemented in the okuma post.
In the onCommand function you can add any code you want to appear for the tool break control.
Look for the case COMMAND_BREAK_CONTROL:

 

 

  case COMMAND_BREAK_CONTROL:
    onCommand(COMMAND_STOP);
    writeComment("any code for tool brake control");
    return;
  case COMMAND_TOOL_MEASURE:
    return;
  }

 

 


Tomek.G
Sr. Technical Consultant
0 Likes