Custom Nozzle Wipe (#18736)

This commit is contained in:
InsanityAutomation
2020-07-22 02:42:44 -04:00
committed by GitHub
parent 748c8a7ecd
commit b4b19aef7f
2 changed files with 11 additions and 0 deletions

View File

@ -47,6 +47,13 @@ void GcodeSuite::G12() {
// Don't allow nozzle cleaning without homing first
if (axis_unhomed_error()) return;
#ifdef WIPE_SEQUENCE_COMMANDS
if (!parser.seen_any()) {
gcode.process_subcommands_now_P(PSTR(WIPE_SEQUENCE_COMMANDS));
return;
}
#endif
const uint8_t pattern = parser.ushortval('P', 0),
strokes = parser.ushortval('S', NOZZLE_CLEAN_STROKES),
objects = parser.ushortval('T', NOZZLE_CLEAN_TRIANGLES);