QuadFusion Documentation
M3D HomeGithub Repository
  • Welcome
  • Facebook Group
  • Getting Started
    • Critical Warnings & Information
    • Unboxing & Inventory
    • Getting Connected
    • Updating Firmware
    • Updating your Control Board Settings
    • Changing Homing Offsets
    • First Print
    • Getting Started: Where to Go From Here
  • Printer Installation
    • M3D Crane
    • M3D ProMega
    • CR-10S
    • Prusa i3 MK2S
    • Duet Maestro Wiring
  • Beginner Guides
    • Beginner: Preparation
    • Beginner: QuadFusion Assembly
    • Beginner: Moving the Motors
    • Beginner: Introduction to G-Code Commands
    • Beginner: Software Layers
    • Beginner: What is Slicing?
    • Beginner: Printing the Print
    • Beginner: Where to Go From Here
  • Electrical Guides
    • The Electrical Standard
  • Firmware Guides
    • Adjusting Homing Macros
    • Macros
  • Printing Guides
    • Slicers and Printer Settings
    • Heating & Temp Sensor
    • Loading and Unloading Filament
    • (NEW) Loading and Unloading Filament
    • Filament Success Guide
      • ABS-R
      • PLA
    • Filament Extrusion Rate
    • Tool Definitions
  • Color Printing
    • Setting Up
    • MELT
    • Slic3r Multi-Material
  • Troubleshooting Guides
    • Troubleshooting Duet Web Console
    • My Drives / Tools are Backwards
    • Heater Troubleshooting
  • Maintenance Guides
    • What You'll Need
    • Temperature Calibration
    • Changing Nozzles
  • Community Guides
    • Community Guide Template
Powered by GitBook
On this page
  • Default Tool Definitions
  • Tool Definition Command M563
  • Defining Your Own Tools
  • Mixing Ratios
  • Additional Resources
  1. Printing Guides

Tool Definitions

PreviousFilament Extrusion RateNextColor Printing

Last updated 6 years ago

This guide will explains the default tool definitions for the QuadFusion and explains how to change tools. This can be useful to create complex mixing and switching prints. This guide is not for beginners

Default Tool Definitions

QuadFusion Tools:

  • T0: Top Left

    • Extruder Drive 0

    • Heater 1

  • T1: Bottom Left

    • Extruder Drive 1

    • Heater 1

  • T2: Bottom Right

    • Extruder Drive 2

    • Heater 1

  • T3: Top Right

    • Extruder Drive 3

    • Heater 1

As seen above, the QuadFusion has four different extruder drives and two heaters. The current configuration is set-up to make all tools heated by Heater 1, while the Bed will be heated by Heater 0.

Tool Definition Command M563

The M563 command allows you to define a tool, it has the following parameters:

  • Pnnn : The tool number

  • S"toolname": The tool name

  • Dnnn : The assigned extruder drive

  • Hnnn : The assigned heater number

  • Fnnn : The fans mapped to the tool.

The extruder drive numbers start from 0 and immediately follow the X, Y and Z axes stepper motor drives on the Duet Board. You can configure the order of these drives with the M584 command. If you were looking at your tools in the config.g, they would look like this:

Defining Your Own Tools

Defining your own tools is useful to create prints that switch colors in the middle of a print. To define a new tool enter the M563 command in the configuration file, then follow it with the extruder drive and heater number that you would like to use. Such as:

Mixing Ratios

To enable mixing rations for ta specific tool. Enter the M568 command with the tool number (Pnnn ) and the enable parameter (Snnn ). For example, if I wanted to enable tool mixing for tool 3 I would enter the command M568 P3 S1 .

To configure the actual tool mixing ratio, use the M567 command. This will tell the firmware to use one stepper motor drive to move more than the other one when handling an extruder move. M567 Pnnn Emmm:kkk:llll:iii where nnn represents the tool number. And the rest of the letters the tool ratios of the specific extruder drives. The total of the mmm, kkk, llll and iii parameters should add up to 1 in order to produce a normal and expected extrusion flow rate.

Additional Resources

Duet 3D Wiki M563
Duet 3D Wiki M567
Duet 3D Wiki M568