Log in

View Full Version : Spindle Warm Up File



jbuell
10-16-2009, 12:25 AM
Hello All,
Anyone know if it is possible to create a "warm up" part file for spindles? I am familiar with the TR and SO commands but cannot locate one for time.

knight_toolworks
10-16-2009, 01:46 AM
I can give you mine tomorrow.

srwtlc
10-16-2009, 10:03 AM
J, I run this from a "CustomCut" command (C7 for me).

MSGBOX(Ready to warm up the spindle?,4,Spindle Warm-Up)
If &msganswer = NO Then END

TR,9000
PAUSE 2
SO,1,1 'Spindle on
PAUSE 120
TR,13500
PAUSE 120
TR,18000
PAUSE 120
SO,1,0 'Spindle Off

MSGBOX(Spindle is now warmed up and ready to use,64,Spindle Ready)

END

jbuell
10-17-2009, 02:38 PM
Thanks Scott, it's much appreciated!

Jason