flexi-bot/docs/marlin/_gcode/M605.md
2023-09-05 20:38:49 +02:00

2.4 KiB

tag title brief author contrib requires group codes notes parameters examples
m0605 Multi Nozzle Mode Set the behavior mode for a multiple nozzle setup thinkyhead pacocatech MULTI_NOZZLE_DUPLICATION|DUAL_X_CARRIAGE control
M605
tag optional description values
S false Select the pin to set for all specified axes.
tag description
0 Full control mode. Both carriages are free to move, constrained by safe distance. (Requires `DUAL_X_CARRIAGE`)
tag description
1 Auto-park mode. One carriage parks while the other moves. (Requires `DUAL_X_CARRIAGE`)
tag description
2 Duplication mode. Carriages and extruders move in unison.
tag description
3 Mirrored mode. The second extruder duplicates the motions of the first, but reversed in the X axis.
tag optional description values
X true X distance between dual X carriages. (Requires `DUAL_X_CARRIAGE`)
unit type
linear float
tag optional description values
R true Temperature difference to apply to E1. (Requires `DUAL_X_CARRIAGE`)
unit type
temp int
tag optional description values
P true Bit-mask of nozzles to include in the duplication set. 0 disables duplication. Bit 1 is E0, Bit 2 is E1 ... Bit n is E(n-1). (Requires `MULTI_NOZZLE_DUPLICATION`)
unit type
mask int
tag optional description values
E true Last nozzle index to include in the duplication set. 0 disables duplication. (Requires `MULTI_NOZZLE_DUPLICATION`)
unit type
index int
pre code
Set duplication mode M605 S2
pre code
Set duplication mode and configure extruders E0,E1 and E2 as active. M605 S2 E2
pre code
Set duplication mode and configure extruders E0 and E2 as active (This is bit pattern %101) M605 S2 P5

Set the behavior mode for multiple fixed nozzles such as a Dual Extruder or DUAL_X_CARRIAGE machine.

This command behaves differently for DUAL_X_CARRIAGE vs. MULTI_NOZZLE_DUPLICATION:

  • For MULTI_NOZZLE_DUPLICATION the S2 parameter enables duplication mode. Any other value disables it.
  • For DUAL_X_CARRIAGE, this command sets the Dual X mode. See the description of S below.
  • For Mirrored Mode: M605 S2 R0 X<distance> and M605 S3.