Added ability to run mesh bed compensation

Added ability to run mesh bed compensation directly from the 12864 screen (under the control (ctrl) menu). This will home all axes, heat the bed to 50C and the nozzle to 180C before running the bed compensation routing acording to the grid parameters set in config.g
This commit is contained in:
Alan Thomson 2019-01-30 11:07:19 +00:00
parent 01a579a2b1
commit 4fc9d06be4
2 changed files with 14 additions and 3 deletions

View File

@ -1,5 +1,7 @@
button R0 C0 F0 T" BACK " A"return"
image R11 C0 L"hline.img"
button R13 C24 T"COOLDOWN" A"M98 P#0" L"/menu/cooldown"
button R23 C24 T"MOTORS OFF" A"M18"
button R33 C24 T"REBOOT MAESTRO" A"M999"
button R13 C0 T"COOLDOWN" A"M98 P#0" L"/menu/cooldown"
button R23 C0 T"MOTORS OFF" A"M18"
button R33 C0 T"REBOOT MAESTRO" A"M999"
button R43 C0 T"RUN MESH COMPENSATION" A"M98 P#0" L"/menu/meshcomp"
value R53 C0 F0 W128 N501

9
meshcomp Normal file
View File

@ -0,0 +1,9 @@
M117 " " ;clear any displayed messages
M117 "Homing all axes"
G28
M117 "Heating bed & nozzle"
M190 S50
M109 S180
M117 "Running mesh compensation"
G29
M117 "Done"