Challenge - 5 Problems
Coolant Control Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
💻 Command Output
intermediate1:00remaining
What is the effect of the command M08 in a CNC program?
In CNC programming, what does the command M08 do when executed?
Attempts:
2 left
💡 Hint
Think about what 'M08' typically controls in CNC machining.
✗ Incorrect
M08 is the standard G-code command to turn on the coolant supply during machining to cool and lubricate the cutting tool.
💻 Command Output
intermediate1:00remaining
What happens when the command M09 is executed in a CNC program?
In CNC programming, what is the result of running the command M09?
Attempts:
2 left
💡 Hint
M09 is often paired with M08. What does it do?
✗ Incorrect
M09 is the standard G-code command to turn off the coolant supply during or after machining.
📝 Syntax
advanced1:30remaining
Identify the correct CNC code snippet to turn coolant on and then off.
Which of the following CNC code snippets correctly turns the coolant on and then off?
Attempts:
2 left
💡 Hint
Coolant should be turned on before cutting and off after.
✗ Incorrect
Option C correctly turns coolant on with M08, moves the tool, then turns coolant off with M09.
🔧 Debug
advanced1:30remaining
Why does this CNC program fail to turn off coolant?
Given this CNC program snippet:
M08
G01 X20 Y20
G01 X30 Y30
Why does the coolant remain on after the program runs?
CNC Programming
M08 G01 X20 Y20 G01 X30 Y30
Attempts:
2 left
💡 Hint
Think about how coolant is turned off in CNC code.
✗ Incorrect
The program turns coolant on with M08 but never issues M09 to turn it off, so coolant stays on.
🚀 Application
expert2:00remaining
How to program coolant control for a drilling cycle with pauses?
You want to program a CNC drilling cycle where coolant turns on before drilling, pauses during tool changes (coolant off), then resumes coolant after tool change. Which sequence correctly achieves this?
Attempts:
2 left
💡 Hint
Coolant should be on during drilling and off during tool change.
✗ Incorrect
Option A correctly turns coolant on before drilling, off before tool change (M06), then back on after tool change, and off after the second drilling cycle.
