Welcome to mirror list, hosted at ThFree Co, Russian Federation.

M605.md « _gcode - github.com/MarlinFirmware/MarlinDocumentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 560ad0a360854476c5738c6452d631629c592688 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
tag: m0605
title: Multi Nozzle Mode
brief: Set the behavior mode for a multiple nozzle setup
author: thinkyhead
contrib: pacocatech

requires: MULTI_NOZZLE_DUPLICATION|DUAL_X_CARRIAGE
group: control

codes: [ M605 ]

notes:

parameters:
  -
    tag: S
    optional: false
    description: Select the pin to set for all specified axes.
    values:
      -
        tag: 0
        description: Full control mode. Both carriages are free to move, constrained by safe distance. (Requires `DUAL_X_CARRIAGE`)
      -
        tag: 1
        description: Auto-park mode. One carriage parks while the other moves. (Requires `DUAL_X_CARRIAGE`)
      -
        tag: 2
        description: Duplication mode. Carriages and extruders move in unison.
      - 
        tag: 3
        description: Mirrored mode. The second extruder duplicates the motions of the first, but reversed in the X axis.
  -
    tag: X
    optional: true
    description: X distance between dual X carriages.  (Requires `DUAL_X_CARRIAGE`)
    values:
      -
        unit: linear
        type: float
  -
    tag: R
    optional: true
    description: Temperature difference to apply to E1.  (Requires `DUAL_X_CARRIAGE`)
    values:
      -
        unit: temp
        type: int

examples:

---
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`.