Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to start the in-process measurement cycle.
CNC Programming
G65 P[1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using P100 or P300 which are not standard for measurement start.
Omitting the P word.
✗ Incorrect
G65 P200 is commonly used to start the in-process measurement cycle in CNC programming.
2fill in blank
mediumComplete the code to measure the diameter of a part using the probe.
CNC Programming
G65 P200 [1]=1
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using RADIUS or LENGTH which measure different dimensions.
Forgetting the equals sign.
✗ Incorrect
DIA=1 tells the macro to measure diameter with the probe.
3fill in blank
hardFix the error in the code to correctly set the probe speed for measurement.
CNC Programming
G65 P200 S[1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using words like 'fast' or 'slow' which cause errors.
Using undefined parameters like 'speed'.
✗ Incorrect
S100 sets the probe speed to 100 units, which is a valid numeric value.
4fill in blank
hardFill both blanks to set the probe to measure length and set the retract distance.
CNC Programming
G65 P200 [1]=1 R[2]
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using DIAMETER instead of LENGTH for length measurement.
Setting retract distance too high or with wrong parameter.
✗ Incorrect
LENGTH=1 sets measurement to length, and R5 sets retract distance to 5 units.
5fill in blank
hardFill all three blanks to measure depth, set probe speed, and enable data output.
CNC Programming
G65 P200 D[1] S[2] O[3]
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 0 for output which disables it.
Setting speed with non-numeric values.
✗ Incorrect
D1 sets depth measurement, S150 sets speed, and O1 enables data output.