|
@@ -28,6 +28,10 @@ In `Configuration.h` there are two options that can be enabled.
|
28
|
28
|
|
29
|
29
|
There are also some values that can be set.
|
30
|
30
|
|
|
31
|
+The following will set the step distance used when manually turning the display encoder. Default is 0.025
|
|
32
|
+
|
|
33
|
+`MBL_Z_STEP`
|
|
34
|
+
|
31
|
35
|
Following four define the area to cover. Default 10mm from max bed size
|
32
|
36
|
|
33
|
37
|
`MESH_MIN_X`<br/>
|
|
@@ -55,14 +59,14 @@ When selecting this option the printer will first do a homing, and then travel t
|
55
|
59
|
|
56
|
60
|
If the EEPROM has been enable it can be good to issue a `M500` to get these points saved.
|
57
|
61
|
|
58
|
|
-Issuing a `G29` will return the state of the mesh leveling.
|
|
62
|
+Issuing a `G29` will return the state of the mesh leveling and report the probed points.
|
59
|
63
|
|
60
|
64
|
Probing the bed with G-codes
|
61
|
65
|
----------------------------
|
62
|
66
|
|
63
|
67
|
Probing the bed by G-codes follows the sequence much like doing it with the display.
|
64
|
68
|
|
65
|
|
-`G29` or `G29 S0` will return the state bed leveling.
|
|
69
|
+`G29` or `G29 S0` will return the state of the bed leveling and report the probed points. Where X=1 Y=1 is the top-left value and X=MESH_NUM_X_POINTS Y=MESH_NUM_Y_POINTS is bottom-right value. X per column and Y per row.
|
66
|
70
|
|
67
|
71
|
`G29 S1` will initiate the bed leveling, homing and traveling to the first point to probe.
|
68
|
72
|
|
|
@@ -70,6 +74,8 @@ Then use your preferred Printer controller program, i.e. Printrun, to lower the
|
70
|
74
|
|
71
|
75
|
`G29 S2` will store the point and travel to the next point until last point has been probed.
|
72
|
76
|
|
|
77
|
+`G29 S3 Xn Yn Zn.nn` will modify a single probed point. This can be used to tweak a badly probed point. Specify probe point where `Xn` and `Yn`, where `n` in `Xn` is between 1 and `MESH_NUM_X_POINTS`. Likewise for `Yn`. `Zn.nn` is the new Z value in that probed point.
|
|
78
|
+
|
73
|
79
|
Note
|
74
|
80
|
----
|
75
|
81
|
|