Подключаем автоноль на ЧПУ + скрипт/ Ноль на заготовке

Полное описание как сделать на ЧПУ станок возможность автоматически находить ноль на заготовке. Сам скрипт---------------------- ’VB Code Start ’------------------- CurrentFeed = GetOemDRO(818) DoSpinStop() ZMove = ’Total lenght of Probe to move before Stop or no Contact Made. ZOffset = ’ Plate Hight ZSal = ZOffset ’ Free Hight, Will possition the Proble 2 MM over the Material. StopZmove = 0 If GetOemLed (825)=0 Then DoOEMButton (1010) Code “G4 P2.5“ Code “G31 Z-“& ZMove & “F25“ While IsMoving() Sleep(200) Wend Probepos = GetVar(2002) If Probepos = - ZMove Then responce = MsgBox (“**ERROR** “ , 4 , “Probe **ERROR**“ ) Code “G0 Z10“ StopZmove = 1 Code “F“ &CurrentFeed End If If StopZmove = 0 Then Code “G0 Z“ & Probepos While IsMoving () Sleep (200) Wend
Back to Top