Programmierbeispiel

Programmierbeispiel

Nut Messung in X-Achse mit Hindernis

; touchprobe activtion
T1 D1
 
; deactivation of the zero offset
G53
 
; positioning to the starting point
G0 X0 Y0 Z5
 
#VAR
  ;input parameters
  V.L.SlotWidth        = 40
  V.L.ZeroOffsetNumber = 54
  V.L.SafetyDistance   = 10
  V.L.PositioningZ     = -15
  V.L.CrossOver        = 10
 
  ;output variables
  V.CYC.SysRetX
  V.CYC.SysRetLengthX
#ENDVAR
 
;cycle call
L CYCLE [NAME="SysMeasWcs16.ecy"\
        @P3=V.L.SlotWidth\
        @P7=V.L.ZeroOffsetNumber\
        @P13=V.L.SafetyDistance\
        @P19=V.L.PositioningZ\
        @P33=V.L.CrossOver]
 
; print result
#FILE NAME [MSG="SysMeasWcsResult.txt"]
#MSG SAVE ["V.CYC.SysRetX =%f", V.CYC.SysRetX]
#MSG SAVE ["V.CYC.SysRetLengthX =%f", V.CYC.SysRetLengthX]
 
M30

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