I went to look at a used Lagun mill today and the guy selling it also had an identical mill but with an old ProtoTrak 2 axis CNC conversion on it. Seems like it could be a good deal and if it dies I can just use the machine manually. He hasn't used it and doesn't think he will be able to find the manuals for it. I want to go back in a day or two when it's powered up and check it out to see if the ProtoTrak works. I see that SWI sells the manuals and parts for them but I don't want to buy a manual only to find out the ProtoTrak is no good.
In the meantime, can anyone on here that knows these controls tell me how to get the thing to do a few basic operations so I can verify that the control is working? The control is from 1989 and it the basic 2-axis ProtoTrak, not the Plus version. Thanks, any help is appreciated.
I got a ProtoTrak A.G.E. 2, dunno if that's the same as yours but it sounds the same kinda settup and about the same era.
Here's some code that I made using Dolphin which will mill 7 circular small disks out some large disks I use. I think I used a 2mm end mill (can't remember)
You need to save it in numerical format with a CAM extension, like:
090107.CAM
If it's the same as mine, you'll need to transfer it to a 3.5" floppy (no kidding lol) good luck finding one of them!
You transfer it by pressing this on the beast: MODE/ PROG IN OUT/ AGE2 FLOPPY/ RETRIEVE CAM/ then on the keyboard type in the file number/ RETRIEVE CAM.
There's an option to draw the part on the screen.
X0, Y0 in the prog is at the centre of the big circle. Set your Zeros then run ithope this helps!
%
O100
N15G21G90G40G49
N20T1
N25S1000M03
N30G94
N35G00X-5.Y-8.66Z150.
N40Z3.
N45G01Z0.F100
N50G02X-10.Y0.I5.J8.66F200
N55G03X-20.Y10.I-10.J0.
N60G03X-30.Y0.I0.J-10.
N65G03X-20.Y-10.I10.J0.
N70G03X-10.Y0.I0.J10.
N75G02X-5.Y8.66I10.J0.
N80G03X0.Y17.32I-5.J8.66
N85G03X-10.Y27.32I-10.J0.
N90G03X-15.Y25.98I0.J-10.
N95G03X-20.Y17.32I5.J-8.66
N100G03X-10.Y7.32I10.J0.
N105G03X-5.Y8.66I0.J10.
N110G02X0.Y10.I5.J-8.66
N115G02X5.Y8.66I0.J-10.
N120G03X10.Y7.32I5.J8.66
N125G03X20.Y17.32I0.J10.
N130G03X15.Y25.98I-10.J0.
N135G03X10.Y27.32I-5.J-8.66
N140G03X0.Y17.32I0.J-10.
N145G03X5.Y8.66I10.J0.
N150G02X10.Y0.I-5.J-8.66
N155G03X20.Y-10.I10.J0.
N160G03X30.Y0.I0.J10.
N165G03X20.Y10.I-10.J0.
N170G03X10.Y0.I0.J-10.
N175G02X5.Y-8.66I-10.J0.
N180G03X0.Y-17.32I5.J-8.66
N185G03X10.Y-27.32I10.J0.
N190G03X15.Y-25.98I0.J10.
N195G03X20.Y-17.32I-5.J8.66
N200G03X10.Y-7.32I-10.J0.
N205G03X5.Y-8.66I0.J-10.
N210G02X0.Y-10.I-5.J8.66
N215G02X-5.Y-8.66I0.J10.
N220G03X-10.Y-7.32I-5.J-8.66
N225G03X-20.Y-17.32I0.J-10.
N230G03X-15.Y-25.98I10.J0.
N235G03X-10.Y-27.32I5.J8.66
N240G03X0.Y-17.32I0.J10.
N245G03X-5.Y-8.66I-10.J0.
N250M30
%
I love deadlines- I like the whooshing sound they make as they fly by.