Strategy for setting up WCS for a secondary spindle?

All things related to the Centroid Acorn CNC Controller

Moderator: cnckeith

Post Reply
FlySox
Posts: 58
Joined: Mon Jan 14, 2019 5:57 pm
Acorn CNC Controller: Yes
Allin1DC CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: none
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No

Strategy for setting up WCS for a secondary spindle?

Post by FlySox »

I’ve got a Tormach High Speed Spindle “outrigger” kit (see pic) attached to my Sharp knee mill (Bridgeport clone). Question for the group is the best strategy for setting up the 0,0,0 coordinates of the secondary spindle, given that I have a probe (Hallmark ITTP) for the main spindle.

I guess I could probe a corner of a squared piece of scrap and set zeros, and then drill a hole in the scrap with the outrigger spindle. I could then probe the hole and subtract the difference between those coordinates and that of G54 to set zeros for G55. I could just get Z for G55 using the “paper touch” method.

I doubt this is the most straight-forward way, not to mention the difficulty/inaccuracy of probing a relatively small drilled hole. Any bright ideas out there?

Image
Attachments
31890_kress_img_3966-m.jpg


tblough
Community Expert
Posts: 3524
Joined: Tue Mar 22, 2016 10:03 am
Acorn CNC Controller: Yes
Allin1DC CNC Controller: Yes
Oak CNC controller: Yes
CNC Control System Serial Number: 100505
100327
102696
103432
7804732B977B-0624192192
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No
Location: Boston, MA
Contact:

Re: Strategy for setting up WCS for a secondary spindle?

Post by tblough »

Drill a big hole and then bore it with the main spindle and the use a test indicator in the high speed spindle to indicate the hole.
Cheers,

Tom
Confidence is the feeling you have before you fully understand the situation.
I have CDO. It's like OCD, but the letters are where they should be.


suntravel
Community Expert
Posts: 3539
Joined: Thu Sep 23, 2021 3:49 pm
Acorn CNC Controller: Yes
Allin1DC CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: 6433DB0446C1-08115074
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No
Location: Germany

Re: Strategy for setting up WCS for a secondary spindle?

Post by suntravel »

Once you have measured the offset, you can use a macro to set G55 automatic for the second spindle

Code: Select all

; probe part with main spindle in G54 and set G55 for second spindle

#120 = #2500 ; G54 X
#121 = #2600 ; G54 Y
#122 = 15 ; Offset X, type in the measured offset from 2.spindle
#123 = 30 ; Offset Y, type in the measured offset from 2.spindle

#2502 = #120 + #122 ; Set G55 to measured offset X
#2602 = #121 + #123 ; Set G55 to measured offset Y

M30
Uwe


Post Reply