Distance to go display in a program section (#DIST TO GO)

This function is available as of CNC Build V3.1.3079.27.

A geometry sequence can be flagged in the NC program with the NC commands #DIST TO GO BEGIN/END . Within a sequence, the distance to go of each axis is displayed on the HLI up to the end of the geometry sequence by dist_to_geom_end.

Requirement: The parameter P-STUP-00033 must be parameterised in order to use the display function.

Syntax:

#DIST TO GO BEGIN

#DIST TO GO END

Characteristics:

Programming Example

Distance to go display in a program section

N010 G01 X0 Y0 F5000
N020 #DIST TO GO BEGIN
N030 G01 X10
N040 G01 Y10
N050 G01 X5
N060 #DIST TO GO END
;…

In the example, the display would show at the start of the sequence for X 15 and Y 10 and 0 in each case at the end.

The display values is presented in the figure below:

Distance to go display in a program section (#DIST TO GO) 1:
Distance to go display in a program section