Tnnn
, where nnn
represents a tool number. In the image above there are tools T0 and T1. Each tool has it's own extruder motor attached to it, or multiple if you are mixing. Tnnn
where nnn
represents the tool number. T0
: Mixing toolT1
: Single LeftT2
: Single RightT0
: K'tana Single LeftT1
: K'tana Single RightTnnn
command in order to select a tool with number nnn
.Tnnn
. For example, tool 0 with T0
.G10 Pnnn S0
. G10
allows you to set a tool temperature. The P
parameter and nnn
represents your tool number that you want to change the temperature of. Snnn
is the temperature of the tool. So by setting the temperature to 0 the tool is turned off.G10 P0 Snnn
where nnn
is your new tool temperature. The G10
S
parameter only sets the active temperature of a tool. This means the tool will only go to that temperature when it is selected or active.M83
, and then you would not have to zero the extruder as it just adds 100mm to the position the extruder is already at.G1 E-100 F3000
.M104
and M105
can also be used to heat up your tools.M104 Snnn
: Heat up your active tool to nnn
°C.M109 Snnn
: Heat up your active tool to nnn
°C and wait until temperature is achieved.M140 Snnn
: Heat up your bed to nnn
°C.M190 Snnn
: Heat up your bed to nnn
°C and wait until temperature is achieved.G10
command allows you to heat up any tool including when you don't have the tool selected. This command can be useful when you are attempting to change the temperature of tools while they are not selected. The command G10
allows you to change the temperature or offset of a specific tool.G10 Pnnn Xnnn Ynnn Znnn Rnnn Snnn
:Pnnn
: Represents the tool number of the tool you are attempting to change the temperature or offset of.Xnnn
, Ynnn
and Znnn
: Represent the X, Y and Z offset of the toolRnnn
: The tool's standby temperature. Or the temperature of the tool when it is not selected, but was previously active.Snnn
: The tool's active temperature. Or the temperature of the tool when it is selected.G10 P1 X10 Y0 Z0 R120 S230
, This will set the offset of tool 1 to 10mm in the positive X direction. It will also set the active temperature of the tool to 230C and the standby temperature of the tool to 120C.G10
command is especially useful for mixing and switching prints.