Yeah. That is easy. You must be pretty new to CNC machining. How long have you been programming CNC?
Please anyone know a software to help programming engraving text using live tool on lathe.
Text may be engraved on both cylindrical wall and end face.
Thank you.
Yeah. That is easy. You must be pretty new to CNC machining. How long have you been programming CNC?
http://www.kirkcon.com/
Here is what I use on an Okuma VMC for the end face:
macro for serial numbering? (Delete the Mark code)
If this is of any help let me know and I'll dig up my cylindrical engraving macro.
Well, big help for me, and well done macro too.
Would appreciate your cylindrical engraving macro if available.
Thanks a lot Maxter.
OK folks here is my cylinder engrave macro for the Multus. (Delete the ".txt" at the end of the sub program folder name) It's still a work in progress but the OLL and OLR subs inside are proved out and working.
I've also included the Multus BLETTERS.SSB barend or flat engraving folder. It's the same as my VMC LETTERS.ssb program except for some redundant code in the character code that the Multus took exception too. (Strange that it would run on one machine but not the other!)
On the Okuma VMCs I don't use buffering but on the Multus I do. This was a problem since look ahead buffering can mess up how parametric code works. I played with M331 but finally added two 'stop codes' to get the macro to end. I used "EMPTY" on the VMC but since the multus doesn't have that I used "99" as a flag to end the macro.
Last edited by Maxter; 05-09-2012 at 06:38 PM.
Thanks Maxter,
I realize that "EMPTY" did not work too on my P200LA control, so
with "99" it should work, and also in the code for machining letters, the
"R" for radius did not work, I'll try with that macro that use "L".
I appreciate a lot thanks.
I did a simulation with the macro and it only worked
with G103 or G102, not G03 or G02, I can see the number
on the screen but there's some strange mouvement with the tool,
at each letters the tool make big circle around the letters, I'll have to try
on a real part as soon as I have my milling attachement. (one week)
Thanks
If your using BLETTERS.SSB and have deleted LETTERS.SSB then it must be your machine or calling code. Here is an example of the Multus part program code:
N0321 G140 (T69 ENGRAVE)
N0322 G20 HP=4
N0323 M321
NAT69 TC=1
N0324 MT=3901
G20 HP=4
TL=6969 SB=10000 M242
M110 (C AXIS ON)
G0C0
N0325 M147 (C AXIS CLAMP)
N0326 TL=6969 SB=10000 M242
N0327 G0X0Z1
N0328 M8
N0329 G138 (Y MODE ON)
N0330 G127 (SLANT MODE ON)
N0331 G17 M13 (X/Y MODE)
N0332 V41=.1 V43=-.165 V44=0 V45=.005
N0333 V46=.0005 V47=.001
N0334 CALL OLOT
N0335 G0Z1M9M12
X20
N0336 G126 (SLANT MODE OFF)
N0337 G136 (Y MODE OFF)
M146 (CLAMP OFF)
M109 (C AXIS OFF)
N0339 G20 HP=4
Last edited by Maxter; 05-10-2012 at 03:12 PM.