You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: views/configuration.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -703,7 +703,7 @@ Both acceleration and jerk affect your print quality. If jerk is too low, the ex
703
703
```cpp
704
704
//#define Z_MIN_PROBE_ENDSTOP
705
705
```
706
-
Use this option if you've connected the probe to a pin other than the Z MIN endstop pin. With this option enabled, by default Marlin will assume the probe is connected to the Z MAX endstop pin (since this is the most likely to be unused). If you need to use a different pin, you can set a custom pin number for `Z_MIN_PROBE_PIN` in `Configuration.h`.
706
+
Use this option if you've connected the probe to a pin other than the Z MIN endstop pin. With this option enabled, by default Marlin will use the `Z_MIN_PROBE_PIN` specified in your board's pins file (usually the X or Z MAX endstop pin since these are the most likely to be unused). If you need to use a different pin, define your custom pin number for `Z_MIN_PROBE_PIN` in `Configuration.h`.
Copy file name to clipboardExpand all lines: views/gcode/G011.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,10 @@ group: planner
12
12
codes:
13
13
- G11
14
14
15
-
long: Unretract (i.e., recover, prime) the filament according to settings of [`M208`](/docs/gcode/M208.html).
15
+
long:
16
+
- Unretract (i.e., recover, prime) the filament according to settings of [`M208`](/docs/gcode/M208.html).
17
+
- Multiple consecutive `G11` or `G11 S1` commands without a corresponding `G10` or `G10 S1` will be ignored.
18
+
- "Performs two moves: An optional Z lower at the maximum Z feedrate (travel acceleration), and a recovery move at the recover feedrate (retract acceleration)."
Copy file name to clipboardExpand all lines: views/gcode/G012.md
+21-5Lines changed: 21 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,11 +12,11 @@ codes:
12
12
- G12
13
13
14
14
long:
15
-
- Start the nozzle cleaning process. Two types of cleaning patterns are supported: stroke-based and zigzag-based. This feature requires a dedicated cleaning area on or outside the bed, but within reach of the nozzle.
15
+
- Start the nozzle cleaning process. Three types of cleaning patterns are supported: straight strokes, zigzags and circles. This feature requires a dedicated cleaning area on or outside the bed, but within reach of the nozzle. The patten may be repeated as many times as desired.
16
16
17
17
notes:
18
-
- Default behavior is defined by `NOZZLE_CLEAN_STROKES`, `NOZZLE_CLEAN_START_POINT`, `NOZZLE_CLEAN_END_POINT`and `NOZZLE_CLEAN_PARK`.
19
-
- With `NOZZLE_CLEAN_PARK` enabled, the nozzle automatically returns to the XYZ position before `G12`.
18
+
- Default behavior is defined by `NOZZLE_CLEAN_STROKES`, `NOZZLE_CLEAN_START_POINT`, `NOZZLE_CLEAN_END_POINT`, `NOZZLE_CLEAN_TRIANGLES`, `NOZZLE_CLEAN_CIRCLE_MIDDLE`, `NOZZLE_CLEAN_CIRCLE_RADIUS` and `NOZZLE_CLEAN_GOBACK`.
19
+
- With `NOZZLE_CLEAN_GOBACK` enabled, the nozzle automatically returns to the XYZ position before `G12`.
20
20
21
21
parameters:
22
22
-
@@ -26,12 +26,25 @@ parameters:
26
26
values:
27
27
-
28
28
tag: 0
29
+
description: Stroke straight back and forth
29
30
-
30
31
tag: 1
32
+
description: Move in a zigzag pattern
33
+
-
34
+
tag: 2
35
+
description: Move in a circular pattern
36
+
-
37
+
tag: R
38
+
optional: true
39
+
description: Radius of nozzle cleaning circle
40
+
values:
41
+
-
42
+
tag: radius
43
+
type: float
31
44
-
32
45
tag: S
33
46
optional: true
34
-
description: Number of strokes (i.e. back-and-forth movements)
47
+
description: Number of repetitions of the pattern
35
48
values:
36
49
-
37
50
tag: count
@@ -40,7 +53,7 @@ parameters:
40
53
tag: T
41
54
type: int
42
55
optional: true
43
-
description: Number of repetitions
56
+
description: Number of triangles in the zigzag pattern
44
57
values:
45
58
-
46
59
tag: count
@@ -53,5 +66,8 @@ examples:
53
66
-
54
67
pre: To generate a three triangle zig-zag pattern which will be stroked one time use the following command.
55
68
code: G12 P1 S1 T3 ; zig-zag pattern with 3 triangles
69
+
-
70
+
pre: To generate a 10mm radius circle which will be stroked one time use the following command.
brief: Move to a specific point in the leveling mesh
5
+
author: ManuelMcLure
6
+
7
+
experimental: false
8
+
since: 1.1.2
9
+
requires: HAS_MESH
10
+
group: calibration
11
+
12
+
codes:
13
+
- G42
14
+
15
+
long: |
16
+
The `G42` command moves the nozzle to the location corresponding to a specific coordinate in the bed leveling mesh. It operates similarly to the `G0` and `G1` commands except that the provided coordinates are a mesh row and column instead of an absolute or relative position on the bed.
17
+
18
+
The `G42` command will determine the bed position that corresponds to the provided mesh row and column and move the nozzle to that position.
19
+
20
+
parameters:
21
+
-
22
+
tag: I
23
+
optional: true
24
+
description: The column of the mesh coordinate
25
+
values:
26
+
-
27
+
tag: pos
28
+
type: float
29
+
-
30
+
tag: J
31
+
optional: true
32
+
description: The row of the mesh coordinate
33
+
values:
34
+
-
35
+
tag: pos
36
+
type: float
37
+
-
38
+
tag: F
39
+
optional: true
40
+
description: The maximum movement rate of the move between the start and end point. The feedrate set here applies to subsequent moves that omit this parameter.
0 commit comments