We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Request Mist Coolant be added to theGRBL-Post-Processor. GRBL Extended Command Toggle Mist Coolant, M7 turns on, M9 turns off mist & flood.
Toggle Mist Coolant
M7
M9
The text was updated successfully, but these errors were encountered:
Hi, thanks for your request. I looked into it and I think I have added the necessary code. Can you test, as I do not have a machine with coolant..
Remark : you have to enable coolant in the postProcessor parameters : hasCoolant = true
This is the code I've added, I think it is pretty self-explaining
if (properties.hasCoolant) { if (tool.coolant == COOLANT_FLOOD) { writeBlock(mFormat.format(8)); } else if (tool.coolant == COOLANT_MIST) { writeBlock(mFormat.format(7)); } else if (tool.coolant == COOLANT_FLOOD_MIST) { writeBlock(mFormat.format(7)); writeBlock(mFormat.format(8)); } else { writeBlock(mFormat.format(9)); } }
Sorry, something went wrong.
Testing tonight. Thank-you!
No branches or pull requests
Request Mist Coolant be added to theGRBL-Post-Processor.
GRBL Extended Command
Toggle Mist Coolant
,M7
turns on,M9
turns off mist & flood.The text was updated successfully, but these errors were encountered: