Programmierbeispiel

Programmierbeispiel

prg_example

Messen in X-Achse

; touchprobe activtion

T1 D1

M6

; deactivation of the zero offset

G53

 

; positioning to the starting point

G0 X-50 Y0

G0 Z-10

 

#VAR

  ; input parameters:

  V.L.MeasDistX        = 10

  V.L.ZeroOffsetNumber = 54

 

  ; output variables:

  V.CYC.SysRetX

#ENDVAR

 

; cycle call

L CYCLE [NAME="SysMeasWcs1.ecy"     \

        @P4 = V.L.MeasDistX         \

        @P7 = V.L.ZeroOffsetNumber  \

        ]

 

; print result

#FILE NAME [MSG="SysMeasWcsResult.txt"]

#MSG SAVE ["V.CYC.SysRetX =%f", V.CYC.SysRetX]

 

G54

; ... machining workpiece with measured zero offset ....

G53

 

M30

Ein weiteres Beispiel zur Handhabung der SysMeasWcs-Zyklen ist im Übersichtskapitel im Unterpunkt Programmierung zu finden.