Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to start the probing cycle for automatic zero setting.
CNC Programming
[1] Drag options to blanks, or click blank then click option'
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.
✗ Incorrect
G38.2 is the standard G-code command to start a probing cycle that moves the tool until it touches the surface.
2fill in blank
mediumComplete 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'
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.
✗ Incorrect
G10 L20 P1 Z0 sets the Z-axis zero position at the current location after probing.
3fill in blank
hardFix 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'
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.
✗ Incorrect
The probe must move along the Z-axis, so the command should be G38.2 Z-10 F100 to probe downwards 10 units at feed rate 100.
4fill in blank
hardFill 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'
Attempts:
3 left
💡 Hint
Common Mistakes
Using different axes for probing and zero setting.
Mixing X or Y axis letters.
✗ Incorrect
First line probes down 5 units on Z axis. Second line sets Z zero at current position with G10 L20 P1 Z0.
5fill in blank
hardFill 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'
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong axis letters for probing.
Setting zero on wrong axis.
✗ Incorrect
First line probes X axis 10 units, second probes Y axis 10 units, third sets Z zero at current position.