Hello Guest it is April 19, 2024, 08:57:08 AM

Author Topic: Spindle open  (Read 2581 times)

0 Members and 1 Guest are viewing this topic.

Spindle open
« on: March 07, 2010, 03:54:22 PM »
Hello, can someone please help me with M3 macro. I want my spindle not to start if there is no tool in the spindle. I have a signal at input3 that indicates that the spindle is closed. Thanks.
« Last Edit: March 07, 2010, 04:02:37 PM by peter81 »

Offline Graham Waterworth

*
  • *
  •  2,672 2,672
  • Yorkshire Dales, England
    • View Profile
Re: Spindle open
« Reply #1 on: March 08, 2010, 07:21:15 AM »
You need something like this in your M3 macro

If IsActive(INPUT3) then
  Dospincw()
End If

Graham
« Last Edit: March 08, 2010, 05:16:25 PM by Graham Waterworth »
Without engineers the world stops
Re: Spindle open
« Reply #2 on: March 08, 2010, 02:19:54 PM »
Thank you very much.