0
0
CNC Programmingscripting~10 mins

Probing for automatic zero setting in CNC Programming - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to start the probing cycle for automatic zero setting.

CNC Programming
[1]
Drag options to blanks, or click blank then click option'
AM30
BZPROBE
CG38.2
DG00
Attempts:
3 left
💡 Hint
Common Mistakes
Using G00 which is a rapid move and does not probe.
Using M30 which ends the program.
Using ZPROBE which is not a standard G-code.
2fill in blank
medium

Complete the code to set the Z zero at the probed position.

CNC Programming
G10 L20 P1 [1]0
Drag options to blanks, or click blank then click option'
AX
BZ
CY
DG
Attempts:
3 left
💡 Hint
Common Mistakes
Setting zero on X or Y axis instead of Z after probing.
Using G instead of axis letter.
Omitting the axis letter.
3fill in blank
hard

Fix the error in the probing command to correctly probe the Z-axis.

CNC Programming
G38.2 [1]-10 F100
Drag options to blanks, or click blank then click option'
AZ
BG
CY
DX
Attempts:
3 left
💡 Hint
Common Mistakes
Using X or Y axis which probes horizontally.
Using G which is not an axis.
Omitting the axis letter.
4fill in blank
hard

Fill both blanks to complete the code that probes and sets the Z zero with an offset.

CNC Programming
G38.2 [1]-5 F50
G10 L20 P1 [2]0
Drag options to blanks, or click blank then click option'
AZ
BX
DY
Attempts:
3 left
💡 Hint
Common Mistakes
Using different axes for probing and zero setting.
Mixing X or Y axis letters.
5fill in blank
hard

Fill all three blanks to complete the code that probes X and Y axes and sets the Z zero.

CNC Programming
G38.2 [1]10 F100
G38.2 [2]10 F100
G10 L20 P1 [3]0
Drag options to blanks, or click blank then click option'
AX
BY
DZ
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong axis letters for probing.
Setting zero on wrong axis.