Hi Oti
It has been a few years since I have worked the LC20, loved this old machine, it was so able to do a huge variety of work it was amazing for its age!
The LC20 I worked on was also a 4 axis lathe with live tooling in the upper turret, along with in process gauging and a small OSR10 robot feeding it.
The trick is to have a look at the screen that shows the status of the bits.
Can not remember the name of the screen, but I seem to recall it was able to be brought up in either Auto, MDI or Manual modes.
Look for the "bit" that turns on when the Tailstock is Retracted. You will see a line of "bits" that represent a whole pile of different things... need to refer to your maintenance manual to see what they are...
Depending on which "bit" turns on when the Tailstock is retracted you will need one of the following lines.
If the first bit (from the RH Side) is on then you need line 1
Second bit is line 2 and so on...
N1 IF [[VDIN[1168] AND 1] EQ 1] N...
N2 IF [[VDIN[1168] AND 2] EQ 2] N...
N3 IF [[VDIN[1168] AND 4] EQ 4] N...
N4 IF [[VDIN[1168] AND 8] EQ 8] N...
N5 IF [[VDIN[1168] AND 16] EQ 16] N...
N6 IF [[VDIN[1168] AND 32] EQ 32] N...
N7 IF [[VDIN[1168] AND 64] EQ 64] N...
N8 IF [[VDIN[1168] AND 128] EQ 128] N...
To breakdown what is happening here, you need to understand the bits are looked using binary coding. The AND statement is telling the program to check a certain bit and the EQ statement is seeing if it is ON (EQ) or OFF (not EQ).
I will see if I can find the old maintenance manual and check for you when I get back to work. Like I said, it has been many years since I worked an LC20.
Cheers and I hope this works for you,
Brian.


LinkBack URL
About LinkBacks




