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

M125.md « _gcode - github.com/MarlinFirmware/MarlinDocumentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d742309cab0e81cb6d234759775ff952a99ba3a (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
---
tag: m0125
title: Park Head
brief: Save current position and move to filament change position.
author: thinkyhead

requires: PARK_HEAD_ON_PAUSE
group: nozzle

codes: [ M125 ]

notes: Requires `PARK_HEAD_ON_PAUSE`.

parameters:
  -
    tag: L
    optional: true
    description: Retract length (otherwise `FILAMENT_CHANGE_RETRACT_LENGTH`)
    values:
      -
        tag: linear
        type: float
  -
    tag: X
    optional: true
    description: X position to park at (otherwise `FILAMENT_CHANGE_X_POS`)
    values:
      -
        tag: linear
        type: float
  -
    tag: Y
    optional: true
    description: Y position to park at (otherwise `FILAMENT_CHANGE_Y_POS`)
    values:
      -
        tag: linear
        type: float
  -
    tag: Z
    optional: true
    description: Z raise before park (otherwise `FILAMENT_CHANGE_Z_ADD`)
    values:
      -
        tag: linear
        type: float
  -
    tag: P
    optional: true
    description: Always show a prompt and await a response (With an LCD menu)
    values:
      -
        type: bool

examples:
  -
    pre: Retract 2cm of filament and park the nozzle
    code: M125 L20 ; park and retract

---

Save the current nozzle position and move to the configured park position.