CR-10S Pro + Octoprint = No Auto-leveling?

I've got the latest version of Octoprint running on a Raspberry Pi 3B today, interfacing with my Creality CR-10S Pro. It works great, except I noticed something:

If I slice a file in Cura and delivery it via MicroSD, when I go to print it will always go through the Auto-bed leveling first. However, if I print through Cura, using the Octoprint plugin, directly it goes straight to the print (after homing to the center) with no auto-leveling procedure.

Is there a setting I can use to have it follow the same procedure (auto-leveling) before each print?

This is using:
Cura 4.3.0 on Windows 10
Version 3.5.10 of the Octoprint plug-in
Octopi 0.17.0 (Downloaded from this site earlier today)

Yes you can either add a G29 to your start gcode in cura


or remove the start gcode from cura and use a start gcode in octoprint with G29 in it.

Thank you so much for the reply! A few clarification questions:

  • (before this change) Why does printing via Cura->SD do the ABL but Cura->OctoPrint not?
  • There are already a bunch of GCODEs by default, one of which uses M420 for ABL - should I place this GCODE in place of that one?

M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration
M203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate
M204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration
M205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk
M220 S100 ;Reset Feedrate
M221 S100 ;Reset Flowrate
G28 ;Home

M420 S1 Z2 ;Enable ABL using saved Mesh and Fade Height

G92 E0 ;Reset Extruder
G1 Z2.0 F3000 ;Move Z Axis up
G1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position
G1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line
G1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little
G1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line
G92 E0 ;Reset Extruder
G1 Z2.0 F3000 ;Move Z Axis up

I don't know to be honest

Yes. M420 S1 uses the already saved mesh from your printers eeprom while G29 starts a new bed leveling and uses the new created mesh.

It should look like this afterwards

M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration
M203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate
M204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration
M205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk
M220 S100 ;Reset Feedrate
M221 S100 ;Reset Flowrate
G28 ;Home

G29 ;Run ABL

G92 E0 ;Reset Extruder
G1 Z2.0 F3000 ;Move Z Axis up
G1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position
G1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line
G1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little
G1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line
G92 E0 ;Reset Extruder
G1 Z2.0 F3000 ;Move Z Axis up
1 Like