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

M163.md « _gcode - github.com/MarlinFirmware/MarlinDocumentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d7d6ca88a946f8f8580d280e95d47f318309472 (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
---
tag: m0163
title: Set Mix Factor
brief: Set a single mix factor for a mixing extruder.
author: thinkyhead

requires: MIXING_EXTRUDER
group: mixing

codes: [ M163 ]

notes: Requires `MIXING_EXTRUDER`.

parameters:
  -
    tag: S
    optional: true
    description: Component index
    values:
      -
        tag: index
        type: int
  -
    tag: P
    optional: true
    description: Mix factor
    values:
      -
        tag: factor
        type: float

examples:
  -
    pre: 'Save a 60/40 mix as tool index 5:'
    code:
      - M163 S0 P0.6
      - M163 S1 P0.4
      - M164 S5
  -
    pre: 'Save a 3/5 mix as tool index 4:'
    code:
      - M163 S0 P3
      - M163 S1 P5
      - M164 S4

---

Set a single mix factor (in proportion to the sum total of all mix factors). The mix must be committed to a virtual tool by [`M164`](/docs/gcode/M164.html) before it takes effect.