Challenge - 5 Problems
Probing Zero Setting Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
💻 Command Output
intermediate2:00remaining
Output of a simple probing cycle
What is the output of this CNC probing command sequence when the probe touches the workpiece at Z = -5.0 mm?
CNC Programming
G38.2 Z-10 F100
G10 L20 P1 Z0
M30Attempts:
2 left
💡 Hint
G38.2 probes until it touches the surface or reaches the target position.
✗ Incorrect
G38.2 probes along Z axis until it touches the workpiece. When it touches at Z = -5.0 mm, it stops and G10 sets the current position as Z0.
📝 Syntax
intermediate2:00remaining
Identify the correct probing command syntax
Which of the following is the correct syntax to perform a probing move along the X axis to set the zero point automatically?
Attempts:
2 left
💡 Hint
The feed rate (F) must follow the target coordinate in G38.2 command.
✗ Incorrect
The correct syntax is G38.2 followed by the axis and target coordinate, then the feed rate. Option A follows this order.
🔧 Debug
advanced2:00remaining
Debugging a failed zero setting probe
A CNC program uses the following commands to set the Z zero automatically, but the probe never stops and crashes into the table. What is the cause?
CNC Programming
G38.2 Z-20
G10 L20 P1 Z0
M30Attempts:
2 left
💡 Hint
G38.2 requires a feed rate to perform probing safely.
✗ Incorrect
Without a feed rate (F) in G38.2, the probe command may not execute properly and the probe will not stop on contact.
🚀 Application
advanced2:00remaining
Automating workpiece zero setting with probing
You want to automate setting the X and Y zero points on a CNC machine using a single probe touch. Which sequence correctly achieves this?
Attempts:
2 left
💡 Hint
Probing must happen before setting zero with G10.
✗ Incorrect
Probing X and Y separately with G38.2 commands then setting zero with one G10 command is correct.
🧠 Conceptual
expert2:00remaining
Understanding probe error handling in automatic zero setting
During automatic zero setting with probing, what is the expected machine behavior if the probe fails to contact the workpiece within the programmed travel distance?
Attempts:
2 left
💡 Hint
Probing commands include safety checks for contact failure.
✗ Incorrect
If the probe does not contact the workpiece within the travel limit, the machine stops and signals an error to prevent damage.