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

M165.md « _gcode - github.com/MarlinFirmware/MarlinDocumentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 569f4647a36da2ee78dc44e5fd8aa8e519351622 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
---
tag: m0165
title: Set Mix
brief: Set all mix factors for the mixing extruder.
author: thinkyhead

requires: MIXING_EXTRUDER,DIRECT_MIXING_IN_G1
group: mixing

codes: [ M165 ]

notes: Requires `MIXING_EXTRUDER` and `DIRECT_MIXING_IN_G1`.

parameters:
  -
    tag: A
    optional: true
    description: Mix factor 1
    values:
      -
        tag: factor
        type: float
  -
    tag: B
    optional: true
    description: Mix factor 2
    values:
      -
        tag: factor
        type: float
  -
    tag: C
    optional: true
    description: Mix factor 3
    values:
      -
        tag: factor
        type: float
  -
    tag: D
    optional: true
    description: Mix factor 4
    values:
      -
        tag: factor
        type: float
  -
    tag: H
    optional: true
    description: Mix factor 5
    values:
      -
        tag: factor
        type: float
  -
    tag: I
    optional: true
    description: Mix factor 6
    values:
      -
        tag: factor
        type: float

examples:
  -
    pre: Set a colorful mix
    code: M165 A0.2 B0.4 C0.3 D0.1

---

Set the mix for the active virtual extruder all at once. Any factors left out are set to 0.0. This is based on a reference implementation by Pìa Taubert.