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

63 lines
1.2 KiB
Markdown

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