Switch point (H function)

 

Function: The switch point functionality or H function activates binary, path-dependent switches. For each path element, only a limited number of switch points (MAX_SWITCHES) can be processed. Preset: MAX_SWITCHES = 3.

Syntax

[G command] H O/L

First, the switch point number H<number> is defined, and then the posi­tion of the switch point in the path element is defined as either absolute (word L<position>) or relative (word O<position>).

G code word

Description

H{-}<number>

Number of the H function. If the H number is positive, then the respective switch function is switched on. If the H number is negative, then the switch function is switched off. The H number is non-zero and in the range of -32768 to 32767.

O<position>

Relative position [0...1] in the path element

  • 0: Start of the element

  • 1: End

L<position>

  • L>0: Distance to the start point

  • L<0: Distance to the end point

Graphical representation

_sm_img_cnc_switch.png

In the graphical editor, you can use the mouse to move the switch points along the path. When the mouse is moved over the H function, a tooltip is displayed with the H number of the H function.

Effect on the SMC_Interpolator function block

Examples

Switch off switch point 2 with position relative to the element

Switch point 2 is switched off at position X=40/Y=25 after the first quarter of the element.

N90 G1 X20 Y20
N100 G1 X100 Y40 H-2 O0.25

Switching on and off switch point 2 with position relative to start and end point

Switch point 2 is switched on at position X=40, which is 20 units after the start point of the path element. Switch point 2 is switched off at position X=90, which is 10 units before the end point.

N90 G1 X20
N100 G1 X100 H2 L20 H-2 L-10

See also