. .
  1. #1
    Having figured out how control x and y axis and even the auto changer using a bob i don't know how to proceed with the spindle control speed and direction . .I still have the original motor and inverter fitted and all the switch gear and wiring .How do i connect this up to the cnc control through the bob. thanks

  2. #2
    Quote Originally Posted by keith wainwright View Post
    Having figured out how control x and y axis and even the auto changer using a bob i don't know how to proceed with the spindle control speed and direction . .I still have the original motor and inverter fitted and all the switch gear and wiring .How do i connect this up to the cnc control through the bob. thanks

    Hi, iam sorry to say i am unable to help you with your problem but you may be able to help me with mine! I have a TCL160 that i am looking to convert and one of the things stumping me at the moment is how to control the tool turret, i have read that macros need to be written for it but to be honest that is all may beyond me, can i ask how you have done it?

  3. #3
    Don't be afraid of macros they are not that difficult really.
    Keith I believe just controls his turret like another axis "A" axis set to Angular coordinates rather than linear and calls it from g-code with commnad like G1 G91 A90 which moves the axis in incremental mode 90deg. Or what ever amount of deg's he needs to reach the next tool.

    Keith is expereinced CNC lathe operator and used to writing his own G-code so gets away with this setup by inserting at the point in G-code he needs tool change.
    The more normal way would be to do a similair thing but have the commands to turn and control the turret written in a Macro. This Macro is known has the tool change macro and has a special code within G-code called M6.
    One of the reasons we have dedicated tool change macro is so that Cam software can output G-code that works on any machine without knowing or caring how the Machine actually goes about it's tool changing business.
    All the Machine specific details are written in the macro and the Cam software just enters M6 where ever it needs to do tool change.

    So the Macro side is just a list of commands to turn the turret and all that goes with it.
    So lets say for arguments sake your turret is locked with a solenoid which is connected to a relay controlled with output #1. Then you want turret to rotate 90deg positive then reverse 5deg upto a bump stop using the stepper motor which is connected to A axis. Then lock the turret again with solenoid.
    A Very basic macro to do the above would look something like this.

    ActivateSignal(OUTPUT1) . . . . . . . 'turn ON output #1 and Unlock Turret
    Code "G4 P1" . . . . . . . . . . . . . . . 'Pause 1s for output/relay to come on and turret unlock
    While IsMoving ()
    Wend. . . . . . . . . . . . . . . . . . . . . .'wait for pause command to finish
    Code "G00 G91 A90" . . . . . . . . . . . ' Move A axis 90deg
    While IsMoving ()
    Wend . . . . . . . . . . . . . . . . . . . . . . 'wait for motor to stop moving
    Code "G00 G91 A-5" . . . . . . . . . . . . ' Move A axis back 5deg
    While IsMoving ()
    Wend . . . . . . . . . . . . . . . . . . . .. . 'wait for motor to stop moving
    DeActivateSignal(OUTPUT1) . . . . . . . .'Turn off output#1 and Lock turret

    Your G-code would just call M6 and this file would run until finished all commands then return back to the G-code.

    Now in practice there would be a few more commands and variables etc in there to find which tool number and move the correct distance along with some house keeping dutys but it should show you that it's not rocket science and with a little research for the commnads and help you'll soon knock up a M6 toolchange macro thats custom to your machine.
    Last edited by JAZZCNC; 19-10-2015 at 07:46 PM.

  4. #4
    Thank you for taking the time to write your reply. I am quite the " Noob " at CNC but your clear and concise reply has made what seemed like the impossible this morning quite possible as i sit here now. Im sure there will be a lot of trial and error in the process but i now have a starting point that i can understand ! Thank you so much, it is truly appreciated !

  5. #5
    The 160 has no way of knowing which tool is loaded, so always end your programs with gcode which will return the turret to the Tool1 position.

    I have a cheat sheet of the the number of moves to get from T1 to T2, T1 to T3 etc. The further it turns forwards, the more I have to move it back to be certain it has locked. I could work out the moves better but I prefer to work in whole numbers.

    Most of the work on a lathe is pretty simple so I too write the gcode directly without needing CAM software. I've pretty much mastered simple cuts and threading and am starting to incorporate curves now.

    I've found using delrin really helps for initial runs because inadvisable tool moves then just break the plastic, rather than the machine.

    Adrian.
    Last edited by Saracen; 19-10-2015 at 11:20 PM.

  6. #6
    Quote Originally Posted by Saracen View Post
    The 160 has no way of knowing which tool is loaded, so always end your programs with gcode which will return the turret to the Tool1 position.
    Why not fit a Home switch to T1 and remove all doubt.? Just home the machine at the begining of each day and you'll never get lost. Then let the Tool change macro do all the hard work of remembering which tool is current and moving distance to next tool.!

    10 mins work will save hours of coding and remove any possible chance of error from a typo or brain fart.!!

  7. #7
    Hmm, something to think about once I've got the wiring all tidied up.

    I think I have a limit location left on the controller which would be suitable.

    Adrian.

  8. #8
    Quote Originally Posted by JAZZCNC View Post
    Why not fit a Home switch to T1 and remove all doubt.? Just home the machine at the begining of each day and you'll never get lost. Then let the Tool change macro do all the hard work of remembering which tool is current and moving distance to next tool.!

    10 mins work will save hours of coding and remove any possible chance of error from a typo or brain fart.!!
    Hi Jazz,

    I've recently resurrected my TCL160 conversion project.
    It was shelved due to my retirement (Hooooray)
    Sold up in Lancashire and now relocated to the Scottish Border village of Denholm near Hawick.

    I'm using an ESS Smooth Stepper with a CM106 break out board.
    The TCL160 has the original Frequol inverter drive and motor fitted (ZO24) so I will use that to control the spindle motor.
    I notice that besides the normal connections to the motor U,V,W,Stf,Str etc there are two additional light blue wires marked 11 & 12 disappearing into the motor harness, I haven't a clue what these are for, any ideas ??

    I like the idea of a homing sensor on the tool turret to ensure that the tool is at position No1
    If possible is there any chance of getting a copy of the Macro for the tool changer ?? with details of how I add it to MachTurn.

    I'm sure there will be more questions so please be patient with me.

    Regards

    George

  9. #9
    Quote Originally Posted by keith wainwright View Post
    Having figured out how control x and y axis and even the auto changer using a bob
    Hi Keith,

    Can you confirm how you managed to tap into the auto changer for the 160 m/c? I have the same machine but never managed to get it to work..

    It looks to operate via an air supply and I believe a PLC. I have a PMDX 126 BoB. The spindle control was quite easy as I just tapped straight into the Lenze unit (although my unit has now had to be replaced).


    Regards

    Steven

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Mach lathe spindle speed control
    By GeoffV in forum Artsoft Mach (3 & 4)
    Replies: 7
    Last Post: 21-05-2014, 08:34 AM
  2. FOR SALE: pdmx 107 spindle speed control board
    By dazza in forum Items For Sale
    Replies: 0
    Last Post: 08-05-2014, 02:58 PM
  3. Spindle Speed Control
    By cncJim in forum Spindles & Drive Motors
    Replies: 15
    Last Post: 18-06-2013, 07:53 PM
  4. eBay: UIM2901-5A Mach3 breakout board with spindle speed control
    By Fivetide in forum Items On eBay UK
    Replies: 0
    Last Post: 05-02-2013, 07:25 PM
  5. Speed control
    By Saracen in forum Spindles & Drive Motors
    Replies: 2
    Last Post: 29-12-2012, 02:18 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •