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

G030.md « _gcode - github.com/MarlinFirmware/MarlinDocumentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c777e1e471903be94e22ed40d75c474ef2c2902 (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
---
tag: g030
title: Single Z-Probe
brief: Probe bed at current XY location
author: thinkyhead

since: 1.0.0-beta
requires: HAS_BED_PROBE
group: calibration

codes: [ G30 ]

parameters:
  -
    tag: C
    optional: true
    description: Probe with temperature compensation enabled (`PTC_PROBE`, `PTC_BED`, `PTC_HOTEND`)
    values:
      -
        type: bool
        default: 1
  -
    tag: X
    optional: true
    description: X probe position
    values:
      -
        tag: pos
        type: float
  -
    tag: Y
    optional: true
    description: Y probe position
    values:
      -
        tag: pos
        type: float
  -
    tag: E
    optional: true
    description: Engage the probe for each point
    values:
      -
        type: bool
        default: 0

notes:
  - Use `SERIAL_FLOAT_PRECISION` to set the number of decimal places in the output.

---

Do a single Z probe at a specified position. By default probe in the current position.